The SQL statement that queries or reads data from a table is ________ .
Answer: A
No answer description available for this question.
Enter details here
Find the SQL statement below that is equal to the following: SELECT NAME FROM CUSTOMER WHERE STATE = 'VA';
Answer: D
No answer description available for this question.
Enter details here
The command to eliminate a table from a database is:
Answer: B
No answer description available for this question.
Enter details here
Which one of the following provides the ability to query information from the database and to insert tuples into, delete tuples from, and modify tuples in the database ?
Answer: A
DML performs change in the values of the relation .
Enter details here
The result of a SQL SELECT statement is a(n) ________ .
Answer: D
No answer description available for this question.
Enter details here
The result of every SQL query is a table.
Answer: A
No answer description available for this question.
Enter details here
The format SELECT-FROM-WHERE is the fundamental framework of SQL SELECT statements.
Answer: A
No answer description available for this question.
Enter details here
The SQL keyword(s) ________ is used with wildcards.
Answer: A
No answer description available for this question.
Enter details here
To establish a range of values, < and> can be used.
Answer: A
No answer description available for this question.
Enter details here
Create table employee (name varchar ,id integer) What type of statement is this ?
Answer: B
Data Definition language is the language which performs all the operation in defining structure of relation.
Enter details here