mysql> create table tb_2( -> id int, -> name varchar(10) not null -> ); 插入数据 insert into tb_2 value(1,'xiaobai'); 在非空时,NOT NULL 必须有值, 2,在已有的表中设置一个字段的非空约束 mysql> alter table tb_2 -> modify id int not null; 取消非空约束 mysql> alter table t…
单表查询: select * from select sname from stu; 条件查询 select sname from stu where sid=2; select sname from stu where sid>2; select sname from stu where sid!=2; 查询时取别名, select sid as 学号,sname as 姓名 from stu; 模糊查询, select * from stu where sname like '小%'; %…
对文件的操作, open('h:\\asa.txt') r 以只读方式打开 w 以写入方式打开,会覆盖已文件 X 如果已存在,会异常 a 如果文件存在,则在其末尾追加写入 b 以二进制方式打开 t 以文本方式打开 + 可读写方式,可添加其他方式 U 通用换行符支持 打开文件f= open('h:\\asa.txt') f.write( 字符串 ) 向文件里写内容 f.flush( ) 刷新缓存区,把内容写入文件, f.read() …