终端命令行

2017-03-17  本文已影响0人  博行天下

终端命令行

登录MYSQL -- >mysql -uroot -p -->密码 
quit、exit 退出数据库
CLS的清除屏幕命令行
mysql -hlocalhost  -uroot - p123456 访问本机mysql服务器,登录名和密码
create database liubo;创建数据库
drop database liubo;删除数据库
use liubo;选中数据库
show databases;查询数据库
show tables;查看数据库里面的表格
create table liubo(id int,name char(30),age int)  30是给name分配的最大空间(分配的多少个字节,最大是255个字节) default charset=utf8,engine=innodb
show create table liubo;查看创建的表
desc liubo;查看表里有哪些字段以及字段类型
alter table liubo modify name char(50)修改字段
alter table liubo add weight int;增加字段
alter table liubo drop weight;删除字段
alter table liubo change name waihao char(30);修改字段名字
alter table liubo add weight int first;排在第一位
alter table liubo add weight int after age;weight排在age 后面
alter table liubo rename lb;修改表名字
create table liubo(id int,name varchar(30),age int,nowtime timestamp default current_timestamp),default charset=utf8,engine=innodb;创建表格,并显示时间
insert into liubo(id,name,age) values(2,'liubo',19);插入数据
select *from liubo;查询字段对应的数据
enum (‘男’,‘女’)单选
insert into liubo(sex) values(1) 或者values(男)插入单条数据
set('美女',‘帅哥’,‘啦啦’)
insert into liubo(love) values(1|2|4|8) 或者 values(15);插入多条数据
\c清除本条指令

导出数据库

1.首先要退出mysql数据库
mysqldump -uroot -p liubo>c:/liubo.sql后面不需要加分号
2.导入数据库:退出数据库,首先创建一个空的数据库。创建一个空的数据库后退出quit在导入文件.
mysql -uroot -p bb<c:/liubo.sql后面不需要加分号

UNSIGNED

无符号类型 只能修饰正数,整型或者是浮点型。就是把前面的负号去掉。
zerofill(0填充)
alter table liubo add height int(5) zerofill;前面不够5位时候0填充。
insert into bb(height) values(123);  --->会显示00123

自动增长auto_increment

create table liubo(id int auto_increment primary key,name varchar(30));
insert into liubo(name) values('xiaoming')  -->id=1,name = xiaoming

default默认值

alter table liubo add age int default 100;
insert into liubo(name) values('sdffs'); 其他默认都是age = 100

not null 不能为空

alter table liubo add shouji int not null;
insert into liubo(name,shouji) values('xiaoming',11);必须得插入手机,因为shouji不能为空

show engines;查看搜索引擎
show create table liubo;查看创建表的语句;
///在mysql数据库里面设置字符集

设置默认的数据库字符集

character_set_server=utf8
引擎
default-storage-engine=INNODB;
create table liubo(id int auto_increment primary key,name varchar(30),age int) engine=innodb,default charset=utf8;主键、自动增长

wampServer中修改mysql默认空密码(root密码)
root password 修改路径:
C:\wamp\apps\phpmyadmin3.4.10.1\config.inc.php
重新启动mysql,不行的话重新启动电脑就可以了。
上一篇下一篇

猜你喜欢

热点阅读