Computer Science, asked by Anonymous, 4 months ago

Which of the query is used to select all students without from City="Pune"

a) Select * from STUDENT where city is "Pune"
b) Select * from STUDENT where city ="Pune"
c) Select * from STUDENT where city =="Pune"

Answers

Answered by RaghavPradeep
7

Answer:

Which of the Query is used to Select all the Students from City = "Pune".

A

Select * from STUDENT where city == "Pune";

B

None of these

C

Select * from STUDENT where city="Pune";

D

Select * from STUDENT where city is "Pune";

Similar questions