在本文中,where子句将与示例一起讨论。
介绍 :
- 为了有时提取数据,我们需要满足一些特定条件。
- “ where”是用于在查询中写入条件的子句。
句法 :
select select_list
from table_name
where condition
为了更好地说明,下面给出了一个示例–
例子 :
样本表:学生
Roll number | Name | Course |
---|---|---|
111 | Riya | CSE |
112 | Apoorva | ECE |
113 | Mina | Mech |
114 | Rita | Biotechnology |
115 | Veena | Chemical |
116 | Deepa | EEE |
如果用户要提取正在学习Mechanical的学生的姓名,则查询如下:
select name
from student
where course='Mechanical'
输出为–
Name | Course |
---|---|
Mina | Mech |
“ where”条件仅过滤评估为true的行。如果条件评估为假或未知,则将不对行进行过滤,从而导致错误。