Computer Science, asked by Parthasaha6185, 1 year ago

Write a query to display the customer's last name and city for all customers whose name ends with an "n" and the second letter of their city is an "a". Lastname city thompson santa monica nelson kalma

Answers

Answered by gladiesbiji123
0

Answer:

select lastname,city from (tablename) where lastname like"n%" and where city="%a";

Explanation:

Similar questions