This statement is used to query data in a DCS 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.
Query data in the test_redis table.
1 | SELECT * FROM test_redis limit 100; |