熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> SQL Server >> 正文

關於SQL Server語法一些參考和應用

2022-06-13   來源: SQL Server 

  資料定義 ddl(data definition language)
  資料定語言是指對資料的格式和形態下定義的語言他是每個資料庫要建立時候時首先要面對的舉凡資料分哪些表格關系表格內的有什麽欄位主鍵表格和表格之間互相參考的關系等等都是在開始的時候所必須規劃好的
  
  1建表格
  create table table_name(
  column datatype [not null] [not null primary key]
  column datatype [not null]
  
  說明 
  datatype 是資料的格式詳見表
  nut null 可不可以允許資料有空的(尚未有資料填入)
  primary key 是本表的主鍵
  
  2更改表格 
  alter table table_name
  add column column_name datatype
  說明增加一個欄位(沒有刪除某個欄位的語法
  alter table table_name
  add primary key (column_name)
  說明更改表得的定義把某個欄位設為主鍵
  alter table table_name
  drop primary key (column_name)
  說明把主鍵的定義刪除
  
  3建立索引 
  create index index_name on table_name (column_name)
  說明對某個表格的欄位建立索引以增加查詢時的速度
  
  4刪除 
  drop table_name
  drop index_name
  
  的資料形態 datatypes
  smallint
   位元的整數
  interger
   位元的整數
  decimal(ps)
  p 精確值和 s 大小的十進位整數精確值p是指全部有幾個數(digits)大小值s是指小數
  點後有幾位數如果沒有特別指定則系統會設為 p=; s=
  float
  位元的實數
  double
  位元的實數
  char(n)
  n 長度的字串n不能超過
  varchar(n)
  長度不固定且其最大長度為 n 的字串n不能超過
  graphic(n)
  和 char(n) 一樣不過其單位是兩個字元 doublebytes n不能超過這個形態是為
  了支援兩個字元長度的字體例如中文字
  vargraphic(n)
  可變長度且其最大長度為 n 的雙字元字串n不能超過
  date
  包含了 年份月份日期
  time
  包含了 小時分鐘
  timestamp
  包含了 年千分之一秒
  
  資料操作 dml (data manipulation language)
  資料定義好之後接下來的就是資料的操作資料的操作不外乎增加資料(insert)查詢資料(query)更改資料(update) 刪除資料(delete)四種模式以下分 別介紹他們的語法
  
  1增加資料
  insert into table_name (columncolumn)
  values ( valuevalue )
  說明
  若沒有指定column 系統則會按表格內的欄位順序填入資料
  欄位的資料形態和所填入的資料必須吻合
  table_name 也可以是景觀 view_name
  
  insert into table_name (columncolumn)
  select columnxcolumny from another_table
  說明也可以經過一個子查詢(subquery)把別的表格的資料填入
  
  2查詢資料
  基本查詢
  select columncolumns
  from table_name
  說明把table_name 的特定欄位資料全部列出來
  select *
  from table_name
  where column = xxx
  [and column > yyy] [or column <> zzz]
  說明
  *表示全部的欄位都列出來
  where 之後是接條件式把符合條件的資料列出來
  
  select columncolumn
  from table_name
  order by column [desc]
  說明order by 是指定以某個欄位做排序[desc]是指從大到小排列若沒有指明則是從小到大
  排列
  
  組合查詢
  組合查詢是指所查詢得資料來源並不只有單一的表格而是聯合一個以上的
  表格才能夠得到結果的
  select *
  from tabletable
  where lum=lumn
  說明
  查詢兩個表格中其中 column 值相同的資料
  當然兩個表格相互比較的欄位其資料形態必須相同
  一個復雜的查詢其動用到的表格可能會很多個
  
  整合性的查詢
  select count (*)
  from table_name
  where column_name = xxx
  說明
  查詢符合條件的資料共有幾筆
  select sum(column)
  from table_name
  說明
  計算出總和所選的欄位必須是可數的數字形態
  除此以外還有 avg() 是計算平均max()min()計算最大最小值的整合性查詢
  select columnavg(column)
  from table_name
  group by column
  having avg(column) > xxx
  說明
  group by: 以column 為一組計算 column 的平均值必須和 avgsum等整合性查詢的關鍵字
  一起使用
  having : 必須和 group by 一起使用作為整合性的限制
  
  復合性的查詢
  select *
  from table_name
  where exists (
  select *
  from table_name
  where conditions )
  說明
  where 的 conditions 可以是另外一個的 query
  exists 在此是指存在與否
  select *
  from table_name
  where column in (
  select column
  from table_name
  where conditions )
  說明 
   in 後面接的是一個集合表示column 存在集合裡面
   select 出來的資料形態必須符合 column
  
  其他查詢
  select *
  from table_name
  where column like x%
  說明like 必須和後面的x% 相呼應表示以 x為開頭的字串
  select *
  from table_name
  where column in (xxxyyy)
  說明in 後面接的是一個集合表示column 存在集合裡面
  select *
  from table_name
  where column between xx and yy
  說明between 表示 column 的值介於 xx 和 yy 之間
  
  3更改資料
  update table_name
  set column=xxx
  where conditoins
  說明
  更改某個欄位設定其值為xxx
  nditions 是所要符合的條件若沒有 where 則整個 table 的那個欄位都會全部被更改
  
  4刪除資料
  delete from table_name
  where conditions
  說明刪除符合條件的資料
  
  說明關於where條件後面如果包含有日期的比較不同數據庫有不同的表達式具體如下
  ()如果是access數據庫則為where mydate>##
  ()如果是oracle數據庫則為where mydate>cast( as date)
  或where mydate>to_date(yyyymmdd)
  在delphi中寫成
  thedate=;
  querysqladd(select * from abc where mydate>cast(++thedate++ as date));
  
  如果比較日期時間型則為
  where mydatetime>to_date( ::yyyymmdd hh:mi:ss)
From:http://tw.wingwit.com/Article/program/SQLServer/201311/22091.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.