forked from docs/doc-exports
Reviewed-by: Pruthi, Vineet <vineet.pruthi@t-systems.com> Co-authored-by: Su, Xiaomeng <suxiaomeng1@huawei.com> Co-committed-by: Su, Xiaomeng <suxiaomeng1@huawei.com>
3.6 KiB
3.6 KiB
Querying an Oracle Table
Function
This statement is used to query data in an Oracle table.
Syntax
1 | SELECT * FROM table_name LIMIT number; |
Keywords
LIMIT is used to limit the query results. Only INT type is supported by the number parameter.
Precautions
If schema information is not specified during table creation, the query result contains the _id field for storing _id in the DOC file.
Example
Querying data in the test_oracle table
1 | SELECT * FROM test_oracle limit 100; |
Parent topic: Creating a Datasource Connection with an Oracle Table