This statement is used to query data in a DWS table.
1 | SELECT * FROM table_name LIMIT number; |
LIMIT is used to limit the query results. Only INT type is supported by the number parameter.
The table to be queried must exist. Otherwise, an error is reported.
To query data in the dli_to_dws table, enter the following statement:
1 | SELECT * FROM dli_to_dws limit 100; |