随笔分类 - mysql
摘要:班级表class 成绩表source 学生表student 1、查询班级一班的各科成绩最高的学生信息 使用左连接 left joinSELECT a.stuid, a.stuname, a.course, a.source, a.classname FROM ( SELECT student.stu
阅读全文
摘要:mysql 驱动下载 https://dev.mysql.com/downloads/connector/j/ 1、先安装mysql的驱动mysql-connector-java-5.1.7-bin.jar 配置jdbc的connection configuration Database Url :
阅读全文
摘要:1、下载地址 https://www.mysql.com/downloads/ 选择community server 点击DOWLOAD 选择版本,当前选择的5.6版本 点击下载mysql-5.6.38-linux-glibc2.12-i686.tar.gz 选择no thanks 2、安装mysq
阅读全文
摘要:GRANT ALL PRIVILEGES ON *.* TO 'root'@'%' IDENTIFIED BY '123456' WITH GRANT OPTION; flush privileges; %代表所有的ip
阅读全文