Which of the following would select all records from a table named "Customers" where the first name ends with
an "Y"
Answers
Answered by
9
Answer:
The SQL LIKE clause is used to compare a value to similar values using wildcard operators. 3. With SQL, how can you return all the records from a table named “Persons” sorted descending by “FirstName”? Explanation: The SQL SELECT statement queries data from tables in the database.
Answered by
3
Answer:
SELECT * FROM customer WHERE FIRSTname %
Similar questions