示例(MySQL):
CREATE TABLE foo(a INT, b INT, c INT); INSERT INTO foo VALUES (1,2,3,4)
foo 表有三列,但在 INSERT INTO 语句中我们传递了四列。
foo