From 49080adeee33c95d1174ac96eca9e62536e2da0f Mon Sep 17 00:00:00 2001 From: xieyinglin <41858839+xieyinglin@users.noreply.github.com> Date: Thu, 17 Oct 2019 10:20:39 +0800 Subject: [PATCH] update less or equal symbol update less or equal symbol --- documentation/webdocs/markdowndocs/Super Table.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/documentation/webdocs/markdowndocs/Super Table.md b/documentation/webdocs/markdowndocs/Super Table.md index 4e1750661e..79a1650924 100644 --- a/documentation/webdocs/markdowndocs/Super Table.md +++ b/documentation/webdocs/markdowndocs/Super Table.md @@ -147,13 +147,13 @@ To delete a STable, all the tables created via this STable shall be deleted firs ### List the Associated Tables of a STable ```mysql -SELECT TBNAME,[TAG_NAME,…] FROM WHERE <[=|=<|>=|<>] values..> ([AND|OR] …) +SELECT TBNAME,[TAG_NAME,…] FROM WHERE <[=|<=|>=|<>] values..> ([AND|OR] …) ``` It will list all the tables which satisfy the tag filter conditions. The tables are all created from this specific STable. TBNAME is a new keyword introduced, it is the table name associated with the STable. ```mysql -SELECT COUNT(TBNAME) FROM WHERE <[=|=<|>=|<>] values..> ([AND|OR] …) +SELECT COUNT(TBNAME) FROM WHERE <[=|<=|>=|<>] values..> ([AND|OR] …) ``` The above SQL statement will list the number of tables in a STable, which satisfy the filter condition. -- GitLab