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
6
SELECT * FROM Persons WHERE FirstName LIKE a%
Answered by
0
Answer:
select * from persons where firstname like '%a';
Similar questions