明輝手游網(wǎng)中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

對于mysql max 與 where 間的執(zhí)行問題小結(jié)

[摘要]為了幫助大家更好的學習mysql,這篇文章主要介紹了mysql max 與 where 間的執(zhí)行問題小結(jié),需要的朋友可以參考下,希望對大家有所幫助。mysql max 與 where 間的執(zhí)行問題執(zhí)...
為了幫助大家更好的學習mysql,這篇文章主要介紹了mysql max 與 where 間的執(zhí)行問題小結(jié),需要的朋友可以參考下,希望對大家有所幫助。

mysql max 與 where 間的執(zhí)行問題

執(zhí)行sql:

CREATE TABLE `grades` (
 `id` int(20) NOT NULL AUTO_INCREMENT,
 `student_id` int(20) NOT NULL,
 `subject` varchar(20) COLLATE utf8_bin DEFAULT NULL,
 `grades` varchar(20) COLLATE utf8_bin DEFAULT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
insert into `grades`(`id`,`student_id`,`subject`,`grades`) values (1,1,'語文','80'),(2,1,'數(shù)學','89'),(3,2,'語文','90');
CREATE TABLE `student` (
 `id` int(20) NOT NULL AUTO_INCREMENT,
 `name` varchar(20) COLLATE utf8_bin DEFAULT NULL,
 PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=4 DEFAULT CHARSET=utf8 COLLATE=utf8_bin;
insert into `student`(`id`,`name`) values (1,'xiaoming'),(2,'xiaohong'),(3,'xiaobai');

執(zhí)行結(jié)果:

關(guān)于mysql max 與 where 間的執(zhí)行問題小結(jié)

執(zhí)行結(jié)果1:

關(guān)于mysql max 與 where 間的執(zhí)行問題小結(jié)

執(zhí)行結(jié)果2:

關(guān)于mysql max 與 where 間的執(zhí)行問題小結(jié)

執(zhí)行結(jié)果3:

關(guān)于mysql max 與 where 間的執(zhí)行問題小結(jié)

執(zhí)行結(jié)果4:

關(guān)于mysql max 與 where 間的執(zhí)行問題小結(jié)

執(zhí)行結(jié)果5:

關(guān)于mysql max 與 where 間的執(zhí)行問題小結(jié)

由此可見:

1.max是在where條件之前執(zhí)行的,

2.而group by 又是在max之前執(zhí)行的

3.當where 與 group by 同時出現(xiàn) 優(yōu)先執(zhí)行where條件

總結(jié)

以上所述是小編給大家介紹的mysql max 與 where 間的執(zhí)行問題小結(jié),希望對大家有所幫助。

相關(guān)推薦:

MySQL Where 條件

MYSQL WHERE語句優(yōu)化

出現(xiàn)mysql max-connections問題解決

以上就是關(guān)于mysql max 與 where 間的執(zhí)行問題小結(jié)的詳細內(nèi)容,更多請關(guān)注php中文網(wǎng)其它相關(guān)文章!


學習教程快速掌握從入門到精通的SQL知識。