3.mysql的中文问题,database级操作,表级操作,数据CRUD,分组操作,时间和日期,字符串相关函数,表的约束



1
连接MYSQL服务器:mysql–uroot –p123456

  1. 查看中文问题

show variables like ‘character%‘;

2
修改mysql的字符集,退出mysql提示符界面:

mysql -uroot -p--default_character_set=gbk;


数据库的操作:创建,查看,修改,删除

*创建:

创建一个名称为mydb1的数据库。

createdatabase mydb1;

创建一个使用utf-8字符集的mydb2数据库。

create database mydb2character set utf8;

创建一个使用utf-8字符集,并带校对规则的mydb3数据库。

createdatabase mydb3 character set utf8 collate utf8_general_ci;

*查看:

显示所有数据库

showdatabases;

显示创建数据库的语句信息

showcreate database mydb2;

*修改:

修改mydb1的字符集为gbk(不能修改数据库名)

alterdatabase mydb1 character set utf8;

*删除:

删除数据库mydb2

dropdatabase mydb1;

4
表的操作:创建,查看,修改,删除

usemydb2;

*创建:

根据实体类Person创建表person

Person{

intid;

Stringname;

}

createtable person(

idint,

namevarchar(20)

);

mysql中的数据类型:

bit1位 但可以指定位数,如:bit<3>

int2字节
可以指定最大位数,如:int<4> 最大为4位的整数

float2个字节 可以指定最大的位数和最大的小数位数,如:float<5,2>
最大为一个5位的数,小数位最多2位

double 4个字节 可以指定最大的位数和最大的小数位数,如:float<6,4>
最大为一个6位的数,小数位最多4位

char 必须指定字符数,如char(5)
为不可变字符 即使存储的内容为‘ab‘,也是用5个字符的空间存储这个数据

varchar 必须指定字符数,如varchar(5)
为可变字符 如果存储的内容为‘ab‘,占用2个字符的空间;如果为‘abc‘,则占用3个字符的空间

text:大文本(大字符串)

blob:二进制大数据 如图片,音频文件,视频文件

date:日期 如:‘1921-01-02‘

datetime:日期时间 如:‘1921-01-02 12:23:43‘

timeStamp:时间戳,自动赋值为当前日期时间

创建一个员工表

createtable employee(id int,name varchar(20),sex bit,birthday date,salarydouble,entry_date date,resume text);

*查看:

查看所有的表:

showtables;

查看指定表的创建语句

showcreate table employee;

mysql表
名称区分大小写

显示指定表的结构:

descemployee;

*删除:

删除employee表

droptable employee;

*修改表:

create table worker(id int,name varchar(20),sex bit,birthday date,salarydouble,entry_date date,resume text);

增加一个字段:altertable worker add column height double;

修改一个字段:altertable worker modify column height float;

删除一个字段:altertable worker drop column height;

更改表名:renametable employee to worker;

修改表的字符集:altertable worker character set gbk;

5
表数据的CRUD

*C(create增加数据) Insert语句

新建Employee表并表中添加一些记录

createtable employee(

idint,

namevarchar(20),

sexbit,

birthdaydate,

salarydouble,

entry_datedate,

resumetext

);

insertinto employee(id,name,sex,birthday,salary,entry_date,resume) values(1,‘张三‘,1,‘1983-09-21‘,15000,‘2012-06-24‘,‘一个大牛‘);

insertinto employee(id,name,sex,birthday,salary,entry_date,resume) values(2,‘李四‘,1,‘1984-09-21‘,10000,‘2012-07-24‘,‘一个中牛‘);

insertinto employee(id,name,sex,birthday,salary,entry_date,resume) values(3,‘王五‘,0,‘1985-09-21‘,7000,‘2012-08-24‘,‘一个小牛‘);

deletefrom employee where id=1

createtable employee(   id int,namevarchar(20),sex bit,birthday date,salary double,entry_date date,resume text);

*U(update更新数据) Update语句

将所有员工薪水都增加500元。

updateemployee set salary=salary+500;

将王五的员工薪水修改为10000元,resume改为也是一个中牛

updateemployee set salary=10000,resume=‘也是一个中牛‘ where name=‘王五‘;

*D(drop删除数据) Delete语句

删除表中姓名为王五的记录。

deletefrom employee where name=‘王五‘;

删除表中所有记录。

deletefrom employee; --可以有条件,但删除所有记录差了一点

使用truncate删除表中记录。

truncateemployee;--无条件效率高

6  *R(Retrieve查找数据) Select语句

准备环境:

createtable student(

idint,

namevarchar(20),

chineseint,

englishint,

mathint

);

insertinto student(id,name,chinese,english,math) values(1,‘何东‘,80,85,90);

insertinto student(id,name,chinese,english,math) values(2,‘权筝‘,90,95,95);

insertinto student(id,name,chinese,english,math) values(3,‘何南‘,80,96,96);

insertinto student(id,name,chinese,english,math) values(4,‘叶坦‘,81,97,85);

