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.
以下のコードを使用してテーブルを作成しました:
create table tbl_questionnair(qid integer primary key autoincrement, title varchar, uid integer, superadminid integer,TIMESTAMP DEFAULT CURRENT_TIMESTAMP);
ここで、qid の自動インクリメントを削除したいと思います。誰でも私を助けることができますか?
sqlite はテーブルの変更をサポートしていないため、古いテーブルを削除してもう一度作成します
主キーとして qid を削除するだけです。
テーブルを作成します tbl_questionnair(qid integer, title varchar, uid integer, superadminid integer,TIMESTAMP DEFAULT CURRENT_TIMESTAMP);