增:insert into grade values(3,'english',80); insert into class select stuid,class from grade;(值需匹配)
刪:delete from grade where id=3;
改:update grade set grade=69 where id=1 and class='數學';
查:select * from grade;select id,grade from grade;select distinct id,grade from grade;(選擇不相同的值);select * from grade where not id=1;select * from grade where class='數學' and id=2;select * from grade order by id desc;select * from grade limit 2(選擇前2條);select stu.name,stu.classname,grade.class,grade.grade from stu,grade where stu.stuid=grade.stuid (連表查詢);
建立表:create table 表名(classid int not null,class varchar(20),xuefen int);
修改表:alter table grade add hah varchar(20);alter table grade drop hah ;alter table grade modify grade varchar(20);
刪除表:drop table class;
刪除表中的資料:truncate table table_name
建立資料庫:create database
刪除資料庫:drop database
建立索引:create index
刪除索引:alter table table_name drop index index_name
SQL學習筆記 基礎SQL語句
andornot 邏輯運算子 order by 排序 基本修改語句 每一句結尾都有 所以注意換行,來增加可讀性。大小寫不敏感。命令一般全大寫,便於區分。當遇到差異的時候,以mysql為基礎進行筆記整理 選擇資料庫 use name 設定字符集 set names 字元編碼方式 select colu...
SQL學習筆記 基礎SQL語句
目錄and or not 邏輯運算子 order by 排序 基本修改語句 每一句結尾都有 所以注意換行,來增加可讀性。大小寫不敏感。命令一般全大寫,便於區分。當遇到差異的時候,以mysql為基礎進行筆記整理 選擇資料庫 use name 設定字符集 set names 字元編碼方式 select ...
SQL語句學習筆記 1
1.選擇語句和條件子句 select column name from tabel name where not condition and condition or condition 合理使用 and or not 來定義條件 2.字段排序 select column name from tab...