old MTA DAF 3 Flashcards
What statement would you use to change data in a table?
UPDATE
What command do you use to perform a query in SQL?
SELECT
What command would you use to delete a table while leaving the table structure in place for future use?
TRUNCATE TABLE
What statement is used to delete a table from a database?
DROP
What would you use to combine two parameters in a query in SQL?
AND
How can you prevent the accidental loss of an entire table?
Use referential integrity
What wildcard character retrieves all records with the SELECT command?
*
What do you perform when you want to recall specific records from a database?
query
What keyword used with the SELECT statement is used to not output specified records?
NOT
Which clause used with the SELECT command will return values that you want to exclude from the normal parameters?
EXCEPT
What statement would you use to add data to a table?
INSERT
What clause would you use with the SELECT command that would pull records based on a range?
BETWEEN
What would you use to combine columns form two different tables?
JOIN
What statement is used to delete one or more rows in a table?
DELETE
What clause is used to combine related data from multiple table sources
JOIN