mysql基本操作(一)

2022-07-22 21:57:32 字數 1114 閱讀 6902

庫操作:

show databases;

//顯示全部資料庫

drop database dbname;//

刪除資料庫

create database [if not exists] dbname;//

建立資料庫

use dbname;//

使用資料庫

show tables;//

顯示當前使用資料庫的表名

desc tablename;//

顯示具體的表結構

表操作:

drop table tablename;

//刪除表

-create table tablename(uid int,uprice decimal);//

建立乙個有uid和uprice欄位的資料表

-create table newtablename(uid int) as

select uid from user;//

從資料表user中複製uid列到新的資料表中並且建立該新錶

-create table newtablename as

select * from

user;

單列:alter table tablename add tel varchar(

11) default

'14545

';//

新增表裡面的字段

-多列:alter table tablename add(photo blob,birthday data);//

新增多列

alter table oldusername rename to newusername;//

重新命名表名

alter table tablename change oldname newname varchar(10);//

字段重新命名

alter table tablename modify tel varchar(15) default 『48777777889979

』 first;修改tel欄位並且讓他在第一列顯示

alter table tablename drop tel;

//刪除tel欄位

mysql基本 操作 一

1.建立帶有編碼的資料庫 create database 庫名 character set 編碼 eg create database chepai character set gbk 檢視資料庫 編碼 show create database chepai 2.刪除乙個資料庫 drop datab...

MySQL基本操作(一)

二 資料型別 三 表的操作 show databases 當建立資料庫沒有指定字符集和校驗規則時,系統使用預設utf8,校驗規則時 utf8 general ci create database 資料庫名 建立乙個使用utf8mb4字符集的資料庫 create database 資料庫名 chara...

mysql基本操作 MySQL基本操作

mysql中新增使用者,新建資料庫,使用者授權,刪除使用者,修改密碼 注意每行後邊都跟個 表示乙個命令語句結束 1.新建使用者 1.1 登入mysql mysql u root p 密碼 1.2 建立使用者 mysql insert into mysql.user host,user,passwor...