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)