The following query:
INSERT INTO term_node( nid, vid, tid )
VALUES (
(
SELECT ctb.nid, ctb.vid, 35
FROM content_type_bout AS ctb
WHERE field_school_value_c = 'Lafayette'
)
)
Is producing this error:
#1136 - Column count doesn't match value count at row 1
term_node
has only three columns in it. What am I doing wrong?