国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 數(shù)據(jù)庫 > MySQL > 正文

Linux操作系統(tǒng)操作MySQL常用命令小結(jié)

2024-07-24 12:41:20
字體:
供稿:網(wǎng)友

下面給大家分享mysql常用命令,

 -- 啟動數(shù)據(jù)庫service myslqd start;-- 進(jìn)入MySQL -u root -p/mysql -h localhost -u root -p DatabaseName;-- 列出數(shù)據(jù)庫show database;-- 創(chuàng)建數(shù)據(jù)庫create database XXXX;-- 選擇數(shù)據(jù)庫use DatabaseName;-- 羅列表show table;-- 顯示表格的屬性show columns from tablename;-- 建立數(shù)據(jù)庫source filename.txt;-- 增加一個字段alter table tablename add column filename datatype;-- 增加多個字段alter table tablename add column filename1 datatype,add column filename2 datatype;-- 新增一個用戶grant all On *.* to user@localhost identity by "password";-- 查詢時間select now();-- 查詢用戶select user();-- 查詢數(shù)據(jù)庫版本select version();-- 查詢當(dāng)前使用的數(shù)據(jù)庫select database();-- 刪除student_course數(shù)據(jù)庫中的student數(shù)據(jù)便rm -f student_cource/student.*-- 備份數(shù)據(jù)庫(備份數(shù)據(jù)庫Apple1)MySQLdump -u root -p Apple1>C:/Apple1.txt-- 備份表(將數(shù)據(jù)庫Apple1中的mytable表備份)MySQLdump -u root -p mytable>C:/Apple.txt-- 創(chuàng)建臨時表(mytable)create temporary table mytable(id int,address varchar(20),name varchar(20));-- 創(chuàng)建表前先判斷系統(tǒng)是否存在這個表create table if not exists mytable(......);-- 從已有的table1表中復(fù)制表結(jié)構(gòu)到table2create table table2 select * from table1 where 1<>1;-- 復(fù)制表create table table2 select * from table1;-- 重命名表名alter table table1 rename as table2;-- 修改列的數(shù)據(jù)類型alter table table1 modify ID int unsigned;--把列ID的類型修改為int unsignedalter table table1 change ID SID int unsigned; --把列ID改名為 SID且類型改為int unsigned-- 創(chuàng)建索引alter table table1 add index Ind_id (ID);create index ind_ID on tablename (ID);create unique index ind_id on tablename(ID);-- 刪除索引drop index ind_id On table1;alter table table1 drop index ind_ID;-- 聯(lián)合查詢字符與多個列連接‘select concat(ID,':',name,'=') from table1-----------------------第二片--------------------------------------顯示數(shù)據(jù)庫show database;--顯示數(shù)據(jù)庫中的表show tables;--顯示數(shù)據(jù)表結(jié)構(gòu)describe tablename;--顯示表記錄select * from tablename;--查詢能操作MySQL的用戶select * from user;--創(chuàng)建數(shù)據(jù)庫create database databasename--例如↓MySQL> create database AA;---創(chuàng)建表user AA;mysql> create table table1(ID int auto_increment not null primary key,name char(6),sex char(6),birthday date) ---插入幾條記錄 MySQL> insert into AA values('','張三','男','1971-10-01'); MySQL> insert into AA values('','劉佳佳','女','1978-10-01'); --驗證結(jié)果 MySQL> select * from AA;--修改張三的生日為1971-01-10MySQL> update AA set birthday = '1971-01-10' where ID = '1'; --刪除記錄MySQL> delete from AA where ID = '1';--刪除表以及庫mysql> drop table tablename;MySQL> drop database databasename;--新增萬能用戶-- 格式:grant select On database.* to username@localhost identity by 'password'用戶名user_1 密碼是123456--可以自任何PC上登錄這個用戶對數(shù)據(jù)庫為所欲為MySQL> grant select,insert update,delete on *.* to user_1@"%" identity by "123456";--創(chuàng)建只有在本機(jī)才能操作數(shù)據(jù)庫的用戶用戶名user_2 密碼是123456MySQL> grant select,insert update,delete on *.* to user_2@localhost identity by "123456";--登錄數(shù)據(jù)庫庫MySQL> -u user_1 -p -h IP地址;
發(fā)表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發(fā)表
主站蜘蛛池模板: 台北县| 吴桥县| 潜江市| 买车| 四子王旗| 浪卡子县| 宁远县| 桐柏县| 兴文县| 手机| 新沂市| 嘉善县| 肥城市| 巧家县| 定陶县| 抚松县| 霍山县| 叶城县| 东安县| 贞丰县| 扬中市| 东方市| 霸州市| 常熟市| 海宁市| 永城市| 衡山县| 建水县| 临泽县| 隆德县| 陇西县| 秦安县| 广元市| 名山县| 察雅县| 舞钢市| 图木舒克市| 安塞县| 吉林省| 银川市| 景谷|