Mysql using 用法示例詳解

示例

在平時,我們做關聯表查詢的時候一般是這樣的

select * from 表1 inner join 表2 on 表1.相同的列=表2.相同的列;

然後可以改成這樣也是同樣的效果

select 表1的列 from 表1 inner join 表2 on 表1.相同的列=表2 .相同的列

然後還可以改成這樣

select * from 表1 inner join 表2 using(相同的列);

第一種

SELECT * FROM type,article where type.id=article.type_id;

 

第二種

SELECT * FROM type inner join article on type.id=article.type_id;

第三種

SELECT type.*,article.* FROM type inner join article USING(id);

CREATE TABLE `type` (
  `id` int(11) NOT NULL AUTO_INCREMENT COMMENT '類型編號',
  `type_name` varchar(255) DEFAULT '' COMMENT '文章類型名稱',
  `order_num` int(11) NOT NULL DEFAULT '0',
  `icon` varchar(255) DEFAULT '' COMMENT '自定義圖標',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='文章類型表';

INSERT INTO `demo`.`type` (`id`, `type_name`, `order_num`, `icon`) VALUES ('1', '前端教程', '1', 'iconclass-9');
INSERT INTO `demo`.`type` (`id`, `type_name`, `order_num`, `icon`) VALUES ('2', '前端工具', '2', 'icontoolset');
INSERT INTO `demo`.`type` (`id`, `type_name`, `order_num`, `icon`) VALUES ('3', '隨筆', '9', 'iconnote');
CREATE TABLE `article` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `type_id` int(11) DEFAULT '0' COMMENT '文章類型編號',
  `title` varchar(255) DEFAULT '' COMMENT '文章標題',
  `article_content` text COMMENT '文章主體內容',
  `introduce` text COMMENT '文章簡介',
  `add_time` int(11) DEFAULT NULL COMMENT '文章發佈時間',
  `view_count` int(11) DEFAULT '0' COMMENT '瀏覽次數',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COMMENT='文章內容表';

INSERT INTO `demo`.`article` (`id`, `type_id`, `title`, `article_content`, `introduce`, `add_time`, `view_count`) VALUES ('1', '1', 'Vue3.x 的生命周期和鉤子函數', '# 簡要描述\r\n\r\n- 用戶註冊接口\r\n\r\n 請求URL\r\n- ` http://xx.com/api/user/register `\r\n  \r\n 請求方式\r\n- POST \r\n\r\n 參數\r\n\r\n|參數名|必選|類型|說明|\r\n|:----    |:---|:----- |-----   |\r\n|username |是  |string |用戶名   |\r\n|password |是  |string | 密碼    |\r\n|name     |否  |string | 昵稱    |\r\n\r\n# 返回示例 \r\n\r\n```\r\n  {\r\n    \"error_code\": 0,\r\n    \"data\": {\r\n      \"uid\": \"1\",\r\n      \"username\": \"12154545\",\r\n      \"name\": \"吳系掛\",\r\n      \"groupid\": 2 ,\r\n      \"reg_time\": \"1436864169\",\r\n      \"last_login_time\": \"0\",\r\n    }\r\n  }\r\n```\r\n\r\n返回參數說明 \r\n\r\n|參數名|類型|說明|\r\n|:-----  |:-----|-----                           |\r\n|groupid |int   |用戶組id,1:超級管理員;2:普通用戶  |\r\n\r\n# 備註 \r\n\r\n- 更多返回錯誤代碼請看首頁的錯誤代碼描述', 'Vue3.x 生命周期', '1640069422', '2');
INSERT INTO `demo`.`article` (`id`, `type_id`, `title`, `article_content`, `introduce`, `add_time`, `view_count`) VALUES ('3', '3', 'Redis + NodeJS 實現一個能處理海量數據的異步任務隊列系統', '在最近的業務中,接到瞭一個需要處理約十萬條數據的需求。這些數據都以字符串的形式給到,並且處理它們的步驟是異步且耗時的(平均處理一條數據需要 25s 的時間)。如果以串行的方式實現,其耗時是相當長的:', '異步任務隊列系統', '1640069422', '15');

到此這篇關於Mysql using 用法的文章就介紹到這瞭,更多相關Mysql using 用法內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: