202k views
5 votes
Manipulate the SQL statement to pull ALL fields and rows from Customers table that have a PostalCode of 44000. TIP: Since PostalCode is not always numeric, it is stored as text in database which means you'll need to put quotes around it (e.g. "44000") in your where clause. How many Customers are in this PostalCode?

1 Answer

4 votes

Answer:

There are two customers in the PostalCode.

SQL statement for select all the fields and the rows from the Customers table where PostalCode is 44000.

SELECT * FROM Customers WHERE PostalCode = "44000";

Step-by-step explanation:

The SELECT statement retrieve zero or more than one row from 1 or more than one the database tables or the database views.

In most of the applications, the SELECT query is most commonly used for DQL(Data Query Language) command.

SQL is the declarative programming language and the SELECT statement specifies the result set, but they do not specifies how to calculate it.

User WaltS
by
5.8k points