摘要:
* 如何查询表 select where group by having distinct order by limit regexp like ... 前期表准备 create table emp( id int not null unique auto_increment, name varch 阅读全文
摘要:
* 约束条件 补充知识点 插入数据的时候可以指定字段create table t1( id int, name char(16));insert into t1(name,id) values('jason',1); default默认值 create table t2( id int, name 阅读全文
摘要:
1)等待数据准备 (Waiting for the data to be ready)2)将数据从内核拷贝到进程中(Copying the data from the kernel to the process)记住这两点很重要,因为这些IO模型的区别就是在两个阶段上各有不同的情况。 我们这里研究的 阅读全文