insertinto student(id,name,chinese,english,math) values(5,‘何西‘,85,84,90);

insertinto student(id,name,chinese,english,math) values(6,‘丁香‘,92,85,87);

insertinto student(id,name,chinese,english,math) values(7,‘何北‘,75,81,80);

insertinto student(id,name,chinese,english,math) values(8,‘唐娇‘,77,80,79);

insertinto student(id,name,chinese,english,math) values(9,‘任知了‘,95,85,85);

insertinto student(id,name,chinese,english,math) values(10,‘王越‘,94,85,84);

查询表中所有学生的信息。

select* from student;

查询表中所有学生的姓名和对应的英语成绩。

selectname,english from student;

过滤表中重复数据。

selectenglish from student;

selectDISTINCT english from student;

selectDISTINCT english,name from student;

selectenglish+chinese+math from student;

selectenglish+chinese+math as 总分 from student;

selectname,english+chinese+math as
总分 from student;

在所有学生英语分数上加10分特长分。

selectname,english+10 from student;

统计每个学生的总分。

selectenglish+chinese+math from student;

使用别名表示学生分数

selectname,english+chinese+math as 总分 from student;

selectname,english+chinese+math 总分 from student;

查询姓名为何东的学生成绩

select* from student where name=‘何东‘;

查询英语成绩大于90分的同学

select* from student where english>90;

查询总分大于250分的所有同学

select* from student where english+chinese+math>250;

查询英语分数在 85-95之间的同学。

select* from student where english>=85 and english<=95;

select* from student where english between 85 and 95;

查询数学分数为84,90,91的同学。

select* from student where math=84 or math=90 or math=91;

select* from student where math in(84,90,91);

查询所有姓何的学生成绩。

select* from student where name like ‘何%‘;

查询数学分>85,语文分>90的同学。

select* from student where math>85 and chinese>90;

对数学成绩排序后输出。

select* from student order by math;

对总分排序后输出,然后再按从高到低的顺序输出

select* from student order by math+chinese+english desc;

对姓何的学生成绩排序输出

select* from student where name like ‘何%‘ order by math+chinese+english desc;

selectname, math+chinese+english from student where name like ‘何%‘ order bymath+chinese+english desc;

统计一个班级共有多少学生?

selectcount(*) from student;

统计数学成绩大于90的学生有多少个?

selectcount(*) from student where math>90;

统计总分大于250的人数有多少?

selectcount(*) from student where math+chinese+english>250;

统计一个班级数学总成绩?

selectsum(math) from student;

统计一个班级语文、英语、数学各科的总成绩

selectsum(math), sum(chinese), sum(english) from student;

统计一个班级语文、英语、数学的成绩总和

selectsum(math+chinese+english)from student;

selectsum(math)+sum(chinese)+sum(english) from student;

求一个班级数学平均分?

selectavg(math) from student;

求一个班级总分平均分

selectavg(math+chinese+english)from student;

selectavg(math)+avg(chinese)+avg(english) from student;

求班级最高分和最低分

selectmax(math+chinese+english),min(math+chinese+english) from student;

7
综合性练习:为学生表,增加一个班级列,然后训练分组查询

查出各个班的总分,最高分

准备环境

给表添加一个字段:altertable student add column class_id int;

更新表:

updatestudent set class_id=1 where id<=5;

updatestudent set class_id=2 where id>5;

selectsum(math+chinese+english),max(math+chinese+english) from student group byclass_id;

查询出班级总分大于1300分的班级ID

selectclass_id from student group by class_id havingsum(math+chinese+english)>1300;

selectclass_id from student where sum(math+chinese+english)>1300 group by class_id;

note:where和group区别:
在wehre子句中不能使用分组函数


时间和日期

mysql>select year (now()), month(now()), day(now()) , date(now());

+--------------+--------------+------------+-------------+

|year (now()) | month(now()) | day(now()) | date(now()) |

+--------------+--------------+------------+-------------+

|         2014 |           
9 |          7 | 2014-09-07  |

+--------------+--------------+------------+-------------+

selectdate_add(now(), INTERVAL 2 year) from dual;//增加两年

selectcharset(‘name‘)  employee;

selectdate_add(now(), INTERVAL -1 day) 昨天, now()
今天, date_add(now(), INTERVAL +1 day)
明天;

9
字符串相关函数

selectconcat( charset(‘name‘), ‘aaaa‘) 自定义 from dual;

10
表的约束  

*定义主键约束 primarykey:不允许为空,不允许重复

*定义主键自动增长 auto_increment

*定义唯一约束 unique

*定义非空约束 notnull

*定义外键约束 constraintordersid_FK foreign key(ordersid) references orders(id)

*删除主键:altertable tablename drop primary key ;

createtable myclass

(

idINT(11) primary key auto_increment,

namevarchar(20) unique

);

