mysql常用基礎命令

2021-10-02 17:09:56 字數 456 閱讀 5787

show databases 顯示所有建立的資料庫

use mysql連線使用你所要用到的資料庫

補充:webstrom 中node選中哪一行就可以執行哪一行

資料庫的層級表示  

庫-----》表-----》字段(屬性)

show tables 顯示你的所有表

desc db 顯示表的字段屬性

資料庫建立表事項

1、必須要有id值(不允許含有邏輯含義實際含義不允許身份證號碼之類的)

2、type 限定資料型別

3、主鍵全選擇自動遞增

type型別總結

int 整數型別

長整數 bigibt(21)

浮點數 float

雙精度浮點數  double

字串 varchar(16)

文字 text

innodb 表讀取較多、寫也比較好 常用

mysql基礎常用命令

show character set 檢視支援的字符集 show collation 顯示字符集排序規則 show create database test g 檢視庫所支援的字符集 show table status from test like tb1 檢視表所支援的字符集 show full ...

mysql基礎常用命令

資料庫 1查詢 select from table select host,user,password from mysql.user where user ybb and host 查詢使用者 select user,host,password from mysql.user 檢視使用者,ip,密...

mysql 常用命令 mysql 簡單基礎

檢視所有的資料庫 show databases 選擇資料庫 use test 選擇 test 資料庫 檢視資料庫中所有的表已經選擇了資料庫 show tables 檢視資料庫中所有的表 show tables from 檢視當前已選擇的資料庫 select database 建立資料庫 create...