Hey,
The error you are getting because the query you have used should show the the number of rows in your table, but there is no data inside your table.
You can use a query to list down the elements, just use:
select * from table_name;
I hope it works.