1. 程式人生 > 其它 >C++設計模式 - 原型模式(Prototype)

C++設計模式 - 原型模式(Prototype)

SQL語法

一、DDL(資料定義語言)

1~8 操作資料庫

1.建立資料庫

  • create database 資料庫名;
  • create database 資料庫名 character set 字符集;

2.切換資料庫

  • use 資料庫名;

3.檢視當前使用的資料庫

  • select database();

4.檢視mysql全部資料庫

  • show database;

5.檢視資料庫定義資訊

  • show create database 資料庫名;

6. 修改資料庫字符集

  • alter database 資料庫名 character set 字符集;

7. 刪除資料庫

  • drop database 資料庫名;

8.建立表

  • create table 表名(
    欄位名稱1 欄位型別(長度),
    欄位名稱2 欄位型別
    );
  • crate table 新表名 like 舊錶名; 複製表結構

9. 查看錶結構

  • desc 表名;

10.檢視當前資料庫中有那些資料表

  • show table;

11.查看錶的建表語句

  • show create table 表名;

12.刪除資料表

  • drop table 表名;
  • drop table if exists 表名; 判斷表是否存在再刪除

13.修改表名

  • rename table 舊錶名 to 新表名;

14.新增列

  • alter table 表名 +++++++++++

二、DML(資料操縱語言)

三、DQL(資料查詢語言)

四、DCL(資料空竹語言)

五、其他

1.註釋

# 一行註釋
-- 一行註釋
/* 多行註釋多行*/

2.常用資料型別

  • int 整型
  • dauble 浮點型
  • varchar 字串型
  • date 日期型別
  • char 固定字串長度