InterviewSolution
Saved Bookmarks
| 1. |
Select All Records From Student Table Whose Name Is ‘abhi’ And ‘geethasri’. |
|
Answer» SELECT * from STUDENT where NAME in(‘ABHI’ , ’Geethasri’); Select * from Student where Name in(‘Abhi’ , ’Geethasri’); |
|