Oracle and SQL Basics
Description: A basic test for Oracle Starters. | |
Number of Questions: 25 | |
Created by: Manjit Singh | |
Tags: Oracle RDBMS SQL Computers |
Which of the following best describes Oracle?
Which of the following SQL keywords is used to resize a column definition?
SQL stands for _____.
The Like operator uses some special symbols called wildcards for pattern matching. Which of the following are valid wildcard characters in SQL?
Which of the following SQL statements can be used to display the list of available tables?
Which of the following statements is used to undo any accidental changes in a table?
A user in Oracle must have which of the following privileges in order to create objects like tables, views, etc.?
The temporary name of a table or a column is known as _____.
The Truncate Table statement when issued, _____.
We can modify the data type of a column which already has data only _____.
A Select/Delete/Update statement that does not have a where clause will _____.
All the values in 'where in' clause must be separated by a _____.
The ___ statement is used to save changes made to a table.
The and operator is written as __ in SQL.
How can we select all the records from a table named company list where the value of the column company is IBM?
The statement to return all the records from a table named books sorted in descending by the column author is _____.
How can we count the number of records in the sample table?
Which of the following is a valid statement to select all the records from a table named city where the value of the column cityname starts with an 'A'?
Which of the following statements creates a copy of the table named source with the name target?
Assume that in a table named Papers, there is a column named Name. Which of the following SQL statements can be used to set its value to NULL?
Which of the following is a valid statement to insert a new record in the doctor table?
Which SQL statement is used to extract data from a table?
Which of the following keywords is different from others in terms of functionality?
Which of the following SQL commands is used to delete data from a table?
Which SQL statement is used to return only different (non duplicate) values in a select statement?