1.
檢視埠
netstat –an
2.
登陸mysql
伺服器
mysql –u root –p mysql–hlocahost –u root –p
3.
選擇資料庫
show databases
4.
設定字符集
set names 'gbk';
5.
查詢資料庫中的表
show tables;
6.
設定字符集
set names'gbk';
7.
建立表
create tabletest(
tid int(10) not null,
tname varchar(100) notnull,
tdate datetime not null default'0000-00-00',
primary key(tid));
8.
檢視表結構
desc test;
9.
增加列
alter table testadd(tage int(3));
10.
修改列的預設值
alter table test altertag set default '0';
11.
刪除預設值
alter table test altertag drop default;
12.
刪除列
alter table test dropcolumn tag;
13.
插入資料
insert intotest(tid,tname,tdate) value(1,'ymm','2012-11-04');
14.
刪除表
drop table test;
15.
修改表名
alter tabletest rename test1;
16.
顯示資料庫版本
select version();
17.
重新整理資料庫
flush privileges;
18.
查詢當前時間
select current_date;
19.
將查詢出的資料寫入檔案
select * from test1into outfile "f:/test.txt" fields terminated by ",";
20.
檢視資料庫狀態
status;
21.
mysql
基本操作檢視所有編碼
show variables like'character_set_%';
22. 主鍵設定自子增長
tid int(10) not null
auto_increment
,//設定主鍵的時候
alter table auto auto_increment=(10);
Mysql基本操作命令
1 mysql安裝 mysqld install 在mysql的bin目錄下操作 2 mysql初始化 mysqld initialize insecure user mysql 3 mysql啟動服務 net start mysql 4 mysql登入 mysql u root p 登入本地資料庫...
mysql基本操作命令
show databases 顯示資料庫 create database name 建立資料庫 use databasename 選擇資料庫 drop database name 直接刪除資料庫,不提醒 show tables 顯示表 describe tablename 顯示具體的表結構 sele...
mysql基本操作命令
1.匯出整個資料庫 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 2.匯出乙個表 mysqldump u 使用者名稱 p 資料庫名錶名 匯出的檔名 3.匯出乙個資料庫結構 d 沒有資料 add drop table 在每個create語句之前增加乙個drop table 4.匯入資料...