gpt4 book ai didi

android - 如何在某个位置添加列?

转载 作者:IT王子 更新时间:2023-10-29 00:32:06 26 4
gpt4 key购买 nike

我的代码:

mDb.execSQL("ALTER TABLE " + table_name + 
" ADD COLUMN " + column_name + " text");

列添加到最后一个位置:

<头>
第 1 列 第 2 列 第 3 列 第 4 列 第 5 列 NewAddedColumn6

是否可以在 Column3Column4 之间添加一列?

<头>
第 1 列 第 2 列 第 3 列 NewAddedColumn6 第 4 列 第 5 列

最佳答案

根据 SQLite > ALTER TABLE > ADD COLUMN文档:

The ADD COLUMN syntax is used to add a new column to an existingtable. The new column is always appended to the end of the list ofexisting columns.

因此,您的问题的答案是

但是,有一个解决方法。见 this answer .

关于android - 如何在某个位置添加列?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22751820/

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