mysql 資料庫的操作(sql語句)

2021-08-19 21:49:12 字數 1075 閱讀 7822

mysql -u「使用者名稱」 -p「密碼」

exit / quit / ctrl+d

exit #這個最常用

—sql語句最後需要有分號 ;結尾

—顯示資料庫版本

select version();

—顯示時間

select now

—檢視當前使用的資料庫

select database();

—檢視所有的資料庫

show databases;

—建立資料庫

create database 資料庫名 charset=utf8; 注意:( utf8不需要加-)

—檢視建立資料庫的語句

show create database 資料庫名;

—使用資料庫

use database;

—刪除資料庫

drop database 資料庫名;

—檢視當前資料庫中的所有表

show tables;

—建立表

–int unsigned 無符號整形

–auto_increment 表示自動增長

–not null 表示不能為空

–primary key 表示主鍵

–default 預設值

** create table 資料表名 (字段 型別 約束);

—–id 是乙個int型別 無符號的自動增長的主鍵

create table user(id int unsigned auto_increment primary key ,name varchar(50) not null, age int unsigned)

—檢視表結構

desc 資料表的名字

desc user;

—檢視表的建立語句

show create table 表名字;

—刪除表

drop table 表名

—刪除資料庫

drop database 資料庫名

2018.5.12

star_wan

MySql資料庫之alter表的SQL語句集合

mysql之alter表的sql語句集合,包括增加 修改 刪除字段,重新命名表,新增 刪除主鍵等。1 刪除列 alter table 表名字 drop 列名稱 2 增加列 alter table 表名字 add 列名稱 int not null comment 注釋說明 3 修改列的型別資訊 alt...

MySQL資料庫操作中常用的一些SQL語句

1.單句sql語句,從檢視中查詢結果 select c.product no,c.product flag from select a.product flag,b.product no from product category as a join product as b on a.produc...

mysql資料庫 sql語言初體驗DDL語句

sql語言 sql語句分類 dql data query language資料查詢語言 dml data manipulation language資料操作語言 ddl data definition language資料定義語言 dcl 資料控制語言 tpl 事務處理語言 ccl 指標控制語言 d...