01 SQL核心語句

2021-06-23 07:05:00 字數 1303 閱讀 5250

在 sqlplus 中可以使用 ; 或 / 來執行一條 sql 語句, 但是 / 必須要換行, 個人感覺只有那些指令碼啊什麼的最後一般使用 / , 其他的都使用;

核心語句

select

insert

直接介紹多表插入

1:  insert all
2:  

when sum_orders < 10000 then

3:  

into small_customers

4:  

when sum_orders >= 10000 and sum_orders < 100000 then

5:  

into medium_customers

6:  

else

7:  

into large_customers

8:  

select customer_id, sum(order_total) sum_orders

9:  

from oe.orders

10:  

group

by customer_id;

11:
12:  

-- 注意上例是仿照

13:  insert into scott.bonus(ename, job, sal)
14:  

select ename, job, sal from scott.emp;

update

1:  

update employees2

2:  

set (salary, first_name) = ( select salary * 10, last_name

3:  

from employees

4:  

where employees.employee_id = employees2.employee_id)

5:  

where department_id = 90;

delete

1:  

delete

from (select * from employees2 where department_id = 90);

merge

SQL 核心語句

articlecontent1 lblcontent 插入資料 向表中新增乙個新記錄,你要使用sql insert 語句。這裡有乙個如何使用這種語句的例子 insert mytable mycolumn values some data 這個語句把字串 some data 插入表mytable的my...

SQL語句教程 01 SELECT

sql語句教程 01 select sql語句教程 01 select 是用來做什麼的呢?乙個最常用的方式是將資料從資料庫中的 內選出。從這一句回答中,我們馬上可 以看到兩個關鍵字 從 from 資料庫中的 內選出 select 是乙個資料庫內的結構,它的 目的是儲存資料。在 處理這一部分中,我們會...

oracle資料庫sql語句01

查詢所有使用者 select username,account status from dba users 查詢表資訊 sql desc scott.emp 名稱 是否為空?型別 empno not null number 4 ename varchar2 10 job varchar2 9 mgr...