how would you display all those rows from a table named "student" where the value of the column "department" is hindi?
Answers
Answered by
1
SELECT * FROM student
WHERE department = 'hindi' ;
Similar questions