日期:2014-05-16 浏览次数:21148 次
一、连接MySql
语法: mysql -h 主机地址 -u 用户名 -p 用户密码
例1:连接到本机上的MYSQL。键入命令mysql -u root -p(本地连接 主机地址可以不写),回车后提示你输入密码,输入正确之后,MYSQL的提示符是:
mysql>
?
例2:连接到远程主机上的MYSQL。假设远程主机的IP为:172.30.0.234,用户名为root,密码为abcd123。则键入以下命令:
mysql -h 172.30.0.234 -u root -p abcd123
?
(注:u与root可以不用加空格,其它也一样)
3、退出MYSQL命令: exit (回车)
二、创建新用户、远程登录、修改密码
? 修改用户密码: ?
创建一个新用户:
grant all on *.* to 'dbuser'@'localhost' identified by? '9defbcg';
flush privileges;
开放远程登陆
grant all on *.* to 'dbuser'@'%' identified by? '9defbcg';
flush privileges;
Use mysql;
Update user set password=password(‘123456’) where user=‘dbuser’ ;
Flush privileges ;
?
三、常用命令
1、显示所有数据库:
show databases;
?
2、显示库中的所有表:
show tables;
?
3、显示数据表的结构:
describe 表名;
4、建库:
create database 库名;
5、建表:
use 库名;
create table 表名 (字段设定列表);
6、删库和删表:
drop database 库名;
drop table 表名;
?
7、将表中记录清空:
delete from 表名;
?
8、显示表中的记录:
select * from 表名;
?
9、添加一列
?alter table 表名 add column 列名 数据类型 [是否允许为空] [约束];
?
例子:
ALTER TABLE `mip_sysuser` ADD COLUMN `mscVersion` Integer(10) default 0;
?
10、修改列名
?alter table 表名 change 原列名 新列名 数据类型 [是否允许为空] [约束];
例子:
alter table mip_branch change? orders? orders_? int? not null;
?
11、修改列的数据类型
alter table 表名 modify column 列名 数据类型??? [是否允许为空] [约束];
或
?alter table 表名 change 原列名 新列名 数据类型 [是否允许为空] [约束];
?
例子:
ALTER TABLE `mip_userofapp` modify COLUMN `apppassword` varchar(100) default NULL;
?
ALTER TABLE `ema_license_log` CHANGE logintime logintime datetime;
?
12、删除列
?
alter table 表名 drop? column 列名
?
例子 :
alter table test drop? column name;
?
13、重命名表名
alter table 表名 rename 新表名;?
例子:
alter table test rename test1;
?
14、查询当前时间:
select now();
15、查询当前用户
select user();
<