InterviewSolution
Saved Bookmarks
| 1. |
1 point Select the SQL query whichdisplays the details of students'RAM and RAHIM from thestudent table. *SELECT * from student where name= 'RAM' or 'SHYAM';SELECT * from student where name= 'RAM' and 'SHYAM;SELECT * from student where name= 'RAM' or name ='SHYAM';SELECT * from student where name= 'RAM' and name ='SHYAM';! |
|
Answer» I didn't UNDERSTOOD UR QUESTION....MARK as BRAINLEIST |
|