MySQL5資料庫指令

2021-08-30 02:57:19 字數 2688 閱讀 8755

[table]

|1、mysql常用命令

|| create database name; 建立資料庫||

|| use databasename; 選擇資料庫||

|| drop database name 直接刪除資料庫,不提醒||

|| show tables; 顯示表||

|| describe tablename; 表的詳細描述||

|| select 中加上distinct去除重複字段||

|| mysqladmin drop databasename 刪除資料庫前,有提示。||

|| 顯示當前mysql版本和當前日期||

||select version(),current_date;|

[/table]

[table]

|2、修改mysql中root的密碼:

|| shell>mysql -u root -p||

|| mysql> update user set password=password(」xueok654123″) where user=』root』;||

|| mysql> flush privileges //重新整理資料庫||

|| mysql>use dbname; 開啟資料庫:||

|| mysql>show databases; 顯示所有資料庫||

|| mysql>show tables; 顯示資料庫mysql中所有的表:先use mysql;然後||

||mysql>describe user; 顯示表mysql資料庫中user表的列資訊);|

[/table]

[table]

|3、grant

||建立乙個可以從任何地方連線伺服器的乙個完全的超級使用者,但是必須使用乙個口令something做這個

||mysql> grant all privileges on *.* touser@localhostidentified by 』something』 with

||增加新使用者

||格式:grant select on 資料庫.* to 使用者名稱@登入主機 identified by 「密碼」

||grant all privileges on *.* tomonty@localhostidentified by 』something』 with grant option;

||grant all privileges on *.* tomonty@」%」 identified by 』something』 with grant option;||

||刪除授權:

||mysql> revoke all privileges on *.* fromroot@」%」;

||mysql> delete from user where user=」root」 and host=」%」;

||mysql> flush privileges;||

||建立乙個使用者custom在特定客戶端it363.com登入,可訪問特定資料庫fangchandb

||mysql >grant select, insert, update, delete, create,drop on fangchandb.* to custom@ it363.com identified by 『 passwd』||

||重新命名表:

||mysql > alter table t1 rename t2;|

[/table]

[table]

|4、mysqldump

||備份資料庫

||shell> mysqldump -h host -u root -p dbname >dbname_backup.sql||

||恢復資料庫

||shell> mysqladmin -h myhost -u root -p create dbname

||shell> mysqldump -h host -u root -p dbname < dbname_backup.sql||

||如果只想卸出建表指令,則命令如下:

||shell> mysqladmin -u root -p -d databasename > a.sql||

||如果只想卸出插入資料的sql命令,而不需要建表命令,則命令如下:

||shell> mysqladmin -u root -p -t databasename > a.sql||

||那麼如果我只想要資料,而不想要什麼sql命令時,應該如何操作呢?

||   mysqldump -t./ phptest driver

||其中,只有指定了-t引數才可以卸出純文字檔案,表示卸出資料的目錄,./表示當前目錄,即與mysqldump同一目錄。如果不指定driver 表,則將卸出整個資料庫的資料。每個表會生成兩個檔案,乙個為.sql檔案,包含建表執行。另乙個為.txt檔案,只包含資料,且沒有sql指令。|

[/table]

[table]

|5、可將查詢儲存在乙個檔案中並告訴mysql從檔案中讀取查詢而不是等待鍵盤輸入。可利用外殼程式鍵入重定向實用程式來完成這項工作。例如,如果在檔案my_file.sql 中存放有查

||詢,可如下執行這些查詢:

||例如,如果您想將建表語句提前寫在sql.txt中:

||mysql > mysql -h myhost -u root -p database < sql.txt |

[/table]

MySQL資料庫 MySQL5安裝教程

1.執行安裝包 2.next之後選擇custom 元件位置可選change選項改變 3.4.可以選擇安裝位置 5.點選install開始安裝 6.安裝結束後程式後提示受否要在mysql.com上註冊,選擇跳過即skin sign up,然後點next 7.現在開始配置mysql伺服器,點選finis...

mysql5無法注入 mysql5注入

對mysql5注入時,可以直接查詢information schema中的tables表,快速找到所需的表段。同時可以利用group concat函式,得到你想得到的東西,不用limit乙個乙個猜。前面先轉轉別人的東西 and 1 2 union select 1,2,group concat us...

Mysql 指令建立資料庫

一 連線mysql 格式 mysql h主機位址 u使用者名稱 p使用者密碼 1 連線到本機上的mysql。首先開啟dos視窗,然後進入目錄mysql bin,再鍵入命令mysql u root p,回車後提示你輸密碼.注意使用者名稱前可以有空格也可以沒有空格,但是密碼前必須沒有空格,否則讓你重新輸...