Chapter 5. Working with Databases, Page 92
Fri, 07/03/2009 - 12:12pm — macman89
Location on the page:
Last line
Chapter:
5. Working with Databases
Error:
SELECT FROM role WHERE rid > 1 and rid != 7
Correction:
SELECT name FROM role WHERE rid > 1 and rid != 7
Description of the Error:
The example does not include the table name in the query. The database will execute the query on the table 'name'.
