摘要:
一、多表联合查询 1、数据准备 部门表和员工表 create table dep( id int primary key auto_increment, name varchar(20) ); create table emp( id int primary key auto_increment, 阅读全文
摘要:
一、查询关键字 1、数据准备 > create table emp( -> id int primary key auto_increment, -> name varchar(20) not null, -> sex enum('male','female') not null default ' 阅读全文
摘要:
一、进程队列和线程队列 1、进程队列的使用 from multiprocessing import Queue python中内置的有一个Queue类,进程之间的数据是隔离的,所以,我们使用了队列来实现了进程之间的通信 from multiprocessing import Queue if __n 阅读全文