I have a table named “Student”.
Student
id | name | age
1 | john | 10
2 | jack | 10
3 | jerry| 10
I wanna select 1 and 2 rows. I wrote that Select * from Student where name=john and name=jack
But return “Empty Set”.
How do i do it. Help me.
Or