Querying Data
Query the number of table records. Run the count statement to query the number of table records.
1 2 | set current_schema='tpchobs_express';
select count(*) from part;
|
The result is as follows:
1 2 3 4 | count
-------
20000
(1 row)
|
Last Article: Creating Foreign Servers and OBS Foreign Tables
Next Article: Checking Whether a Query Is Accelerated
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.