You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
TABLE is a DML statement introduced in MySQL 8.0.19 which returns rows and columns of the named table.
TABLE table_name [ORDER BY column_name] [LIMITnumber [OFFSET number]]
The TABLE statement in some ways acts like SELECT. Given the existence of a table named t, the following two statements produce identical output:
TABLE t;
SELECT*FROM t;
You can order and limit the number of rows produced by TABLE using ORDER BY and LIMIT clauses, respectively. These function identically to the same clauses when used with SELECT (including an optional OFFSET clause with LIMIT).
The text was updated successfully, but these errors were encountered:
https://dev.mysql.com/doc/refman/8.0/en/table.html
The text was updated successfully, but these errors were encountered: