To display the name and stream of all students who are in class 12 ascending order of Name.
Answers
Answered by
0
Answer:
you have to write the table name but still
select name, stream from tablename where class=12 order by name asc;
change the column name if convenient
Similar questions