Test your Oracle SQL and PL/SQL prowess with our Practice Quiz designed for developers. Dive into a challenging set of questions covering SQL queries, data manipulation, and procedural language concepts. Sharpen your skills in database development as you tackle real-world scenarios. Whether you're a seasoned developer or just starting, this quiz offers a valuable opportunity to refine your Oracle SQL See moreand PL/SQL expertise. Gear up for an engaging experience that combines theoretical knowledge with practical application, perfect for those aiming to excel in Oracle database development. Take the quiz and elevate your proficiency in SQL and PL/SQL for effective database management.
REMOVE FROM CUSTOMER...
DROP FROM CUSTOMER...
DELETE FROM CUSTOMER WHERE...
UPDATE FROM CUSTOMER...
Rate this question:
DELETE
UPDATE
SELECT
ALTER
DESCRIBE
Rate this question:
Immediately after the SELECT clause
Before the WHERE clause
Before the FROM clause
After the ORDER BY clause
After the WHERE clause
Rate this question:
ORDER BY SALARY > 5000.
GROUP BY SALARY > 5000
HAVING SALARY > 5000
WHERE SALARY > 5000
Rate this question:
MAX
MIN
SUM
COUNT
TOTAL
LARGEST
Rate this question:
NVL
DECODE
COALESCE
NULLIF
Rate this question:
Removes the table
Removes all rows from a table
Shortens the table to 10 rows
Removes all columns from a table
Removes foreign keys from a table
Rate this question:
Constraint names must start with SYS_C.
All constraints must be defined at the column level.
Constraints can be created after the table is created.
Constraints can be created at the same time the table is created.
Rate this question:
Create user user_name identified user_password;
Create user user_name user_password;
Create user user_name identified by user_password;
None of these;
Rate this question:
CASCADE
UNIQUE
NONUNIQUE
CHECK
PRIMARY KEY
CONSTANT
NOT NULL
Rate this question:
GROUP BY
ORDER BY
SORT BY
HAVING BY
Rate this question:
It allows a grantee DBA privileges.
It is required syntax for object privileges.
It allows privileges on specified columns of tables.
It is used to grant an object privilege on a foreign key column.
It allows the grantee to grant object privileges to other users and roles.
Rate this question:
A main query can have more than one subquery.
A subquery can have more than one main query.
The subquery and main query must retrieve data from the same table.
The subquery and main query can retrieve data from different tables.
Only one column or expression can be compared between the subquery and main query.
Multiple columns or expressions can be compared between the subquery and main query.
Rate this question:
The start value of the sequence is always 1.
A sequence always increments by 1.
The minimum value of an ascending sequence defaults to 1.
The maximum value of a descending sequence defaults to 1.
Rate this question:
DROP
DELETE
TRUNCATE
ALTER TABLE
CREATE TABLE
Rate this question:
String
Integer
Calendar
Numeric
Translation
Date
Conversion
Rate this question:
Composite keys.
Determinants.
Candidate keys.
Foreign keys.
Rate this question:
Create table emp add(id number(3));
Create table emp (id number(3));
Create table emp modified (id number(3));
Create table emp (id numbers(3));
Rate this question:
Row of a table.
Key of a table.
Column of a table.
Two-dimensional table
Rate this question:
Deletes the table structure only.
Deletes the table structure along with the table data.
Works whether or not referential integrity constraints would be violated.
Is not an SQL statement.
Rate this question:
SELECT [all] FROM EMP WHERE Last_Name ='KING'
SELECT * FROM EMP WHERE Last_Name ='KING'
SELECT * FROM EMP WHERE Last_Name LIKE 'KING'
SELECT [all] FROM EMP WHERE Last_Name LIKE 'KING'
Rate this question:
ADD RECORD
ADD NEW
INSERT INTO
INSERT NEW
Rate this question:
Change the table structure.
Change the table data.
Add rows to the table.
Delete rows from the table.
Rate this question:
REMOVE FROM DEPTT
DROP TABLE DEPTT
DELETE FROM DEPTT
UPDATE FROM DEPTT
Rate this question:
Yes, always
No, never
Yes, in autonomous transactions
Except for autonomous transactions
Rate this question:
256 chars
255 chars
512 chars
511 chars
None of the above
Rate this question:
Yes, always
Yes, but not always
No, never
Rate this question:
250
500
1000
5000
Infinite
Rate this question:
Char(0)
Char(1)
NULL
None of the above
Rate this question:
Select * from $version;
Select * from v$version;
Select * from users_version;
Select * from v_version;
Rate this question:
127
255
511
Unlimited
Rate this question:
12
15
25
30
Rate this question:
To Create Tables
To Create triggers
In Autonomous Transactions
To Read write from and to External files
Rate this question:
ALTER SYSTEM KILL SESSION 'sid,serial#'
ALTER KILL SESSTION 'sid,serial#'
ALTER TABLE KILL SESSION 'sid,serial#'
ALTER SYSTEM KILL SESSIONS 'sid,serial#'
Rate this question:
Quiz Review Timeline (Updated): Jun 28, 2024 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.