Services
Discover
Ask a Question
Log in
Sign up
Filters
Done
Question type:
Essay
Multiple Choice
Short Answer
True False
Matching
Topic
Computing
Study Set
Database Concepts
Exam 3: Structured Query Language
Path 4
Access For Free
Share
All types
Filters
Study Flashcards
Practice Exam
Learn
Question 1
Multiple Choice
Which of the following is not true about primary keys?
Question 2
Essay
Discuss SQL data types.
Question 3
True/False
Microsoft Access SQL commands are run within the SQL View of a Query window.
Question 4
Multiple Choice
Which SQL keyword is used to specify a condition that rows must meet to be included in the results of an SQL SELECT query?
Question 5
Multiple Choice
Which of the following SQL commands would be used to remove only the data from a table named STUDENT while leaving the table structure intact?
Question 6
Multiple Choice
Which of the following SQL commands would be used to remove both the data and the table structure of a table named STUDENT?
Question 7
Multiple Choice
The order of the columns returned by an SQL SELECT statement is determined by the:
Question 8
True/False
In SQL,the NOT keyword can be combined with the IN keyword to form the NOT IN condition for selecting values.
Question 9
Essay
Given the table
CUSTOMER(
CustID
‾
, Name, PhoneNumber, AccountBalance)
\text { CUSTOMER(\underline{CustID}, Name, PhoneNumber, AccountBalance) }
CUSTOMER(
CustID
, Name, PhoneNumber, AccountBalance)
write the standard SQL query to retrieve the Name and Phone Number of customers whose name begins with 'S'.
Question 10
Short Answer
Using SQL commands,multiple tables can be queried so that all the values from one table appear in the results,regardless of whether they have one or more corresponding values in the other table,by using the SQL ________ command.