首页 新闻 会员 周边
1
回答数

已解决问题 15 sqlite3语句

update k3 set name=(select newer from k3 where name is null) where name is null; 这句有问题,怎么修改?
4
回答数

已关闭问题 50 sqlite 创建条件判断触发器

有这样一个表: id type note number 1 A C 340 2 B A 30 3 C B 50 当插入第三条记录(C B 50)时,note字段(B)类型的最后一条记录的数据30更新为
0
回答数

已关闭问题 50 sqlite3 数据库触发器

有这样一个表 CREATE TABLE test(type text,num integer); INSERT INTO test VALUES('A',67); INSERT INTO test V
1
回答数

已解决问题 60 sqlite3命令行触发器

create table a(id int,name text,number int,total int); insert into a(id,name,total) values(1,"张三",34