下面先来看看例子:
table
id name
1 a
2 b
3 c
4 c
5 b
库结构大概这样,这只是一个简单的例子,实际情况会复杂得多。
select *, count(distinct name) from table group by name
结果:
id name count(distinct name)
1 a 1
2 b 1
3 c 1
最后一 项是多余的,不用管就行了
tp2.0手册 搜索连贯操作 可看到相关的资料
SELECT cat_id, C
本文实例讲述了MySQL多表查询。分享给大家供大家参考,具体如下:
准备工作:准备两张表,部门表(department)、员工表(employee)
create table department(
id int,
name varchar(20)
);
create table employee(
id int primary key auto_increment,
name varchar(20),
sex enum('male','female') not null default 'm