oracle基本使用 4 表的資料的查詢

2021-09-30 20:37:25 字數 1150 閱讀 5231

我們通過前面幾篇文章熟悉了表的建立修改刪除、表的資料的新增修改刪除,本文將著重闡述如何進行表中資料的查詢。

# 在windows命令列下連線scott

sqlplus scott/tiger

# 以emp表為基礎,拷貝乙份完全一樣的表【表結構和表資料都一樣】

create table t_emp as select * from emp;

# 檢視一下表的屬性

desc t_emp;

# 查詢出t_emp表的所有記錄

select * from t_emp ;

# 查詢出t_emp表的empno,ename

select empno,ename from t_emp ;

# 查詢出t_emp表的empno,ename並起乙個別名

select empno 雇員編號, ename 雇員姓名 from t_emp ;

# 查詢出t_emp 中雇員id為7369和7788的員工資訊

select * from t_emp where empno=7369 or empno=7788;

或者select * from t_emp where empno in (7369, 7788);

或者select * from t_emp where empno= any(7369, 7788);

# 查詢工資大於3000的員工資訊

select * from t_emp where sal>=3000;

# 查詢工資介於3000 到4000之間的員工資訊

select * from t_emp where sal>=3000 and sal <=5000;

或者select * from t_emp where sal between 3000 and 5000;

# 查詢公司不等於5000的員工資訊

select * from t_emp where sal!=5000;

或者select * from t_emp where sal<>5000;

或者select * from t_emp where sal not in (5000);

或者select * from t_emp where sal != all(5000);

以上就是表中資料的查詢。

4 資料表基本操作

普通建立表 create table table name field name field type field option 需先進入某資料庫,表預設建立在當前所在的資料庫 表的option有engine,charset,collate三種,預設engine為innodb 從已存在的表複製 只複...

Oracle的基本使用

三 oracle的基本使用 1 在oracle中表 檢視 儲存過程等稱之為資料物件 2 sys system scott登入進去看到的資料物件時不一致的 3 啟動oracleservice例項和oralceorahome90tnslistener兩個服務 4 只有啟動oracleorahome90t...

Oracle的基本使用

1.新建資料表 語法 create table 表名 欄位1 資料型別,欄位2 資料型別,tablespace 表空間 create table student student id number notnull student name varchar2 20 student age number...