| SQL Where Keyword |
|
Now let say we want to filter out certain information, we can use the WHERE keyword to filter out the specific records. The result will then return all the records where the conditional criteria have met. For example if we want to retrieve all the student records who paid their course fees over a $1000, then we can use the WHERE keyword. SYNTAX: SELECT "column_name" Table: Student
This examples will show you how to retrieve all the records where all student paid their course fees over $1000.00.
|