SQL學習筆記

2021-08-21 13:32:21 字數 1188 閱讀 5963

因工作需要,學習了一些sql知識,以下為學習筆記。

sql 是用於訪問和處理資料庫的標準的計算機語言。

sql指結構化查詢語言,全稱是 structured query language。sql 是一種 ansi(american national standards institute 美國國家標準化組織)標準的計算機語言。

sql 能做什麼?

一些重要的 sql 命令:

select

select * from table_name;

select column_name1,column_name2

from table_name;

where

select id, time

from table_name

where trunc(time,'dd') >= date'2018-01-01'

and id <> 007

;select id, time

from table_name

where trunc(time,'dd') >= date'2018-01-01'

and id between 1 to 99

;

where 子句中的運算子

下面的運算子可以在 where 子句中使用:

運算子描述=等於

<>

不等於。

注釋:在 sql 的一些版本中,該操作符可被寫成 !=

>

大於<

小於》=

大於等於

<=

小於等於

between

在某個範圍內

like

搜尋某種模式

in指定針對某個列的多個可能值

order by

select id, time

from table_name

order by time desc

;

group by

select date,sum(*)

from ***xx

group by date

參考

SQL 學習筆記 ( )

sql 語法特點 1 每個語句以 結束,中間用 包含,間隔。2 對變數和常量等需要用 包含。3 關鍵字大寫,變數名首大寫字母用表名表徵,然後用小寫表徵屬性 基本語句 desc 表名 檢視表詳細屬性 建表 create table 表名 屬性名 型別 約束 主鍵 primary key 如果是域為主鍵...

sql學習筆記

declare rc int declare stattime datetime declare endtime datetime select stattime 2008 06 22 00 00 00.000 select endtime 2008 06 22 01 00 00.000 while...

SQL學習筆記

一 資料庫的建立與刪除 create database demo drop database demo 二 表的定義與更改 1 表的定義 建立乙個學生情況表student create table student st class char 8 st no char 10 not null,st n...