mysql学习(1)
1、启动mysql服务:net start mysql
关闭mysql服务:net stop mysql
2、登陆mysql:mysql -uroot -p (Enter,密码+Enter)
mysql -h 服务器IP地址(默认localhost) -P 端口号(默认3306) -u 用户名 -p 密码
3、显示数据库:show databases;
4、创建数据库:create database 数据库名称;
5、使用/切换数据库:use 数据库名称;
6、删除数据库:drop database 数据库名称;
7、数据类型:
整形:tinyint、smallint、mediumint、int、bigint
字符型:char(M)、varchar(M)
浮点型:float(M,N)、double(M,N)
(其他略)
8、表的约束:
主键:primary key
非空:not null
唯一:unique
自增长:auto_increment
外键:foreign key
9、显示数据库中所有的表:show tables;
10、创建表:
create table 表名(字段1 字段类型,字段2 字段类型,……);
如:create table student(
id int auto_increment primary key,
tname varchar(20),
age tinyint unsigned
);
11、查看表结构:describe 表名;或 desc 表名;
12、显示表详细详细:show create table 表名;
13、增加字段:alter table 表名 add 字段名 字段类型;
14、修改字段名及字段类型:alter table 表名 modify 旧字段名 新字段名 新字段类型;
15、只修改字段类型:alter table 表名 modify 旧字段名 旧字段名 新字段类型;
16、删除字段:alter table 表名 drop 字段名;