gpt4 book ai didi

sql - 插入记录时sqlite表列的默认值

转载 作者:行者123 更新时间:2023-12-02 01:30:45 25 4
gpt4 key购买 nike

我有一个包含 25 列的 SQLite 表,前 10 列在 function_1 中更新,其余列在 function_2 列中更新。

但是在更新时我收到以下错误:

Error: table AirMode has 25 columns but 10 values were supplied.

这清楚地表明要么应该有一种方法来告诉其余 15 列应该使用默认值传递。

如何在不使用默认值的同一查询中添加额外的 15 列?

最佳答案

仅在插入语句中提供要填充的列

insert into your_table (col1, col2, ..., col10)
values ('1', '2', ..., '10')

关于sql - 插入记录时sqlite表列的默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13395735/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com