This statement produces an error. ```sql INSERT INTO A (b) (SELECT 1) ``` The parentheses around the `SELECT` subquery are optional. The following works without an error: ```sql INSERT INTO A (b) SELECT 1 ```