資料庫的操作

2021-09-29 12:15:31 字數 1213 閱讀 1241

翻譯:schema     提綱,概要

default    預設值

character

規則:create [if not exits] 資料庫名  

[default] character  set  [=] 字符集 |

[default] collate [=] 校對規則名稱

] ;解釋: 必須在database 和 schema中選乙個。

[if not exits]  可寫可不寫,表示建立前進行判斷如果不存在則建立資料庫。

[default]   可寫可不寫,表示指定預設值。

character  set  [=] 字符集:指定資料庫中的字符集,utf-8(萬國碼,針對unicode的可變長度字元編碼) gbk(簡體中文) 、big5(正體中文)

[default] collate [=] 校對規則名稱: 用於指定字符集的校對規則。具體規則可以在mysql的workbenchzh中找到。

注意:預設情況下,windows是不區分大小寫,linux區分大小寫。

例子:create database if not exists db_test

character set = gbk;

規則: show

[ like '模式'  where 條件]

解釋: 兩者必須選乙個

like:可選項。

where:限定範圍。

例子:show databases:      查詢所有資料庫

show databases like 'db_%'  查詢以   db_    開頭的資料庫。

規則:  use 資料庫名;    

例子:  use db_book;

規則:    alter [資料庫名]              

[default] character  set  [=] 字符集 |

[default] collate [=] 校對規則名稱

解釋:     [資料庫名]     可有可無,沒有寫時,為系統預設值。

例子:      alter  database  db_book

defaul character set gbk

defaul collate gbk_chinese_ci;

規則: drop [if not exists] 資料庫名;

例子:drop database if not exists db_book;

資料庫 基礎資料庫的操作

什麼是資料庫 資料庫 database 是按照資料結構來組織 儲存和管理資料的倉庫 常見的資料庫oracle mysql sun db2 ibm sql server microsoft postgre sql 專業術語 資料庫系統 database system dbs 資料庫 database ...

資料庫 MySQL 資料庫的操作

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

資料庫的操作

一 ddl資料庫操作庫 1.1 建立資料庫 create database 資料庫名 2 檢視建立的資料庫資料 show create database mydb1 3 指定資料庫字符集 create database mydb2 character set gbk 4 檢視資料庫支援的字符集 sh...