CBSE BOARD X, asked by yadwindersingh73806, 11 months ago

write a select query to display records of the doctor whose OPD_DAYS are 'MWF'

Answers

Answered by samridhidisha107
0

Answer: select * from table_name where OPD_DAYS='MWF';

Explanation: as the query for select statement of all the records with a condition is

select * from table_name where (condition);

Similar questions