摘要:
前期表准备 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, name char(16), gender enum('m 阅读全文
摘要:
开启线程的两种方式 # from multiprocessing import Process # from threading import Thread # import time # # # def task(name): # print('%s is running'%name) # tim 阅读全文