Get Mystery Box with random crypto!

With SQL, how do you select all the records from a table named | IASAedu 🇺🇦

With SQL, how do you select all the records from a table named "Persons" where the value of the column "FirstName" starts with an "a"?
Anonymous Quiz
76%
SELECT * FROM Persons WHERE FirstName LIKE 'a%'
22%
SELECT * FROM Persons WHERE FirstName LIKE '%a'
1%
SELECT * FROM Persons WHERE FirstName='a'
1%
SELECT * FROM Persons WHERE FirstName='a'