庫和表的管理

2021-10-08 13:19:05 字數 1343 閱讀 9581

#一、庫的操作

show databases;

#1.建立庫

create database student;

create database if not exists student;

#2.刪除庫

drop database student;

drop database if exists student;

#二、表的操作

#1.建立表

#語法:

#create table 表名(

#案例:建立學員資訊表

#學號、姓名、性別、郵箱、生日

create table stuinfo(

stuno int,#學號

stuname varchar(20),#姓名

gender char(1),#性別

email varchar(50),#郵箱

borndate datetime #生日

)show tables;

desc stuinfo;

#②修改列名,不加型別 報錯,需要加型別

alter table stuinfo change column borndate birthday datetime;

alter table stuinfo change column birthday borndate ; ×

change

#③修改列的型別

alter table stuinfo modify column gender varchar(2);

#④新增新列

alter table stuinfo add column phone varchar(11);

#⑤刪除列

alter table stuinfo drop column phone;

#3.刪除表

drop table stuinfo;

drop table if exists stuinfo;

show tables;

#4.表的複製

insert into stuinfo values(2,『少傑』,『男』,』』,now());

select * from stuinfo;

#①僅僅複製表的結構

create table newtable2 like stuinfo;

#②複製表的結構+資料

create table newtable3

select * from stuinfo;

create table newtable4

select stuno,stuname

from stuinfo where stuno=1;

庫的管理和表的管理

ddl語言 資料定義語言 庫和表的管理 一 庫的管理 建立,刪除,修改 二。表的管理 建立,刪除,修改 建立 create database table 修改 alter database table 刪除 drop database table 一。庫的管理 1.庫的建立 create datab...

mysql庫和表 MySQL庫和表的管理

mysql資料庫服務配置好後,系統會有4個預設的資料庫.information schema 虛擬物件,其物件都儲存在記憶體中 performance schema 伺服器效能指標庫 mysql 記錄使用者許可權,幫助,日誌等資訊 test 測試庫 mysql資料庫及表的管理 1.查詢所有資料庫 m...

mysql庫和表 MySQL庫和表的管理

mysql資料庫服務配置好後,系統會有4個預設的資料庫.information schema 虛擬物件,其物件都儲存在記憶體中 performance schema 伺服器效能指標庫 mysql 記錄使用者許可權,幫助,日誌等資訊 test 測試庫 mysql資料庫及表的管理 1.查詢所有資料庫 m...