We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
This statement produces an error.
INSERT INTO A (b) (SELECT 1)
The parentheses around the SELECT subquery are optional. The following works without an error:
SELECT
INSERT INTO A (b) SELECT 1