首页 > 代码库 > MySQL学习1
MySQL学习1
刚刚从网上下载了MySQL 5.0,搜索图文教程安装成功。
1.如何在命令行启动MySQL
首先开始菜单->运行->cmd;
启动:net start mysql
关闭:net stop mysql
2.进入MySQL
mysql -h 主机名 -u 用户名 -p ,这里我们输入mysql -hlocalhost -uroot -p 就可以进入MySQL,默认没有密码。
3.标识符
MySQL的标识符在Windows下是不敏感的,但是在Unix\Linux系统下是敏感的。
4.MySQL的数据类型
详细介绍参见: 《MySQL数据类型》 : http://www.cnblogs.com/zbseoag/archive/2013/03/19/2970004.html
5.数据库基本操作
show database;注意末尾的分号
create database db; 注意别把create写成creat!!!(自己老犯这个低级错误)
use db
show tables;
create table student (id int unsigned not null auto_increment primary key,name char(8) not null,sex char(4) not null);
describe student;
insert into student values (null,"张三","男");
select * from student;
select * from student where id=2;
update student set sex="男" where id=2;
alter table student change sex age tinyint unsigned not null;
quit/exit 退出MySQL
用以上指令新建了一个名为db的数据库,在该数据库下新建了一个名为student的表,对表进行了一些操作,插入,查询,修改,增加列,更改列。最后退出数据库。