Why does denormalization improve select statement performance?
Because you don't need to do joins.
500
What goes after each part of the trigger statement?
CREATE TRIGGER
ON
AFTER
AS
CREATE TRIGGER (Table Name)
On (table or view)
AFTER (insert, delete, or update)
As (sql statement)
Notice the 3 parts (the name, the action, and the execution)
500
What symbol do we use to create a variable in a procedure?
What is an @
500
Which file organization is the fastest for multiple-key retrieval
What is Indexed (especially with multiple indexes)