This statement is used to query data in an Oracle 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.
If schema information is not specified during table creation, the query result contains the _id field for storing _id in the DOC file.
Querying data in the test_oracle table
1 | SELECT * FROM test_oracle limit 100; |