MySQL常用基本操作

2021-10-01 21:22:25 字數 1575 閱讀 9339

1、 資料庫操作:

列出資料庫:

show databases;

使用名為database_name的資料庫:

use database_name;

建立名為database_name的資料庫:

create database database_name;

刪除乙個名為database_name的資料庫:

drop database database_name;

2、表操作:

列出所有表:

show tables;

建立乙個名為table_name的新錶:

create table table_name;

或者:create table table_name (欄位1 資料型別 , 欄位2 資料型別);

刪除表table_name:

drop table table_name;

顯示表table_name的資料結構:

describe table_name;

或:show columns from table_name;

向表table_name中新增資料:

insert into table_name [(欄位1 , 欄位2 , ….)] values (值1 , 值2 , …..);

更新某乙個欄位的資料:

update table_name set 欄位名=」新值」 [, 欄位2 =」新值」 , …..][where id=id_num] [order by 字段 順序];

例 : update mytable set username=」lisi」 where id=1; 。

將表table_name中的記錄清空:

delete from table_name; // 刪除整個表中的資訊

delete from table_name where 條件語句 ; // 刪除表中指定條件的語句

顯示表table_name的記錄:

select * from table_name;

select * from table_name where 條件語句;//查詢表中指定條件的語句

修改表名:

alter table table_name rename to new_table_name;

MySql 常用基本操作

6 當前資料庫包含的表資訊 mysql show tables 注意 最後有個s 三 表操作,操作之前應連線某個資料庫 1 建表 命令 create table 表名 欄位名1 型別1 欄位名n 型別n mysql create table myclass id int 4 not null pri...

MySQL常用操作基本

6 當前資料庫包含的表資訊 mysql show tables 注意 最後有個s 三 表操作,操作之前應連線某個資料庫 1 建表 命令 create table 表名 欄位名1 型別1 欄位名n 型別n mysql create table myclass id int 4 not null pri...

mysql常用操作語句 mysql基本操作語句

1 關於資料庫的基本操作 show databases 查詢資料庫 show create database score 查詢資料庫的結構 create database score default charset utf8 建立資料庫 use score 使用score資料庫 drop datab...