檢視預設的編碼格式:
show variables like "%char%
";
修改編碼格式:
set ... utf8
檢視資料庫編碼:
show create database emp;
檢視資料表編碼:
show create table student;
登入:
mysql -uroot -p
遠端登入:
mysql -h 10.19.3.62-uusername -ppassword;
修改密碼:
updateuser
set password=password('
newpwd
') where
user='
root
'and host=『localhost'
;
顯示資料庫:
show databases;
選擇資料庫:
use dbname;
顯示所有表:
show tables;
顯示employees表的列資訊:
describe employees;
修改表名:
altertable employees rename emp;
備份資料庫:
mysqldump -uroot -p dbname > backup_file
eg:mysqldump -uroot -p emp > d:\emp_backup_20120715.sql
恢復資料庫:
若沒有資料庫,要先建立乙個,然後再恢復
createdatabase
jspdev;
mysqldump
-uroot -p emp < d:\emp_backup_20120715.sql
建立表:
createtable student (id int
notnull auto_increment,name varchar(20) not
null,primary
key pk_positon(id));
清空表:
deletefrom student;
刪除表:
droptable student;
表增加一列:
altertable student add(address varchar(20) );
表修改列:
alter talbe student modify address varchar(20) notnull;
表刪除列:
altertable student drop
column address;
表去掉主鍵:
altertable student drop
primary
key;
向表中插入資料:
insertinto student(id,name) values('
3','
jack');
insert
into student (id,name) values('
4','
tom');
修改表內容:將tom改為tom
update student set name='tom
'where name=
'tom
';
mysql基本常用命令 MySQL常用命令(一)
cmd提示框中的mysql基礎命令 一 命令 連線mysql伺服器 mysql h localhost u root p 展示所有資料庫 show databases 選擇資料庫 use database 展示所選資料下所有表 show tables 設定資料庫編碼 set names gbk 用s...
mysql巡檢常用命令 mysql 常用命令
客戶端連線 進入命令列,windows cmd,連線 mysql u 使用者名稱 p密碼 h 伺服器ip位址 p 伺服器端mysql埠號 d 資料庫名 注意 1 伺服器端口標誌 p一定要大些以區別於使用者 p,如果直接連線資料庫標誌 d也要大寫 2 如果要直接輸入密碼 p後面不能留有空格如 pmyp...
mysql常用命令總結 mySql常用命令總結
總結一下自己常用的mysql資料庫的常用命令 mysql u root p 進入mysql bin目錄後執行,回車後輸入密碼連線。資料庫操作 1 create database dbname 建立資料庫,資料庫名為dbname 2 create database todo default chara...