資料庫Mysql 操作

2022-06-05 04:36:11 字數 1922 閱讀 7453

和資料庫相關:

1.建立資料庫 create database db1;

create database db1 character set gbk

2.檢視所有庫: show databases;

3.檢視單獨的庫: show create database db1;

4.刪除資料庫: drop database db1;

5.使用資料庫:use db1;

和表相關:

1. 建立表

create table t1 (id int,

name varchar(10));

-制定引擎和字符集

create table t1 (id int,

name varchar(10)) engine=innodb charset=utf8;

2.檢視所有表 show tables;

3.檢視表結構 desc t1;

4.檢視表屬性 show create table t1;

對錶操作

1.建立表 create table student (id int,name varchar(10));

2.帶引擎和字符集的建立 create table student (id int,name varchar(10)) engine=innodb(myisam) charset=gbk;

3.檢視所有 show tables;

4.檢視表屬性 show create table student;

5.檢視表結構 desc student;

和表相關sql:

1.建立表:create table t1 (id int) engine=innodb charset=utf8;

2.檢視所有: show tables;

3.檢視單個:desc t1; show create table t1;

4.修改表名: rename table t1 to t2;

5.新增字段: alter table t2 add age int (新增到最後面);

alter table t2 add age int first (新增到最前面)

alter tabke stue add age int after id;(某個字段後面新增)

6.修改名和型別:alter table t2 change age fatherage int;

7.修改型別和順序:alter table t2 modify fatherage varchar(20) (first或after 欄位名);

8.修改屬性:alter table t2 engine=myisam charset=utf8;

8.刪除字段:alter table t2 drop age;

9.刪除表: drop table t2;

資料相關sql

1.插入資料:

insert into t1 values(2,'lisi',2,3);

insert into t1 values(3,'wangwu',2,3);

insert into t1 values(4,'zhaoliu',2,3);

insert into student (id,name) values (1,'xm');

批量就是在values後面寫多個小括號 通過, 分開 括號裡面寫值

2.查詢資料:select * from student;

select id,name from student;

3.修改資料: update student set age=18 where age=20;

4.刪除:delete from student where age=18;

檢視select title from t_item;

select title from where category='riyongping';

mysql資料庫核對 Mysql資料庫操作總結

1 部署資料庫服務 mariadb yum install y mariadb 運算元據庫命令 mariadb server 啟動資料庫服務 systemctl startmariadb 建立資料庫 create database 資料庫名 建立好資料庫之後可以檢視資料庫是否建立 show data...

mysql資料庫基本操作 MYSQL資料庫基本操作

1.連線mysql mysql u 使用者名稱 p 回車後要求輸入密碼,密碼不可見 2.退出mysql命令 exit 回車 3.修改密碼 mysqladmin u使用者名稱 p舊密碼 password 新密碼4.檢視mysql許可權和使用者select host,user fromuser 對資料庫...

mysql資料庫語法 MySQL資料庫操作語法詳解

1 資料庫建立 建庫語句如下 create database schema會建立乙個給定名稱的資料庫,只有擁有create許可權才能使用該語法。不加if not exists時,如果需要建立資料庫已經同名存在則會報錯。create specification中指定了建立資料庫特性。資料庫特性存放在資...