Skip to content

Commit 7dde282

Browse files
authored
Update WHERE Clause and equal operator.txt
Update code
1 parent 762198e commit 7dde282

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

WHERE Clause and equal operator.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,3 +26,9 @@ In To specifY MULTIPLE POSSIBLE VALUE OF A COLUMN
2626

2727
2. specific data from specific column
2828
Syntax: SELECT column_name From table_name WHERE column_name operator 'value';
29+
Ex: SELECT * from student_reg WHERE name='SITA';
30+
+------+------+---------+------------+-----------+
31+
| s_id | name | address | dob | fees |
32+
+------+------+---------+------------+-----------+
33+
| 102 | SITA | KTM | 2001-10-11 | 200000.12 |
34+
+------+------+---------+------------+-----------+

0 commit comments

Comments
 (0)