MySQL資料庫常見操作

2022-07-18 10:45:16 字數 1121 閱讀 5009

資料庫連線與關閉:mysql -h 伺服器主機位址 -u 使用者名稱 -p 使用者密碼

建立新使用者並授權:grant 許可權 on 資料庫.資料表 to 使用者名稱@登入主機 identified by "密碼"

建立資料庫:create database [if not exists] 資料庫名;

刪除資料庫:drop database [if exists] 資料庫名;

顯示資料庫:show databases;

開啟資料庫為當前使用: use 資料庫名;

建立資料表:

檢視當前資料庫有多少表:show tables;

檢視資料表結構:desc 表名稱;

刪除資料表:drop table 表名稱;

向資料表中插入行記錄(insert)

從資料表中查詢資料記錄(select)

更改資料表中存在的記錄(update)

刪除資料表中的記錄(delete)

MySQL資料庫常見操作

1.為所有使用者授權 grant all privileges on to 使用者名稱 identified by 密碼 2.資料庫基礎操作 1 登陸mysql資料庫 mysql u root p,回車後再輸入密碼即可 2 檢視所有資料庫 show databases 3 刪除某個資料庫 drop ...

MySQL 資料庫常見操作

建庫語句 create database plms2 default charset utf8 建表語句 帶引號不是英文 中文引號 drop table if exists zd test create table zd test rec id int 11 not null comment 行標識...

MySQL資料庫 常見基本操作

mysql語句的規範 1.關鍵字與函式名稱全部大寫 2.資料庫名稱 表名稱 欄位名稱全部小寫 3.sql語句必須要以分號結尾 作用命令 檢視當前狀態 s 配置檔案中的變數 show variables 顯示當期伺服器版本 select version 顯示當前日期時間 select now 顯示當前...