SQL & XML Flashcards
What does SQL stand for?
Structured Query Language
What does “char” represent?
Character
What does “VarChar” represent?
Set Length Character
What does “blob” represent?
Sending Pictures
Who developed SQL?
ANSI
What does ANSI stand for?
American National Standard Institute
What type of databases can use SQL?
Oracle, Microsoft and SQL Databases
What command is used to extract data from a database?
SELECT
What command is used to update a database?
UPDATE
What command is used to delete from a database
DELETE
What command is used to insert new data into a database?
INSERT INTO
What command is used to create new databases?
CREATE DATABASE
What command is used to modify a table?
ALTER DATABASE
What command is used to create a new table?
CREATE TABLE
What command is used to delete a table?
DROP TABLE
What command is used to create an index?
CREATE INDEX
What command is used to delete an index?
DELETE INDEX
What does the “ * “ symbol signify?
ALL
True or False? It is required to put a semicolon after sql statements?
TRUE
True or False? SQL Keywords are case sensitive?
False