With sql, how do you select all the records from a table named "persons" where the "firstname" is "peter" and the "lastname" is "jackson"?
Answers
Answered by
0
select * from persons
where firstname="Peter"
and
lastname ="Jackson";
Answered by
1
Write the SQL code to select all the records from a table named "persons" where "firstname" is "peter" and the "lastname" is "jackson"?
So, here is the SQL code for the question.
SELECT * FROM persons WHERE FirstName="peter" AND LastName="jackson"
Similar questions
English,
6 months ago
Math,
6 months ago
English,
1 year ago
Math,
1 year ago
Social Sciences,
1 year ago