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

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!