A. 整型 B. 浮点型 C. 文本 D. 以上都支持
A. create table stu(no integer, name text, sex text, age integer) B. table stu(no integer, name text, sex text, age integer) C. create stu(no integer, name text, sex text, age integer) D. 以上都不对
A. insert stu (1,’张三’,’男’,18) B. insert into stu as (1,’张三’,’男’,18) C. insert into stu values(1,’张三’,’男’,18) D. 以上都不对
A. update stu age=age+2 where no=1 B. update stu age=age+2 no=1 C. update stu set age=age+2 where no=1 D. update stu set age=age+2 no=1
A. commit() B. cursor() C. rollback() D. fetchone()
A. execute() B. fetchone() C. close() D. commit()
A. 对 B. 错