主頁 > 知識庫 > Mysql inner join on的用法實(shí)例(必看)

Mysql inner join on的用法實(shí)例(必看)

熱門標(biāo)簽:南宋地圖標(biāo)注黃河華山 長安區(qū)違法建房地圖標(biāo)注 電銷機(jī)器人公眾號推送 手機(jī)用地圖標(biāo)注工具 地圖標(biāo)注培訓(xùn) 電銷機(jī)器人說明書 昆明智能外呼系統(tǒng)中心 安國在哪里辦理400電話 智能電銷機(jī)器人靠譜么

語法規(guī)則

SELECT column_name(s)
FROM table_name1
INNER JOIN table_name2 
ON table_name1.column_name=table_name2.column_name

先創(chuàng)建兩個表,1.用戶,2.用戶類別

用戶表

CREATE TABLE `user` (
 `id` int(32) NOT NULL AUTO_INCREMENT,
 `name` varchar(16) NOT NULL,
 `kindid` int(32) NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

用戶類別表

CREATE TABLE `userkind` (
 `id` int(32) NOT NULL AUTO_INCREMENT,
 `kindname` varchar(16) NOT NULL,
 PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;

插入一些數(shù)據(jù)到user表

INSERT INTO `user` VALUES (1,'小明',1),(2,'小紅',1),(3,'涵涵',2);插入一些數(shù)據(jù)到 userkind表

INSERT INTO `userkind` VALUES (1,'普通會員'),(2,'VIP會員');

如圖:

下面是控制臺的查詢例子:

Enter password: ****
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.5.40 MySQL Community Server (GPL)

Copyright (c) 2000, 2014, Oracle and/or its affiliates. All rights reserved.

Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql> use join;
Database changed
mysql> select * from `user`;
+----+------+--------+
| id | name | kindid |
+----+------+--------+
| 1 | 小明 |   1 |
| 2 | 小紅 |   1 |
| 3 | 涵涵 |   2 |
+----+------+--------+
3 rows in set (0.00 sec)

mysql> select * from `userkind`;
+----+----------+
| id | kindname |
+----+----------+
| 1 | 普通會員 |
| 2 | VIP會員 |
+----+----------+
2 rows in set (0.00 sec)

mysql> select * from `user` inner join `userkind` on user.kindid=userkind.id;
+----+------+--------+----+----------+
| id | name | kindid | id | kindname |
+----+------+--------+----+----------+
| 1 | 小明 |   1 | 1 | 普通會員 |
| 2 | 小紅 |   1 | 1 | 普通會員 |
| 3 | 涵涵 |   2 | 2 | VIP會員 |
+----+------+--------+----+----------+
3 rows in set (0.02 sec)

mysql> select `id` as `用戶ID`,`name` as `用戶名`,`kindname` as `用戶類別` from
`user` inner join `userkind` where user.kindid=userkind.id;
ERROR 1052 (23000): Column 'id' in field list is ambiguous
mysql> select `user`.`id` as `用戶ID`,`name` as `用戶名`,`kindname` as `用戶類別
` from
  -> `user` inner join `userkind` where `user`.`kindid`=`userkind`.`id`;
+--------+--------+----------+
| 用戶ID | 用戶名 | 用戶類別 |
+--------+--------+----------+
|   1 | 小明  | 普通會員 |
|   2 | 小紅  | 普通會員 |
|   3 | 涵涵  | VIP會員 |
+--------+--------+----------+
3 rows in set (0.00 sec)

mysql> select `user`.`id` as `用戶ID`,`name` as `用戶名`,`kindname` as `用戶類別
` from `user` inner join `userkind` on `user`.`kindid`=`userkind`.`id`;
+--------+--------+----------+
| 用戶ID | 用戶名 | 用戶類別 |
+--------+--------+----------+
|   1 | 小明  | 普通會員 |
|   2 | 小紅  | 普通會員 |
|   3 | 涵涵  | VIP會員 |
+--------+--------+----------+
3 rows in set (0.00 sec)

mysql>

需要注意的是: 這里的on 基本等價于where(本人感覺)

當(dāng) column (字段) 兩個表都有 卻分不清時,需要用`表名`.`字段名` 進(jìn)行分辨。

as就是取別名了。看上面例子就知道!

以上這篇Mysql inner join on的用法實(shí)例(必看)就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • Mysql連接join查詢原理知識點(diǎn)
  • MySQL的join buffer原理
  • 超詳細(xì)mysql left join,right join,inner join用法分析
  • MySQL JOIN之完全用法
  • MySQL優(yōu)化之使用連接(join)代替子查詢
  • mysql多個left join連接查詢用法分析
  • MYSQL數(shù)據(jù)庫基礎(chǔ)之Join操作原理

標(biāo)簽:江門 合肥 吉安 長沙 東莞 武漢 潛江 南昌

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Mysql inner join on的用法實(shí)例(必看)》,本文關(guān)鍵詞  Mysql,inner,join,的,用法,實(shí)例,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Mysql inner join on的用法實(shí)例(必看)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Mysql inner join on的用法實(shí)例(必看)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章