第2章 SQL基礎

2021-08-08 21:23:23 字數 1108 閱讀 6091

ddl

建立資料庫:create

database test1;

顯示資料庫:show databases;

選擇資料庫: use test1;

刪除資料庫: drop

database test1;

建立表:

create

table table_name(

-> column_name column_type constrains,

-> ...

-> );

檢視表的定義: desc tablename; 或者 show columns from table_name;

檢視建立表的sql語句: show

create

table table_name \g;

\g : 按欄位豎向排列

刪除表: drop

table table_name;

修改表: alter

table table_name modify [column] column_definition [first | after] col_name;

修改(modify)字段定義: alter

table emp modify column ename varchar(20);

增加(add)字段: alter

table emp add

column age int(3); 預設加在表的最後

刪除(drop)字段: alter

table emp drop

column age;

字段(change)改名: alter

table emp change age age1 int(4); change可以改變欄位名稱,modify不行

字段位置修改: alter

table emp add birth date

after ename;

放在最前面 : alter

table emp modify age1 int(3) first;

更改表名(rename): alter

table emp rename emp1;

第2章 查詢基礎 SQL基礎教程

select 列名 from 表名 select product id,product name,purchase price from product 查詢多列時,需要使用逗號進行分隔。查詢結果中列的順序和select 子句中的順序相同查詢全部的列 select from 表名 select fr...

AJAX基礎 第2章( )

從第2章例2 2開始 html 基礎 iframe標記,又叫浮動幀標記,你可以用它將乙個html文件嵌入在乙個html中顯示。在指令碼語言與物件層次中,包含iframe的視窗我們稱之為父窗體,而浮動幀則稱為子窗體。iframe標記的使用格式是 src 檔案的路徑,既可是html檔案,也可以是文字 a...

第2章 Python基礎入門

slist str list input 請輸入數列 for i in str list print slist n len slist for i in range n 1 倒敘遍歷,從n開始一步步把最大值冒泡到最後一位 for j in range i if slist j slist j 1 ...