Advertisements
Advertisements
Question
Write the SQL query to display all records in descending order of LName from the Table Customer.
| Table: Customer | ||
| Column Name | Data Type | Key |
| CID | Int | Primary Key |
| FName | Varchar (20) | |
| LName | Varchar (20) | |
| Age | Int | |
Code Writing
Advertisements
Solution
SELECT * FROM CUSTOMER ORDER BY LNAME DESC;shaalaa.com
Is there an error in this question or solution?
2024-2025 (March) Set 4
