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 用法内容请搜索www.887551.com以前的文章或继续浏览下面的相关文章希望大家以后多多支持www.887551.com!

(0)
上一篇 2022年3月21日
下一篇 2022年3月21日

相关推荐