Computer Science, asked by anjumarwaha500, 7 months ago

To display the records of students in alphabetical order by their names, which one is correct -
1 SELECT * FROM STUDENTS IN ORDER BY NAME;
2 SELECT * FROM STUDENTS ORDER BY NAME;
3 SELECT * FROM STUDENTS ORDER BY NAMES DESC;
4 ORDER BY NAME SELECT ALL RECORDS;​

Answers

Answered by Anonymous
1

Answer:

option one and two is correct

Answered by nilesh23612
1

Answer:

2. SELECT * FROM STUDENTS ORDER BY NAME;

Explanation:

as we have to show name in alphabetical order

Similar questions