赞
踩
MySQL中内置了很多字符串函数,常用的几个如下:
concat : 字符串拼接
select concat('hello' ,'mysql');
rpad : 左填充
select rpad('000',6,'1');
lpad : 右填充
select lpad('000',6,'1');
trim : 去除空格
去除字符串前后的空格
select trim(' Hello MySQL ');
substring : 截取子字符串
select substring('Hello MySQL',1,5);
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;
# 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;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。