Chapter 5. Working with Databases, Page 92

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'.