Hi everyone I am fairly new to SQL, and I am in a database class. I need help on querying this statement "write a sql statement to display the First and Last Name of students having an a in the second position in their first names."
The tables are
Student Student_ID Last_Name First_Name Address Zip Major Class Status 1 Smith James 555 Ohio Road 88888 Business
5 2 Doe Jane 32 3rd Ave 88888 Biology
10 3 Miller Mark 511 Easy streer 88808 Math
5 4 Smith Ty 54 Main Street 88808 Math
3
My SQL statement that I wrote is: select first_name, last_name
FROM STUDENT WHERE FIRST_NAME LIKE'_A'; however, the result just shows last_name and first_name columns with blank rows. Any help is appreciated.
The tables are
Student Student_ID Last_Name First_Name Address Zip Major Class Status 1 Smith James 555 Ohio Road 88888 Business
5 2 Doe Jane 32 3rd Ave 88888 Biology
10 3 Miller Mark 511 Easy streer 88808 Math
5 4 Smith Ty 54 Main Street 88808 Math
3
My SQL statement that I wrote is: select first_name, last_name
FROM STUDENT WHERE FIRST_NAME LIKE'_A'; however, the result just shows last_name and first_name columns with blank rows. Any help is appreciated.