MySQL資料庫必會的操作

2021-09-12 14:48:54 字數 1036 閱讀 9390

mysql忽略大小寫

sql語句以;結束

sql語句固定的句式單詞預設大寫庫

1.檢視資料庫:

show databases;
2.增加資料庫 (比如我要加個school庫)

create database school charset=utf8;
3.使用school 資料庫

use school;
4.檢視表:

show tables;
5.建立表(建立個學生表)

create table student (id int premary key auto_increment,name char(30),age int);
create建立

table 建立的型別

student 表的名稱

id 欄位名

int 整型數

primary key 主鍵

auto_increment 自增長

6.刪除表

drop table student;
7.檢視表結構

desc student;
練習1:建立乙個完整的學生表;

create table student(id int primary key auto_increment,name char(30),age int,birthday char(30),gender char(10)) charset=utf8;
練習2:向剛剛練習1中的表中增加資料:

insert into student(name,age,birthday,gender) value("小明",18,"2001-01-01","男");

資料庫 MySQL 資料庫的操作

1.建立資料庫 create database if notexists 資料庫名 charset 字元編碼 utf8mb4 如果多次建立會報錯 字元編碼不指定預設 utf8mb4 給資料庫命名 定要習慣性加上反引號,防 和關鍵 字衝突 2.檢視資料庫 show databases 3.選擇資料庫 ...

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 對資料庫...