MySQL基本使用

2021-10-04 21:22:00 字數 1416 閱讀 6544

檢視所有資料庫

show databases;
使用資料庫

use 資料庫名;
檢視當前使用的資料庫

select database();
建立資料庫

create database 資料庫名 charset=utf8;

例:create database python charset=utf8;

刪除資料庫

drop database 資料庫名;

例:drop database python;

檢視當前資料庫中所有表

show tables;
檢視表結構

desc 表名;
建立表

auto_increment表示自動增長

create table table_name(

column1 datatype contrai,

column2 datatype,

column3 datatype,

.....

columnn datatype,

primary key(one or more columns)

);

修改表-新增字段

alter table 表名 add 列名 型別;

例:alter table students add birthday datetime;

修改表-修改字段:重新命名版

alter table 表名 change 原名 新名 型別及約束;

例:alter table students change birthday birth datetime not null;

修改表-修改字段:不重新命名版

alter table 表名 modify 列名 型別及約束;

例:alter table students modify birth date not null;

修改表-刪除字段

alter table 表名 drop 列名;

例:alter table students drop birthday;

刪除表

drop table 表名;

例:drop table students;

檢視表的建立語句

show create table 表名;

例:show create table classes;

mysql 使用 MySQL 基本使用

資料庫 create database 名字 建立資料庫 show databases 檢視所有資料庫 show create database book g 檢視建立好的資料庫的定義 drop database if exists 名字 刪除資料庫 use 名字 使用資料庫 引擎 show eng...

mysql基本使用

reference 1 使用show語句找出在伺服器上當前存在什麼資料庫 mysql show databases 2 2 建立乙個資料庫mysqldata mysql create database mysqldata 3 選擇你所建立的資料庫 mysql use mysqldata 按回車鍵出現...

MySQL基本使用

mysql 是最流行的關係型資料庫管理系統,在 web 應用方面 mysql 是最好的 rdbms relational database management system 關聯式資料庫管理系統 應用軟體之一。今天剛好又接觸到了mysql,有一些相關知識和語句不常用會容易忘記,在這裡記錄一下。方法...