SQL - Manipulation Flashcards
1
Q
Common data in SQL?
A
Integer
- a whole number.Text
- a text string.Date
- a date.Real
- a decimal number.
2
Q
Relational database
A
A database that organizes information into one or more tables.
3
Q
What would be correct syntax for a CREATE TABLE statement?
A
CREATE TABLE meals (
name TEXT,
rating INTEGER
);
4
Q
A