1、創(chuàng)建表
create table IT_EMPLOYEES
(
ENPLOYEES_ID NUMBER(6) NOT NULL UNIQUE,
FIRST_NAME VARCHAR2(20),
LAST_NAME VARCHAR2(25) NOT NULL,
EMAIL VARCHAR2(25),
PHONE_NUMBER VARCHAR2(20),
JOB_ID VARCHAR2(10),
SALARY NUMBER(8,2),
MANAGER_ID NUMBER(6)
);
2、--創(chuàng)建索引,創(chuàng)建之后,是按照LAST_NAME的值升序存放,it_lastname為索引名
create [unique] [ cluster ] index 索引名 on 表名(字段名);
unique:索引值不能重復(fù)。
cluster:建立的索引是聚簇索引。
create index it_lastname on it_employees(last_name);
3、刪除表
當(dāng)某個(gè)基表不再不需要時(shí),刪除語句
drop table 表名;
刪除視圖
drop view 視圖名;
刪除索引
drop index 索引名;
3、向表中插入數(shù)據(jù)
insert into IT_EMPLOYEES values (1,'liu','bei','qq@qq.com',110,001,100000,1)
4、向表中某幾個(gè)字段插入數(shù)據(jù)
5、insert into IT_EMPLOYEES (ENPLOYEES_ID,LAST_NAME) VALUES (3,'ANAN')
6、alter table it_employees add age int; --增加age字段,類型為int
7、alter table it_employees drop column age; --刪除age這個(gè)字段
8、order by 分類
select * from it_employees where salary >= 100000 order by salary; -- 按工資進(jìn)行排列 默認(rèn)的升序,由低到高。 降序?yàn)樵诤蠓郊由蟙esc,即:
select * from it_employees where salary >= 100000 order by salary desc;
9、group by 對(duì)記錄進(jìn)行分組
select job_id ,avg(salary),sum(salary),max(salary),count(job_id) from it_employees group by job_id;
洛寧ssl適用于網(wǎng)站、小程序/APP、API接口等需要進(jìn)行數(shù)據(jù)傳輸應(yīng)用場(chǎng)景,ssl證書未來市場(chǎng)廣闊!成為創(chuàng)新互聯(lián)建站的ssl證書銷售渠道,可以享受市場(chǎng)價(jià)格4-6折優(yōu)惠!如果有意向歡迎電話聯(lián)系或者加微信:18980820575(備注:SSL證書合作)期待與您的合作!