1.mysql常用命令:
create database name; 建立資料庫
use databasename; 選擇資料庫
drop database name; 直接刪除資料庫,不提醒
drop table tablename 刪除資料表
show databases; 顯示資料庫
show tables; 顯示表
show engines; 檢視資料庫支援的引擎
desc tablename; 表的詳細描述
mysqladmin drop database name; 刪除資料庫,有提示。
顯示當前mysql版本和當前日期
select version(),current_date;
2.修改mysql中的root密碼;
mysql>update user set password=password("wwy123456") where user='root';
mysql>flush privileges //重新整理資料庫
mysql>use dbname; //開啟資料庫
mysql>show databases; //顯示所有資料庫
mysql>show tables; //顯示資料庫中的所有表,要先use你的資料庫
mysql>desc user; //顯示資料庫中user表的列資訊
3.建立資料表student
mysql>create table student(
mysql>id varchar(50) primary key,
mysql>username varchar(50),
mysql>password varchar(50)
mysql>);
4.修改資料表結構
mysql>下執行
#在表student中增加列test
alter table student add(test carchar(50));
#在表student中修改列test
alter table student modify test varchar(10) not null;
#在表student中修改列test的預設值
alter table student alter test set default 'system';
#在表student中去掉列test的預設值
alter table student alter test drop default;
#在表student中去掉列test
alter table student drop column test;
#表student中刪除主鍵
alter table student drop primary key;
#表student中增加主鍵
alter table student add primary key (id);
5.在表student中插入資料
insert into student (id,username,opassword) values('123','wwy','456'); insert into student (id,username,opassword) values('124','wwy','456');
6.查詢、刪除及更新操作
#顯示student中的人員的名字
select username from student;
#顯示收student中的人數
select count(*) from student;
#刪除124
delete from student where id='124';
#將wwy改為zyj
updata student set username='zyj' where username='wwy';
7.對錶重新命名
alter table table1 rename as table2;
8.匯入.sql檔案命令(例如d:\user.sql)
mysql>use database;
mysql>source d:/user.sql;
9.txt檔案匯入mysql資料庫
load data local infile "d:/student.txt" into table student fields terminated by ',' lines terminated by '\r\n'; 其中『,』為分隔符
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...