Computer Knowledge
Database and SQL
4,213 Questions
Master structured query language commands, database joins, table constraints, and alias generation. This section covers relational database management concepts and query outputs essential for technical aptitude. These technical questions feature prominently in banking IT officer exams and computer knowledge sections.
SQL queries and aliasesDatabase table constraintsDatabase joins and transformationsStored procedures and functions
Database and SQL Questions
A
Correct answer
Explanation
You can call a stored procedure from an anonymous PL/SQL block. Anonymous blocks can invoke procedures using the EXECUTE statement or direct procedure calls. This is a standard way to test or execute procedures without creating a named stored block. The procedure executes within the block's scope.
-
Copy table
-
Alter table
-
Export table
-
Generate DDL
D
Correct answer
Explanation
DDL (Data Definition Language) contains the SQL commands that define database structures like CREATE TABLE. Generating DDL allows you to duplicate table structure along with constraints and indexes. Copy/Alter/Export table operate on data, not structure.
-
Both are True
-
i) Is Only True
-
ii) is only True
-
Neither is True
-
Both are True
-
i) Is Only True
-
ii) is only True
-
Neither is True
A
Correct answer
Explanation
A cursor must always be opened before fetching rows. In standard embedded SQL, each execution of the FETCH statement retrieves exactly one row into host variables. Both statements are true, making the selected option correct.
-
Same value of Primary Key can appear in more than one row in the table
-
A Primary key defined column can be of type LONG
-
A column that is defined as Primary Key cannot contain NULL value.
-
Both A. and B.
C
Correct answer
Explanation
By definition, a primary key uniquely identifies each row in a table and therefore cannot contain NULL values. NULL would violate the uniqueness constraint since NULL = NULL is not true in SQL. Option A is false because primary key values must be unique. Option B is incorrect because LONG is not a standard SQL data type (though CLOB/BLOB exist).
-
Using a view to access the table
-
Using a referential constraint on the table
-
Revoking access from the phone_number column
-
Defining a table check constraint on the table
A
Correct answer
Explanation
A view is a virtual table that can restrict access to specific columns. By creating a view that excludes the phone_number column and granting users access only to the view (not the base table), you effectively limit their read access. Referential constraints enforce relationships between tables, revoking access from a column doesn't work as columns are accessed through the table, and check constraints validate data values.
-
ON DELETE RESTRICT
-
ON DELETE CASCADE
-
ON DELETE SET NULL
-
ON DELETE CHILD
-
ON DELETE MATCH
B
Correct answer
Explanation
ON DELETE CASCADE automatically deletes all matching rows in the child table (T2) when the referenced row in the parent table (T1) is deleted. RESTRICT prevents deletion if child rows exist, SET NULL sets the foreign key to NULL, and CHILD and MATCH are not standard ON DELETE options.
-
forces cursor to close after commit
-
Keeps cursor open after commit
-
Does not allow cursor to close till all rows are fetched
-
Locks the cursor
-
None of the above
B
Correct answer
Explanation
The WITH HOLD option in DB2 (and other RDBMS) keeps a cursor open across COMMIT operations. Without WITH HOLD, the cursor would close automatically when a COMMIT is issued. It doesn't force closure, lock the cursor, or wait for all rows to be fetched.
-
EQUI-JOIN
-
NON EQUI-JOIN
-
Both A. and B.
-
None of the Above
C
Correct answer
Explanation
SQL supports both EQUI-JOIN (joining using equality operator) and NON-EQUI-JOIN (joining using operators other than =, such as <, >, BETWEEN, etc.). An EQUI-JOIN is a join condition using =, while NON-EQUI-JOIN uses any other comparison operator.
-
100 rows
-
50 rows
-
150 rows
-
5000 rows
D
Correct answer
Explanation
When joining two tables without a WHERE clause specifying the join condition, you get a Cartesian product (cross join). Every row in T1 pairs with every row in T2, so 100 rows x 50 rows = 5000 rows. This is a common SQL mistake that produces much more data than intended.
-
ALTER TABLE command is used to create a table
-
ALTER TABLE command is used to change the column elements in a table
-
ALTER TABLE command is used to delete a table
-
Both A. and C.
D
Correct answer
Explanation
The ALTER TABLE command is used to modify the structure of an existing table (like changing columns), not to create (CREATE TABLE) or delete (DROP TABLE) a table. Therefore, both A and C are false statements about ALTER TABLE, making this option correct.
-
Unique constraints
-
Primary keys
-
Cascading actions
-
Foreign keys
A
Correct answer
Explanation
Referential integrity maintains relationships between tables via foreign keys and primary keys. Unique constraints ensure column uniqueness within a single table but don't enforce relationships between tables. Cascading actions (like CASCADE delete) and foreign keys directly maintain referential integrity, while primary keys define the parent side of the relationship.
-
Cursors
-
Host Variables
-
Indicator Variable
-
SQLCA
A
Correct answer
Explanation
Cursors are SQL memory structures that point to a result set and allow the application to process multiple rows one at a time. Host variables, indicator variables, and the SQLCA (SQL Communication Area) are used for data exchange, null handling, and error checking, not row iteration.
-
Table affects the relativity of below table.
-
Table does not affects the relativity any object.
-
Table does not affect any object and the table moves to a new page based on rule given
-
Table does not affect any object and the table moves to a new page always
D
Correct answer
Explanation
When a table is set to break flow on a page, it moves to a new page and does not affect the positioning or flow of any objects that come after it. This creates a page break at that table's location regardless of other layout rules. Option C incorrectly suggests the move is rule-based.
-
convert(varchar(10), sys_date,101)
-
convert(varchar(11), sys_date)
-
convert(varchar(10), sys_date)
-
cast(sys_date as varchar(11))
A,B,D
Correct answer
Explanation
CONVERT function in SQL Server can convert datetime to varchar with optional style codes. CONVERT(varchar(10), sys_date, 101) converts to mm/dd/yyyy format (style 101). CONVERT(varchar(11), sys_date) converts without style (default format). CAST(sys_date as varchar(11)) is equivalent to CONVERT without style. Option C is incomplete - it needs a style parameter or length specification to be syntactically correct for this use case.