主頁 > 知識庫 > Linux操作系統(tǒng)操作MySQL常用命令小結(jié)

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

熱門標簽:扎樣申請400電話 聊城智能外呼系統(tǒng)運營商 成都優(yōu)派外呼系統(tǒng) 地圖標注人員兼職 電子地圖標注電話 上海智能外呼系統(tǒng)代理商 沈陽電銷外呼系統(tǒng)原理是什么 ps制作地圖標注gif 寧波企業(yè)外呼系統(tǒng)收費

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

 -- 啟動數(shù)據(jù)庫
service myslqd start;
-- 進入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();
-- 查詢當前使用的數(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)到table2
create 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 unsigned
alter 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-10
MySQL> 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)建只有在本機才能操作數(shù)據(jù)庫的用戶
用戶名user_2 密碼是123456
MySQL> grant select,insert update,delete on *.* to user_2@localhost identity by "123456";
--登錄數(shù)據(jù)庫庫
MySQL> -u user_1 -p -h IP地址;

以上所述是小編給大家介紹的Linux操作系統(tǒng)操作MySQL常用命令小結(jié),希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復(fù)大家的。在此也非常感謝大家對腳本之家網(wǎng)站的支持!

您可能感興趣的文章:
  • Linux 入門常用命令 password — 修改密碼,改變用戶
  • Linux 中 CURL常用命令詳解
  • linux系統(tǒng)安裝git及git常用命令
  • 很實用的Linux 系統(tǒng)運維常用命令及常識(超實用)
  • Linux常用命令全集(超全面)
  • linux下防火墻開啟某個端口號及防火墻常用命令使用(詳解)
  • Linux 常用命令大全(經(jīng)典)
  • Linux下find和grep常用命令及區(qū)別介紹
  • 積累linux常用命令大全
  • LINUX入門級常用命令20條整理
  • 日常整理linux常用命令大全(收藏)
  • Linux常用命令last的使用方法詳解
  • 詳解Linux防火墻iptables禁IP與解封IP常用命令
  • linux 入侵常用命令匯編
  • 基于Linux調(diào)試工具strace與gdb的常用命令總結(jié)
  • Linux系統(tǒng)信息查看常用命令
  • 新手入門級linux系統(tǒng)常用命令大全
  • 最新Linux下安裝tomcat8圖解過程

標簽:咸寧 宿州 三明 內(nèi)江 AXB 汕頭 朔州 林芝

巨人網(wǎng)絡(luò)通訊聲明:本文標題《Linux操作系統(tǒng)操作MySQL常用命令小結(jié)》,本文關(guān)鍵詞  Linux,操作系統(tǒng),操作,MySQL,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Linux操作系統(tǒng)操作MySQL常用命令小結(jié)》相關(guān)的同類信息!
  • 本頁收集關(guān)于Linux操作系統(tǒng)操作MySQL常用命令小結(jié)的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章