Files
greptimedb/tests/cases/standalone/common/show/show_databases_tables.sql
dennis zhuang bb32230f00 feat: impl show table status (#4303)
* feat: impl show table status

* chore: style and comment

* test: revert lz4 compression
2024-07-08 03:58:29 +00:00

26 lines
557 B
SQL

SHOW DATABASES;
SHOW FULL DATABASES;
USE information_schema;
SHOW TABLES;
SHOW TABLES LIKE 'tables';
SHOW FULL TABLES;
-- SQLNESS REPLACE (\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}) DATETIME
SHOW TABLE STATUS;
-- SQLNESS REPLACE (\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}) DATETIME
SHOW TABLE STATUS LIKE 'tables';
-- SQLNESS REPLACE (\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}) DATETIME
SHOW TABLE STATUS WHERE Name = 'tables';
-- SQLNESS REPLACE (\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}) DATETIME
SHOW TABLE STATUS from public;
USE public;