随笔分类 -  数据库

摘要:1. linux在线安装mysql(上次安装失败了) 2.linux在线安装MySQL另外一篇 下载Repo wget -i -c http://dev.mysql.com/get/mysql57-community-release-el7-10.noarch.rpm 2.安装repo yum -y 阅读全文
posted @ 2021-01-30 21:07 风中灵叶 阅读(258) 评论(0) 推荐(0)
摘要:修改,操作表:1、建表:create table MyClass(id int(4) not null primary key auto_increment,name char(20) not null);2、获取表结构命令: desc 表名,或者show columns from 表名3、删除表命 阅读全文
posted @ 2017-07-19 16:11 风中灵叶 阅读(229) 评论(0) 推荐(0)
摘要:查jx_score表的平均值,以哪次考试(testid)和科目分组(courseid) select testid, courseid, round(avg(`jx_score`.`score`),2) AS `average` from `jx_score` group by `jx_score` 阅读全文
posted @ 2017-06-27 11:07 风中灵叶 阅读(4796) 评论(0) 推荐(0)