2013
11-20
11-20
mysql数据库常用的查询语句(多表查询) NEW
1 内连接查询select 字段1,字段2 from 表1,表2 where 表1.字段3=表2.字段3; //要有相同的字段3 查询的是具有相同的字段3值 (注:表1 inner join 表2 中间的inner on一般可以省略)例如: 原表countrymysql> select * from country;+----+----------+------------+------+----------+| id | name ...
Read More >