Whats casting
Changing the data type of a variable
What is SQL
Used to search database tables for specific data.
Whats the overall purpose of SQL?
SCRUD:
to
Search,
Create,
Read,
Update,
Delete data.
What does the SQL statement SELECT do
For searching and reading
SELECT (field names) from (table name)
What does the SQL command WHERE do
For filtering so that only some records are returned
SELECT * FROM results WHERE name=”Bob”
Whats a procedure
Set of instructions stored under one name (a sub program)
Whats a function
A sub program like a procedure but it always returns a value