mysql -u root -p #-u 使用者名稱-h後面寫要連線的主機ip位址
-u後面寫連線的使用者名稱
-p回車後寫密碼
回車後輸入密碼,當前設定的密碼為toor
建立資料庫create database 資料庫名 charset=utf8;
刪除資料庫
drop database 資料庫名;
切換資料庫
use 資料庫名;
檢視當前選擇的資料庫
select database();
檢視當前資料庫中所有表show tables;
建立表create table 表名(列及型別);
auto_increment表示自動增長
如: create table students( id int auto_increment primary key, sname varchar(10) not null );修改表alter table 表名 add|change|drop 列名 型別;
如:alter table students add birthday datetime;
刪除表drop table 表名;
檢視表結構
desc 表名;
更改表名稱
rename table 原表名 to 新錶名;
檢視表的建立語句
show create table '表名';
查詢select * from 表名
增加全列插入:insert into 表名 values(...)
預設插入:insert into 表名(列1,...) values(值1,...)
同時插入多條資料:insert into 表名 values(...),(...)...;
或insert into 表名(列1,...) values(值1,...),(值1,...)...;
主鍵列是自動增長,但是在全列插入時需要佔位,通常使用0,插入成功後以實際資料為準
修改update 表名 set 列1=值1,... where 條件
刪除delete from 表名 where 條件
邏輯刪除,本質就是修改操作update
alter table students add isdelete bit default 0;
如果需要刪除則
update students isdelete=1 where ...;
進入超級管理員sudo -s
進入mysql庫目錄
cd /var/lib/mysql
執行mysqldump命令
mysqldump –uroot –p 資料庫名 > ~/desktop/備份檔案.sql;
按提示輸入mysql的密碼
資料恢復
連線mysqk,建立資料庫
退出連線,執行如下命令
mysql -uroot –p 資料庫名 < ~/desktop/備份檔案.sql
根據提示輸入mysql密碼
mysql資料庫基本用法
最近學習mysql,簡單的記錄一下 一 將資料表user info從資料庫db a複製到資料庫db b 注意 mysql語句是在資料庫db b中執行 1 資料庫db b中沒有資料表user info 表名可以根據需要設定,不需要跟a中表名一致 建立表b user並複製表user info的表結構,使...
MySQL資料庫的基本用法
mysql資料庫的用法 1.開啟和關閉windows服務 net start 服務名 net stop 服務名 2.登入mysql資料庫 mysql h c hello aa.sql 匯出的路徑 2.使用客戶端匯出,或者複製sql語句 6.資料匯入 1.使用dos視窗 空格 拖進來需要匯入的檔案 2...
MySQL資料庫基本用法 查詢
查詢的基本語法 select from 表名 from關鍵字後面寫表名,表示資料 於是這張表 select後面寫表中的列名,如果是 表示在結果中顯示表中所有列 在select後面的列名部分,可以使用as為列起別名,這個別名出現在結果集中 如果要查詢多個列,之間使用逗號分隔 在select後面列前使用...