Question: 2- With SQL how do you select all the records from a table named Students where the FirstName is Jack and Marks are greater than
2- With SQL how do you select all the records from a table named "Students" where the "FirstName is Jack and "Marks are greater than 65? 1) SELECT * FROM Students WHERE FirstName'="Jack" AND "Marks'>65; II) SELECT * FROM Students WHERE 'FirstName='Jack', 'Marks'>65; MI) SELECT * FROM Students WHERE FirstName='Jack' AND Marks>65; IV) none of them You can also see the options in the following figure 1) SELECT * FROM Students WHERE 'FirstName'='Jack' AND 'Marks'>65; II) SELECT * FROM Students WHERE 'FirstName'='Jack', 'Marks'>65; III) SELECT * FROM Students WHERE FirstName='Jack' AND Marks>65; IV) none of them a) 11 b) C) 32 - IV d) Bo brak
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
