SQL and RDBMS Fundamentals
Covers SQL statements, RDBMS concepts, data manipulation, and database design fundamentals including sorting, wildcards, comparison operators, and logical components
Questions
Identify the logical components of the database. Choose all that apply.
- Datafile
- Database
- Controlfile
- Table
- Schema
- Redolog Group
which of the following represent the "not equal to" condition?
- !=
- ^=
- <>
- !==
which of the following is not a comparison condition?
- NOT LIKE
- IN (set)
- ==
- ^=
which of the following are wildcard characters?
- %
- $
- _
- *
RDBMS stands for
- Relational Database Management System
- Rational Database Management System
- Real Database Management System
- Rapid Database Management System
Identify SQL statement which is used for Data Retrieval
- Insert
- Create
- Delete
- Select
- Grant
- Commit
Identify SQL statement which is used for Data Manipulation. Choose all that apply.
- Insert
- Create
- Delete
- Select
- Merge
- Update
Identify SQL statement which is used as Transaction Control Language command. Choose all that apply.
- Alter
- Rollback
- Select
- Commit
- Rename
- Savepoint
Identify SQL statement which is used as Data Control Language command. Choose all that apply.
- Alter
- Grant
- Select
- Rename
- Revoke
- Update
ERD stands for
- Enterprise Relationship Diagram
- Entity Relationship Diagram
- Extra Relationship Diagram
- Entry Relationship Diagram
What is true about RDBMS? Choose all that apply
- A system consisting of tables and relation between the tables
- Writes efficient queries itself without user intervention to retrieve and manipulate the data stored
- Handles data retrieval and manipulation using a functional programming language called SQL (Structured Query Language)
- A system consisting of memory structures and background process
- Translates a SQL query into a series of operations that retrieve the actual data from the database
SQL stands for
- Structured Query Language
- Stable Query Language
- Synchronous Query Language
- System Query Language
As a part of Entity Relationship Modeling conventions, an Entity is represented by a SOFT BOX.
- True
- False
which is an escape identifier i.e, used to avoid the meaning of wildcard characters, and hence interpret underscore and percentage literally
- \
- /
- ESCAPE
- *
In RDBMS, one can NOT have two tables with the same column name
- True
- False
In RDBMS, a TABLE is two dimensional object
- True
- False
DATABASE is a PHYSICAL object
- True
- False
Order by – clause comes last in select statement
- True
- False
desc - is the default option for sorting rows
- True
- False
Null vales are displayed last in case of ascending and first in case of desc sequences
- True
- False