SESSION NAME: SQL Functions - 1.
QUESTION NAME: Count all Columns.
TABLE DESCRIPTION:
Write a query to display number of rows(Only count ) in the items_ordered table
Note: Use SQL in-built Function to find the count.
Note: Use SQL in-built Function to find the count.
CODE:
select count(*)from items_ordered;
0 Comments