0

What is the use of where keyword in sql

7th Sep 2017, 2:54 PM
shanthinsivabalan
3 Respuestas
+ 4
where is use for selection of data. suppose there is an attribute having name and rollno. then when you want to access the detail of roll no 5 you can access as select * from table where rollno = 5;
7th Sep 2017, 3:01 PM
Atul Agrawal
+ 1
SELECT * FROM users WHERE age >= 21; Basically, select everything from the users table WHERE age is greater than or equals 21.
7th Sep 2017, 3:00 PM
Bagshot
Bagshot - avatar
0
where keyword is used to select or fetch the information or records from a table
9th Sep 2017, 5:05 PM
Shweitseee Singh
Shweitseee Singh - avatar