Computer Science, asked by Kartik74549063, 4 months ago

Descibe Table Syntax......

Answers

Answered by Anonymous
1

Answer:

The DESC command is used to sort the data returned in descending order.

The following SQL statement selects all the columns from the "Customers" table, sorted descending by the "CustomerName" column:

Example

SELECT * FROM Customers

ORDER BY CustomerName DESC;

Explanation:

please mark as brainliest and follow me!

Answered by zareen27
0

Answer:

Tables are uniquely identified by their names and are comprised of columns and rows. A table has a specified number of columns but can have any number of rows. Columns contain the column name and data type for the column. Rows contain the records or data for the columns.

Explanation:

I hope you understand

Similar questions