adplus-dvertising
frame-decoration

Question

Which of the following information does an SQL DDL not specify?

a.

The schema for each relation

b.

The integrity constraints

c.

The operations on the tuples

d.

The security and authorization information for each relation

Posted under SQL DBMS

Answer: (c).The operations on the tuples

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. Which of the following information does an SQL DDL not specify?

Similar Questions

Discover Related MCQs

Q. Which of the following data types does the SQL standard not support?

Q. Which command is used to create a new relation in SQL

Q. If a1, a2, a3 are attributes in a relation and S is another relation, which of the following is an incorrect specification of an integrity constraint?

Q. What is the syntax to load data into the database? (Consider D as the database and a, b, c as data)

Q. Which of the following commands do we use to delete a relation (R) from a database?

Q. Which of the following commands do we use to delete all the tuples from a relation (R)?

Q. Choose the correct command to delete an attribute A from a relation R

Q. create table apartment(ownerID varchar (5), ownername varchar(25), floor numeric(4,0), primary key (ownerID));
Choose the correct option regarding the above statement

Q. What does the notnull integrity constraint do?

Q. Which of the following keywords is used beside the select clause to explicitly specify that duplicates are not removed?

Q. Which of the following logical connectives is not included in SQL?

Q. The where clause is a predicate involving attributes of the relation in the ______ clause.

Q. select distinct dept_name
from institute;

What does the above query do?

Q. What does the following query do?
select name, ID, branch

from student, department

where student.branch = department.branch;

Q. The ________ clause is used to list the attributes desired in the result of a query

Q. If we specify multiple relations in the from clause and do not specify any conditions in the where clause, what will the result be?

Q. State true or false: Multiple conditions in the where clause are separated by a “,”

Q. What does the natural join operation do?

Q. Observe the following query and choose the correct option.
select name, ID

from student natural join department natural join section

Q. Which keyword is used to rename a relation in a query?