摘要:
前期表准备 create table emp( id int not null unique auto_increment, name varchar(20) not null, sex enum('male','female') not null default 'male', #大部分是男的 a 阅读全文
摘要:
约束条件 default默认值 # 补充知识点 插入数据的时候可以指定字段 create table t1( id int, name char(16) ); insert into t1(name,id) values('jason',1); create table t2( id int, na 阅读全文
摘要:
开启线程的两种方式 # from multiprocessing import Process # from threading import Thread # import time # # # def task(name): # print('%s is running'%name) # tim 阅读全文