Choose a topic to test your knowledge and improve your Data Base Management System (DBMS) skills
When primary key is made up of two or more columns then it is called __ primary key.
A key which is referring to the primary key of another table is called __
When data is stored, maintained and retrieved from multiple tables then special database software are required called _
Identify the Foreign Key from table βSalesβ Table Client: ClientID (primary Key) clientname clientphone Table : Sales SalesID (Primary Key) ClientID Profit
Which of the following is not valid field of table βStudentβ a. admno b.name c. fees d. salary
In RDBMS, data is organized in the form of __________________
SQL stands for _________________
All the values in ________ are of same type.
_ represent a single data item in a table.
________ are the basic building blocks of a database.
We can create table :
By default data type of fields is.
By default the length of Varchar data type is __
By default the name of the table is ______
___ are used to identify which type of data we are going to store in the database.
Which data type will be appropriate to store information as Salary, Fees, Price etc b. Alphanumeric Data types
Which of the following is not a numeric data type?
Which of the following data types can not store decimal values?
Which of the following will occupy more space in computer memory?
__ data types are used for storing photos, music files etc
Char is a ______ length data type and varchar is a ______ length data type.
Which field is suitable for storing records of employees?
Auto Value is a property of __ data type .
Which of the following property help to set the number of characters in Varchar type.
Which property ensures that field can not be left blank?
By default the length of the Integer data type is ______________
Which of the following property to be turned βyesβ so that value will be auto incremented?
Which of the following is not the binary data types?
Which of the following is not the date time data types?
Which data type is used to store value of fields like βDate of Birthβ?
We can ____________________ data in table.
In which view data can be entered in table?
In which mode we can change the structure of table?
Sorting means to arrange data in _______________ order.
In Base data can be linked between two or more tables with the help of _________________
Relationship can be created between
Relationship between tables can be created from _____________________ menu.
There are __________________ types of relationship which can be created between tables.
Which language help to extract/fetch data from table?
We can create query (in Open Office Base) in _______________________
SQL stands for __________________
_________ statement is used to retrieve data from table.
_________ is the most common DML command.
DML stands for ____________
Which of the following clause return specific rows?
Which of the following clause return records in ascending order?
Command to display all the data in the table βempβ is. a.
Command to display all the data in the table βempβ is.
Shortcut to execute query in Create Query in SQL View is __
Which command is used to display the salary of all the employees after incrementing by 1000.
Select βsalaryβ from emp;
Select βempnameβ, βsalaryβ * 3 from emp;
To get details about the list of students whose favorite color is blue. Query for this is :
select * from Stud order by βRollnoβ ASC;
Command to increase the salary of all employees by 15000.(table name emp and column name sal)
By default data is arranged in _____ order using order by clause.
Which of the following is DML commands?
A ________ provides a systematic way of storing information into the database.
Which of the following act as an interface to view, enter and change data in database?
A _______ helps to collect specific information from the pool of data.
Which of the following is to be created first?
Which of the following field is invalid for storing information of βLibraryβ Table? b. c. d.
Which of the following is suitable to act as a primary key in table student?
A foreign key is a reference of the ________ key in another table.
In a table we can have only ______ primary key.