Home  >  Article  >  Backend Development  >  mysql语句哪位高手帮看看是什么意思啊

mysql语句哪位高手帮看看是什么意思啊

WBOY
WBOYOriginal
2016-06-13 13:23:32840browse

mysql语句谁帮看看是什么意思啊?
SELECT tid, MAX(a.ctime) AS a_time //max有什么用? a.ctime是什么意思?
FROM tc AS a //a代表当前查询的表吗?
LEFT JOIN tutor AS b ON a.tid = b.id //b代表tc表吗? 这句的整体意思是什么?
WHERE a.ctime >1340590489
AND time 0
GROUP BY tid
ORDER BY a_time DESC 
LIMIT 20

------解决方案--------------------
a 是表示 tc 那个表, b表示 tutor 表,max 这里表示 tc表中取出来的ctime中最大的
------解决方案--------------------
整个语句是左连接查询。
FROM tc AS a //a代表当前查询的表吗?
a 作为 tc 的别名 
//max有什么用? a.ctime是什么意思?
 max 是mysql 函数,求最大值 
 a.ctime 是 a(即 tc 表) ctime 字段
LEFT JOIN tutor AS b ON a.tid = b.id //b代表tc表吗? 这句的整体意思是什么?
b 作为 tutor 表的别名 on 后面 是连接条件

这都是mysql 基础。建议楼主去翻翻手册吧.

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn