mysql的一些基本指令 mysql 一些常用指令

2021-10-19 02:34:04 字數 946 閱讀 3991

登陸:

1 mysql -u root -p //登陸,輸入root密碼

退出登陸

mysql>exit;

mysql 為所有ip授權

mysql> grant all privileges on *.* to 'root'@'%' identified by '123456' with grant option;

為單一ip授權 ***.***.***.***就是想要授權的ip,其實就是把%替換成想要授權的ip

mysql> grant all privileges on *.* to 'root'@'***.***.***.***' identified by '123456' with grant option;

檢視sql下有哪些資料庫

mysql> show databases;

切換資料庫

mysql> use 你的資料庫名字;

顯示當前資料庫下所有的表

mysql> show tables;

查詢資料庫的編碼格式

mysql> show create database banzhan_tplayer;//banzhan_tplayer資料庫名

查詢資料表的編碼格式

mysql> show create table t_player;//t_player資料表名

查詢資料表每一列的格式

mysql> show full columns from t_player;

自增字段必須是主鍵,否則建表報錯

顯示mysql本地配置選項的值:show global variables like 'wait_timeout';   顯示wait_timeout選項的值

一些實用的sql指令鏈結,真心不錯的

mysql的一些基本指令 mysql常用的一些命令

一 授權登入 參考grant all privileges on cacti.to hnf localhost identified by hnf 2014 只給cacti這個資料庫授權 grant all on to root localhost identified by huningfei 只...

linux一些基本指令

cd change directory pwd p 顯示出正確的路徑 而不是連線檔 mkdir 建立目錄的話 如果你想建立mkdir home test1 test2 可以直接加引數mkdir p jiu 不需要一層一層建立了 rmdir 原本的話目錄是需要一層一層來刪除的,被刪除的目錄中不能有其他...

git的一些基本指令

下面來介紹一下git最基礎且最常用的指令 git的基本指令 git status 檢視當前倉庫分支的乙個基本狀態 git init 在本地初始化乙個倉庫 git add 將工作區的修改提交到暫存區 git commit m 注釋 將暫存區的修改提交到分支 git log 列印提交記錄 git log...