摘要:
一、单列唯一 方式一: create table department( id int unique, name char(10) unique ); 方式二: create table department( id int, name char(10), unique(id), unique(na 阅读全文
摘要:
#方式一: from multiprocessing import Process # 开启子进程 import time def task(name): print("%s is running" % name) time.sleep(3) print("%s is done" % name) i 阅读全文