What is a primary key?
A unique identifier for the records of the table
What are records in a table?
The rows
What are fields in a table?
Columns
What does SQL stand for?
Structured query language
What is the format of an SQL statement?
SELECT …
FROM ….
WHERE ….
ORDER BY ….
What is the format of an SQL statement when doing a count statement?
SELECT COUNT(….)
FROM ….
WHERE
What is the format of an SQL statement when doing a sum statement?
SELECT SUM(….)
FROM ….
WHERE ….
Which validation rules can you use on fields in a datatbase?
-Length check
-Format check
-Range check
-Presence check