Advertisements
Advertisements
Question
Answer the following questions based on the table Salesman given below:
Table: Salesman
salesman_id | name | city | commission |
5001 | Neil Bhatt | Delhi | 0.15 |
5002 | Rohan Malik | Mumbai | 0.13 |
5005 | Ravi Mohan | Delhi | 0.11 |
5006 | Mehak Rai | Delhi | 0.14 |
5007 | Pual lal | Bangalore | 0.13 |
5003 | Raman Sen | Kolkata | 0.12 |
- How many tuples does the given table have?
- Suggest the primary key for the given table.
- Write the MySQL query to display all the records in descending order of commission.
Short Answer
Solution
- Tuple = 6
Explanation: The term "tuple" describes how many records or rows are in the table. - Primary Key - salesman_id
Explanation: The primary key needs to be unique and empty of null values. Unique values exist in the salesman ID column of this table. It has so been chosen as the primary key. - SELECT*FROM Salesman ORDER BY commission DESC;
shaalaa.com
Is there an error in this question or solution?