Database Redesign
What SQL command can be used to add columns to a table?

MODIFY TABLE TableName ADD ColumnName
ALTER TABLE TableName ADD COLUMN ColumnName
ALTER TABLE TableName ADD ColumnName
MODIFY TABLE TableName ADD COLUMN ColumnName

ANSWER DOWNLOAD EXAMIANS APP

Database Redesign
Which is not true of a correlated subquery?

The processing of the SELECT statements is nested.
EXISTS/NOT EXISTS is a form of a correlated subquery.
They are very similar to a regular subquery.
They can be used to verify functional dependencies.

ANSWER DOWNLOAD EXAMIANS APP