Prelim Flashcards
It is the standard language for dealing with Relational Databases.
SQL
______ is used to insert, search, update, and
delete database records.
SQL
TRUE OR FALSE:
SQL keyword are NOT case sensitive select is the same as SELECT
TRUE
TRUE OR FALSE:
Some database systems require a semicolon at the end of each SQL statement.
TRUE
_________ is the standard way to separate each SQL statement in database systems that allow more than one SQL statement to be executed in the same call to the server.
Semicolon
SQL COMMAND:
Extracts data from a database
SELECT
SQL COMMAND:
Updates data in a database
UPDATE
SQL COMMAND:
Deletes data from a database
DELETE
SQL COMMAND:
Inserts new data into a database.
INSERT INTO
SQL COMMAND:
Creates a new database.
CREATE DATABASE
SQL COMMAND:
Modifies a database.
ALTER DATABASE
SQL COMMAND:
Creates a new table.
CREATE TABLE
SQL COMMAND:
Modifies a table.
ALTER TABLE
SQL COMMAND:
Deletes a table.
DROP TABLE
SQL COMMAND:
Creates an index (search key).
CREATE INDEX