W3 SQL Flashcards
sql
What does SQL stand for?
Structured Query Language
sql
Which SQL statement is used to extract data from a database?
SELECT
sql
Which SQL statement is used to update data in a database?
UPDATE
sql
Which SQL statement is used to delete data from a database?
DELETE
sql
Which SQL statement is used to insert new data in a database?
INSERT INTO
sql
With SQL, how do you select a column named “FirstName” from a table named “Persons”?
SELECT FirstName FROM Persons
sql
With SQL, how do you select all the columns from a table named “Persons”?
SELECT * FROM Persons
sql
With SQL, how do you select all the records from a table named “Persons” where the value of the column “FirstName” is “Peter”?
SELECT * FROM Persons WHERE FirstName=’Peter’
sql
With SQL, how do you select all the records from a table named “Persons” where the value of the column “FirstName” starts with an “a”?
SELECT * FROM Persons WHERE FirstName LIKE ‘a%’
sql
The OR operator displays a record if ANY conditions listed are true. The AND operator displays a record if ALL of the conditions listed are true
True
sql
With SQL, how do you select all the records from a table named “Persons” where the “FirstName” is “Peter” and the “LastName” is “Jackson”?
SELECT * FROM Persons WHERE FirstName=’Peter’ AND LastName=’Jackson’
sql
With SQL, how do you select all the records from a table named “Persons” where the “LastName” is alphabetically between (and including) “Hansen” and “Pettersen”?
SELECT * FROM Persons WHERE LastName BETWEEN ‘Hansen’ AND ‘Pettersen’
sql
Which SQL statement is used to return only different values?
SELECT DISTINCT
sql
Which SQL keyword is used to sort the result-set?
ORDER BY
sql
With SQL, how can you return all the records from a table named “Persons” sorted descending by “FirstName”?
SELECT * FROM Persons ORDER BY FirstName DESC
sql
With SQL, how can you insert a new record, Jimmy and Jackson, into the “Persons” table?
INSERT INTO Persons VALUES (‘Jimmy’, ‘Jackson’)
sql
With SQL, how can you insert “Olsen” as the “LastName” in the “Persons” table?
INSERT INTO Persons (LastName) VALUES (‘Olsen’)
sql
How can you change “Hansen” into “Nilsen” in the “LastName” column in the Persons table?
UPDATE Persons SET LastName=’Nilsen’ WHERE LastName=’Hansen’
sql
With SQL, how can you delete the records where the “FirstName” is “Peter” in the Persons Table?
DELETE FROM Persons WHERE FirstName = ‘Peter’
sql
With SQL, how can you return the number of records in the “Persons” table?
SELECT COUNT(*) FROM Persons
sql
What is the most common type of join?
INNER JOIN
sql
Which operator is used to select values within a range?
RANGE
sql
The NOT NULL constraint enforces a column to not accept NULL values.
False
NOT NULL prevents NULL values from being accepted
sql
Which operator is used to search for a specified pattern in a column?
LIKE
sql
Which SQL statement is used to create a database table called ‘Customers’?
CREATE TABLE Customers
sql
%
Represents zero or more characters
sql
_ (underscore)
Represents a single character
sql
[]
Represents any single character within the brackets *
slq
^
Represents any character not in the brackets *
sql
-
Represents any single character within the specified range *
sql
{}
Represents any escaped character **
sql
SELECT
extracts data from a database
sql
UPDATE
updates data in a database
sql
DELETE
deletes data from a database
sql
INSERT INTO
inserts new data into a database
sql
CREATE DATABASE
creates a new database
sql
ALTER DATABASE
modifies a database
sql
CREATE TABLE
creates a new table
sql
ALTER TABLE
modifies a table
sql
DROP TABLE
deletes a table
sql
CREATE INDEX
creates an index
sql
DROP INDEX
deletes an index
sql
SELECT * FROM Customers
WHERE CustomerName LIKE '%es';
Return all customers that ends with the pattern ‘es’
sql
SELECT * FROM Customers
WHERE CustomerName LIKE '%mer%';
What does this sql block return?
Return all customers that contains the pattern ‘mer’
sql
SELECT * FROM Customers
WHERE City LIKE '_ondon';
What does this sql block return?
Return all customers with a City starting with any character, followed by “ondon”
sql
SELECT * FROM Customers
WHERE City LIKE 'L_ _ _on';
What does this sql block return?
Return all customers with a City starting with “L”, followed by any 3 characters, ending with “on”
sql
SELECT * FROM Customers
WHERE CustomerName LIKE '[bsp]%';
What does this sql block return?
Return all customers starting with either “b”, “s”, or “p”
sql
SELECT * FROM Customers
WHERE CustomerName LIKE '[a-f]%';
What does this sql block return?
Return all customers starting with “a”, “b”, “c”, “d”, “e” or “f”