createtable student(

idINT(11) primary key auto_increment,

namevarchar(20) unique,

passwdvarchar(15) not null,

classidINT(11),  #注意这个地方不要少逗号

constraintstu_classid_FK  foreign key(classid)references myclass(id)

);

时间: 2024-10-10 21:50:47

3.mysql的中文问题,database级操作,表级操作,数据CRUD,分组操作,时间和日期,字符串相关函数,表的约束的相关文章

操作-oracle (游标-数据的缓冲区、视图-数据库中虚拟的表、存储过程-提高程序执行效率、触发性-保证数据的正确性、事务和锁-确保数据安全、控制文件和日志文件)

原文地址:https://www.cnblogs.com/smallpigger/p/8320875.html

MYSQL 配置文件中文详解

my.ini(Linux系统下是my.cnf),当mysql服务器启动时它会读取这个文件,设置相关的运行环境参数. my.ini分为两块:Client Section和Server Section.   Client Section用来配置MySQL客户端参数.   要查看配置参数可以用下面的命令: show variables like '%innodb%'; # 查看innodb相关配置参数 show status like '%innodb%'; # 查看innodb相关的运行时参数(比如

屌炸天实战 MySQL 系列教程(二) 史上最屌、你不知道的数据库操作

此篇写MySQL中最基础,也是最重要的操作! 第一篇:屌炸天实战 MySQL 系列教程(一) 生产标准线上环境安装配置案例及棘手问题解决 第二篇:屌炸天实战 MySQL 系列教程(二) 史上最屌.你不知道的数据库操作 本章内容: 查看\创建\使用\删除 数据库 用户管理及授权实战 局域网远程连接法 查看\创建\使用\删除\清空\修改 数据库表(是否可空,默认值,主键,自增,外键) 表内容的增删改查 where条件.通配符_%.限制limit.排序desc\asc.连表join.组合union 查

关于MySQL的中文问题(转载)

MySQL中涉及的几个字符集 character-set-server/default-character-set:服务器字符集,默认情况下所采用的.character-set-database:数据库字符集.character-set-table:数据库表字符集.优先级依次增加.所以一般情况下只需要设置character-set-server,而在创建数据库和表时不特别指定字符集,这样统一采用character-set-server字符集.character-set-client:客户端的字符

mysql数据库 中文乱码

看到一篇很好的文章,转录于此 中文乱码似乎是程序编写中永恒的一个话题和难点,就比如MySQL存取中文乱码,但我想做任何事情,都要有个思路才行,有了思路才知道如何去解决问题,否则,即使一时解决了问题,但过后不久又碰到同样的问题可能又会急得抓狂,MySQL中文乱码问题就是如此. 仅仅对MySQL中文乱码的解决而言,我认为主要的一个原则可以归结为五个字:"编码一致性",只要遵循了这个原则,那么中文乱码就不难解决,那么何为"编码一致性"呢?子猴总结为有如下四个方面的编码必须

Linux下PHP+MySQL+CoreSeek中文检索引擎配置

说明: 操作系统:CentOS 5.X 服务器IP地址:192.168.21.127 Web环境:Nginx+PHP+MySQL 站点根目录:/usr/local/nginx/html 目的:安装coreseek中文检索引擎,配置MySQL数据库访问接口,使用PHP程序实现中文检索. CoreSeek官方网站: http://www.coreseek.cn/ http://www.coreseek.cn/products/=%22/products-install/step_by_step/ h

mysql保存中文乱码的原因和解决办法

当你遇到这个mysql保存中文乱码问题的时候,期待找到mysql保存中文乱码的原因和解决办法这样一篇能解决问题的文章是多么激动人心. 也许30%的程序员会选择自己百度,结果发现网友已经贴了很多类似mysql 中文乱码.php mysql 中文乱码.mysql5.5中文乱码.mysql 乱码.mysql乱码问题.mysql jsp 乱码.mysql jdbc 乱码.mysql 查询乱码.mysql 导入数据乱码等一系列问题,到底哪个是自己要找的能解决自己问题的呀?15%的程序员一看就懵了,剩下15

Windows使用MySQL数据库中文乱码问题

声明:本文关于MySQL中文乱码问题的解决方案均基于Windows 10操作系统,如果是Linux系统会有较多不适用之处,请谨慎参考. 一.MySQL中文乱码情况 1. sqlDevelpor MySQL客户端中文乱码 sqlDevelopor操作MySQL中文乱码 2. command-line MySQL客户端中文乱码 控制台操作MySQL中文乱码 二.MySQL中文乱码产生原因 Windwos中文系统默认的字符编码集是gbk(扩展国标码,包括简体中文.繁体中文.朝鲜语.日本语等东亚语言),

Mysql DBA 高级运维学习笔记-Mysql插入中文乱码问题

1.1 mysql插入中文数据乱码 1.1.1MySQL中添加中文数据并查看检表语句 a.创建cuizhong测试数据库并查看建表语句 mysql> create database cuizhong; Query OK, 1 row affected (0.00 sec) mysql> show create database cuizhong\G *************************** 1. row *************************** Database: