show databases; 檢視當前根目錄有哪些資料夾
create database 資料庫名稱 default charset utf8 collate uft8_general_ci; 建立資料庫
use 資料庫名稱; 使用資料庫
drop database 資料庫名稱; 刪除資料庫
show tables; 檢視庫里的表
desc 表名; 檢視結構
create table 表名(列名 型別 是否可以為空,列名 型別 是否可以為空,......)engine= innodb default charset utf8; 建立表
1 null,not null 是否可以為空
2 auto_inrement 自動增長(數字,必須是索引:主鍵)
3 primary key 設定為主鍵,一張表只能有乙個主鍵,唯一不能重複,不能為空,一般情況下自增列設定為主鍵,查詢速度快
4 foreign key 外來鍵,一對多,兩張表建立約束
drop table 表名; 刪除表
delete from 表名; 清空表內容
truncate table 表名; 清空表內容,速度快,自增回到原點
select * from 表名; 檢視表內容
alter table 表名 add 列名 型別; 新增列
alter table 表名 drop column 列名; 刪除列
alter table 表名 change 原列名 新列名 型別; 修改列名,型別
alter table 表名 modify column 列名 型別; 修改型別
alter table 表名 add primary key(列名); 新增主鍵
alter table 表名 drop primary key; 刪除主鍵
SQL語句初識
源 安裝 redis crontab 計畫任務表 開機自啟 vim 1,s 要替換的內容 替換後內容 gice 替換 前面表示從1到末尾,也可以寫成1,10表示1到10行替換 g global表示全域性模式 i ignore case表示忽略大小寫 c confirm表示確認 e error表示忽略...
4 初識SQL語句
有了mysql這個資料庫軟體,就可以將程式設計師從對資料的管理中解脫出來,專注於對程式邏輯的編寫 sql語言主要用於訪問資料 查詢資料 更新資料和管理關係資料庫系統,sql語言由ibm開發。sql語言分為3種型別 1 ddl語句 資料庫定義語言 資料庫 表 檢視 索引 儲存過程,例如create d...
04 Mysql 初識sql語句
create database db1 charset utf8 檢視當前建立的資料庫 show create database db1 檢視所有的資料庫 show databases alter database db1 charset gbk drop database db1 use db1 ...