mysql -u root -p 輸入密碼進入資料庫 show database; 查詢當前庫 use databasename 切換到某個庫 show tables; 列出當前資料庫的表 desc tbalename 列出表的欄位 select user() + + | user() | + + ...
mysql -u root -p 輸入密碼進入資料庫 show database; 查詢當前庫 use databasename 切換到某個庫 show tables; 列出當前資料庫的表 desc tbalename 列出表的欄位 select user() +----------------+ | user() | +----------------+ | root@localhost | +----------------+ 查看當前的那個用戶 select database() +------------+ | database() | +------------+ | ylg | +------------+ 查看當前使用那個資料庫 create database db1; 創建資料庫名字為db1 create table t1('id' int(4), 'name' char(40)) 創建t1表,欄位明用反引號括起來! show status 查看MYsql當前狀態 show variables 查看Mysql各參數 show variables like 'max_connect%' 查看某個參數,%類似於萬能匹配 set global max_connect_errors = 1000; 修改參數,global指定要修改是參數名字,set global可以臨時修改,重啟後會失效 show processlist 查看當前伺服器隊列 grant all on *.* to user1 identified by 'root' 創建user1用戶並授權,並設定密碼。 insert into t1 values (1, 'abc'); 某張表中插入數據 update t1 set name='aaa' where id = 1; 修改表的數據 truncate table t1 清空表數據,但不刪除 drop table t1; 刪除表 drop database db1; 刪除資料庫