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

WBOY
Freigeben: 2016-06-13 13:23:32
Original
838 Leute haben es durchsucht

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 基础。建议楼主去翻翻手册吧.

Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage