3个回答
展开全部
-- 创建表时
create table test(
a integer,
b integer DEFAULT 1,
c integer
);
insert into test (a) values(12);
select * from test;
a b c
-------------------
12 1
-- 如果表已经创建 那么,由于SQLite不支持对列的改名和修改类型等操作,那么需要这样修改。
alter table test to test_temp;
-- 重新创建表,增加缺省值
create table test(
a integer,
b integer DEFAULT 1,
c integer DEFAULT 2
);
-- 将表中数据拿回来
inset into test (a, b, c)
select a, b, c from test_temp;
create table test(
a integer,
b integer DEFAULT 1,
c integer
);
insert into test (a) values(12);
select * from test;
a b c
-------------------
12 1
-- 如果表已经创建 那么,由于SQLite不支持对列的改名和修改类型等操作,那么需要这样修改。
alter table test to test_temp;
-- 重新创建表,增加缺省值
create table test(
a integer,
b integer DEFAULT 1,
c integer DEFAULT 2
);
-- 将表中数据拿回来
inset into test (a, b, c)
select a, b, c from test_temp;
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
update [表名] set=‘默认值’
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询