Reputation: 151
I'm doing the revision questions for my database course and I can't work out which question is false.
The keyword SET can be followed by multiple assignment expressions
If the join operation is used, an update statement can update multiple tables
The keyword update is followed by one and only one table name
The where clause can be omitted.
I'm thinking no 3 is the false one but I'm not sure why. I'm guessing where attributes are the same it can join multiple tables.
Upvotes: 0
Views: 74
Reputation: 34774
For SQL Server, I believe:
The keyword SET can be followed by multiple assignment expressions = True
If the join operation is used, an update statement can update multiple tables = False
The keyword update is followed by one and only one table name = True
The where clause can be omitted. = True
Upvotes: 1