Advertisements
Advertisements
प्रश्न
______ command is used to remove the primary key from a table in SQL.
विकल्प
update
remove
alter
drop
उत्तर
Alter command is used to remove the primary key from a table in SQL.
Explanation:
The alter table command is used to remove the primary key from a table in SQL.
Syntax to remove the primary key:
ALTER TABLE table_name DROP PRIMARY KEY;
So, the correct answer is Alter.
APPEARS IN
संबंधित प्रश्न
Each table comprises of ______ and ______.
Case Based
Consider the table STUDENT with the following detail.
STU_ID | NAME | STREAM | MARKS | CLASS |
1. | Aditya | Science | 87.5 | 12A |
2. | Vikram | Commerce | 88.7 | 12B |
3. | Astha | Humanities | 76.8 | 12C |
4. | Varsha | Science | 79.5 | 12A |
5. | Kanishka | Science | 77.9 | 12A |
6. | Anand | Commerce | 86.7 | 12B |
Now answer the question given below:
Command to select all Science students from the table STUDENT
Which of the following command is used to remove a relation from an SQL database?
A tuple in RDBMS is referred to as ______ of a table.
Which of the following is not an RDBMS?
Which of the following are included in defining a schema?
To know the names of existing databases, we use the statement:
What is not true with respect to the create table statement?
What statement will you give to view the structure of a table?
To remove an attribute or to add a constraint to an already existing table we use:
How will you add a primary key to a relation?
How will you add two columns coll and col2(composite key) as primary key to a relation?
Which statement is used to remove a table from the database?
Raju's date of birth is 21/06/2006. How will his date be added to database?
A shop called Wonderful Garments which sells school uniforms maintains a database SCHOOLUNIFORM as shown below. It consisted of two relations - UNIFORM and COST. They made UniformCode the primary key for UNIFORM relations. Further, they used UniformCode and Size to be composite keys for COSTrelation. By analyzing the database schema and database state, specify SQL queries to rectify the following anomalies.
- M/S Wonderful Garments also keeps handkerchiefs of red colour, medium size of Rs. 100 each.
- INSERT INTO COST (UCode, Size, Price) values (7, 'M', 100);
When the above query is used to insert data, the values for the handkerchief without entering its details in the UNIFORM relation are entered. Make a provision so that the data can be entered in the COST table only if it is already there in the UNIFORM table. - Further, they should be able to assign a new UCode to an item only if it has a valid UName. Write a query to add appropriate constraints to the SCHOOLUNIFORM database.
- Add the constraint so that the price of an item is always greater than zero.
Using the CARSHOWROOM database given in the chapter, write the SQL queries for the following:
- Add a new column Discount in the INVENTORY table.
- Set appropriate discount values for all cars keeping in mind the following:
(i) No discount is available on the LXI model.
(ii) VXI model gives a 10 percent discount.
(iii) A 12 percent discount is given on cars other than the LXI model and VXI model. - Display the name of the costliest car with the fuel type “Petrol”.
- Calculate the average discount and total discount available on Baleno cars.
- List the total number of cars having no discount.
Which of the following commands will delete the table from the MYSQL database?
The code given below reads the following record from the table named student and displays only those records that have marks greater than 75:
- RollNo - integer
- Name - string
- Clas - integer
- Marks - integer
Note the following to establish connectivity between Python and MYSQL:
- Username is root.
- The password is the tiger.
- The table exists in an MYSQL database named school.
Write the following missing statements to complete the code:
Statement 1 - to form the cursor object
Statement 2 - to execute the query that extracts records of those students whose marks are greater than 75.
Statement 3 - to read the complete result of the query (records whose marks are greater than 75) into the object named data, from the table student in the database.
import mysql.connector as mysql
def sql_data():
con1=mysql.connect(host="localhost",user="root",password="tiger", database="school")
mycursor=_______________ #Statement 1
print("Students with marks greater than 75 are :")
_________________________ #Statement 2
data=__________________ #Statement 3
for i in data:
print(i)
print()
Write the command to view all databases.
Name any two DDL commands.
The code given below deletes the record from the table employee, which contains the following record structure:
E_code
- StringE_name
- StringSal
- IntegerCity
- String
Note the following to establish connectivity between Python and MySQL:
- Username is
root
- Password is
root
- The table exists in a MySQL database named
emp
. - The details
(E_code, E_name, Sal, City)
are the attributes of the table.
Write the following statements to complete the code:
Statement 1 – to import the desired library.
Statement 2 – to execute the command that deletes the record with E_code
as 'E101'.
Statement 3 – to delete the record permanently from the database. ____________
import ____________ as mysql #Statement1
def delete():
mydb=mysql.connect(host="localhost",use r="root",
passwd="root",database="emp")
mycursor=mydb.cursor()
____________ #Statement 2
____________ #Statement 3
print ("Record deleted")
Consider the table Personal given below:
Table: Personal | ||||
P_ID | Name | Desig | Salary | Allowance |
P01 | Rohit | Manager | 89000 | 4800 |
P02 | Kashish | Clerk | NULL | 1600 |
P03 | Mahesh | Superviser | 48000 | NULL |
P04 | Salil | Clerk | 31000 | 1900 |
P05 | Ravina | Superviser | NULL | 2100 |
Based on the given table, write SQL queries for the following:
- Increase the salary by 5% of personals whose allowance is known.
- Display Name and Total Salary (sum of Salary and Allowance) of all personals. The column heading ‘Total Salary’ should also be displayed.
- Delete the record of Supervisors who have salary greater than 25000.