SQL New
SQL New
(iii) Insert the following data into the attributes Rollno, Name, Class,
Fees and Qtr in fees table.
Grade 12A5 PRACTICE SHEET 2 Subject: Computer Science (iv) Aman want to remove the table Fees table from the database
School. Which command will he use from the following:
1. As a database administrator, answer any 4 of the following questions: a) DELETE FROM Fees;
Name of the table : SOFTDRINK b) DROP TABLE Fees;
The attributes are as follows: c) DROP DATABASE Fees;
Drinkcode, Calories - Integer d) DELETE Fees FROM Fees;
Price - Decimal (v) Now Aman wants to display the structure of the table Fees, i.e,
Dname - Varchar of size 20 name of the attributes and their respective data types that he has
used in the table. Write the query to display the same.
3.