1. create and update tables Flashcards
1
Q
creates a new table
A
CREATE TABLE
2
Q
adds a new row to a table
A
INSERT INTO
3
Q
queries data from a table
A
SELECT
4
Q
edits a row in a table
A
UPDATE
5
Q
changes an existing table
A
ALTER TABLE
6
Q
deletes rows from a table
A
DELETE FROM