当前位置:   article > 正文

mysql内置函数_mysql中的内置函数

mysql中的内置函数

mysql常用函数

字符串函数

MySQL中内置了很多字符串函数,常用的几个如下:
在这里插入图片描述
concat : 字符串拼接

select concat('hello' ,'mysql');
  • 1

在这里插入图片描述
rpad : 左填充

select rpad('000',6,'1');
  • 1

在这里插入图片描述
lpad : 右填充

select lpad('000',6,'1');
  • 1

在这里插入图片描述
trim : 去除空格
去除字符串前后的空格

select trim(' Hello MySQL ');
  • 1

在这里插入图片描述
substring : 截取子字符串

select substring('Hello MySQL',1,5);
  • 1

在这里插入图片描述

数值函数

在这里插入图片描述

日期函数

在这里插入图片描述

流程函数

在这里插入图片描述
leetcode数据库查询语句
1148. 文章浏览 I
±--------------±--------+
| Column Name | Type |
±--------------±--------+
| article_id | int |
| author_id | int |
| viewer_id | int |
| view_date | date |
±--------------±--------+
此表无主键,因此可能会存在重复行。
此表的每一行都表示某人在某天浏览了某位作者的某篇文章。
请注意,同一人的 author_id 和 viewer_id 是相同的。
请编写一条 SQL 查询以找出所有浏览过自己文章的作者,结果按照 id 升序排列。

# Write your MySQL query statement below

select distinct author_id as id 
from Views
where author_id =viewer_id 
order by author_id asc;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6

在这里插入图片描述
1407. 排名靠前的旅行者

# Write your MySQL query statement below

select u.name as name,ifnull(sum(r.distance),0) as travelled_distance
from Users u left join Rides r
on u.id=r.user_id
group by u.id
order by travelled_distance desc,u.name asc;
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7

在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/菜鸟追梦旅行/article/detail/612441
推荐阅读
相关标签
  

闽ICP备14008679号