Computer Science, asked by jessie098, 5 months ago

In SQL, name the clause that is used to display the tuples in ascending order of an attribute.

Answers

Answered by Shalish
3

Answer:

Order by clause

Explanation:

The result of a query may be sorted either in ascending or descending order by making use of ORDER BY clause. The order is to be specified using the keywords ASC or DESC along with the column name that is used with order by clause. If the order is not specified the arrangement will be in the ascending order

Eg SELECT * FROM STUDENT ORDER BY NAME

Answered by duragpalsingh
0

Answer:

ORDER BY Clause

Explanation:

ORDER BY Clause is used to display the tuples in ascending order of an attribute.

Its syntax is as follows:

SELECT * FROM table-name ORDER BY ASC;

Learn More on Brainly.in:

Your friend Sunita complaints that somebody has created a fake profile on Twitter and defaming her character with abusive comments and pictures. Identify the type of cybercrime for these situations.

https://brainly.in/question/30095565

Given the lists L=[1,3,6,82,5,7,11,92] , write the output of print(L[2:5])​

brainly.in/question/25870565

Suppose a tuple T is declared as T = (10, 12, 43, 39) , which of the following is incorrect? a) rint * (T[1]) b) T[2] = - 29 c) print * (max * (T)) d) print (len * (T))​

https://brainly.in/question/30819138

Similar questions