Files
greptimedb/tests/cases/standalone/common/show/show_charset.sql
dennis zhuang 8f2ce4abe8 feat: impl show collation and show charset statements (#3753)
* feat: impl show collation and show charset statements

* docs: add api docs
2024-04-20 06:01:32 +00:00

16 lines
252 B
SQL

SHOW CHARACTER SET;
SHOW CHARSET;
SHOW CHARACTER SET LIKE 'utf8';
SHOW CHARACTER SET LIKE 'latin1';
SHOW CHARSET LIKE 'utf8';
SHOW CHARACTER SET WHERE Charset = 'utf8';
SHOW CHARSET WHERE Charset = 'utf8';
SHOW CHARSET WHERE Charset = 'latin1';