MySQL 基本操作 資料庫操作和表操作

2021-09-26 07:51:54 字數 926 閱讀 1534

檢視所有表

show tables [like 'xx']

show tables from 庫名

檢視表機構

show create table 表名(資訊更詳細)

desc 表名 / describe 表名 / explain 表名 / show columns from 表名 [like 'pattern']

show table status [from db_name] [like 'pattern']

修改表刪除表:drop table[ if exists] 表名 ...

清空表資料:truncate [table] 表名

複製表結構:create table 表名 like 要複製的表名

複製表結構和資料:create table 表名 [as] select * from 要複製的表名

檢查表是否有錯誤:check table tbl_name [, tbl_name] ... [option] ...

優化表:optimize [local | no_write_to_binlog] table tbl_name [, tbl_name] ...`

修復表:repair [local | no_write_to_binlog] table tbl_name [, tbl_name] ... [quick] [extended] [use_frm]

分析表:analyze [local | no_write_to_binlog] table tbl_name [, tbl_name] ...

MySQL基本操作 資料操作

刪除資料 更新字段 1.插入指定字段值 insert into 表名 字段列表 values 對應字段值列表 2.向表中所有字段插入資料 insert into 表名 values 按表結構寫對應資料 insert into my teacher values liwei 20 1.查詢表中全部資料...

MySQL資料庫基本操作(資料庫操作一)

1 命令 行登入語法 mysql u使用者名稱 h主機名或者ip位址 p密碼 登入到本機 mysql h localhost u root p密碼 檢視當前使用者的許可權 show grants 2 建立資料庫 1 create database database name database nam...

MySQL基本操作 資料庫和表

資料庫的操作 mysql中,資料庫的基本操作有 建立 檢視 選擇以及刪除4種。mysql表的操作 建立表語法 create table table name column name,column type example create table if not exists runoob tbl r...