3 lines
114 B
SQL
3 lines
114 B
SQL
/*Write a SQL statement to know how many customers have listed their names.*/
|
|
SELECT COUNT(*)
|
|
FROM customer; |