Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 java 的 ms 访问表中插入一条记录。我的问题是我必须插入的字段数量少于可用字段的总数。换句话说,我的表中有 10 列,我只想为 8 列提供值。它不能通过简单的 INSERT 语句工作。所以,我不知道该怎么做。请帮我。
SQL允许您指定要提供数据的列:
SQL
INSERT INTO MyTable (Column1, Column2, Column3) VALUES ('Some', 'Value', 101);
未提及的列可以采用默认值,也可以允许采用NULL值。
NULL