Computer Science, asked by eshaaggarwal4780, 1 year ago

With sql, how do you select all the records from a table named "persons" where the value of the column "firstname" ends with an "a" ?

Answers

Answered by okaps
6
SELECT * FROM Persons WHERE FirstName LIKE a%
Answered by devrajkt123
0

Answer:

select * from persons where firstname like '%a';

Similar questions