1. 程式人生 > >SQL基礎學習(一)

SQL基礎學習(一)

一.SQL的定義:

      SQL指結構化查詢語言,讓我們可以對資料庫進行訪問,市一中ANSI的標準計算機語言。

二.SQL的語句簡析:

    1.查詢語句:

         select 列名稱 from 表名稱 (查詢某一列資料)

         select * from 表名稱 (查詢表的所有內容)

     2.去除重複值:select distinct  列名稱 from 表名稱 

select distinct  Name from Persons;

     3.查詢條件:  

      select 列名稱 from 表名稱 where 列  運算子  值 (select * from Persons where City= ‘beijng’;)

select * from Persons where City= 'beijng';

     4.and 和 or 運算子的運用

      and 和 or 可在where 子語句中那兩個或多個條件結合起來。

select * from Persons where FirstName = '李' and LastName = '明';
select * from Persons where (FirstName='Thomas' or FirstName='William') and LastName='Carter';

   5.order by語句

     order by 語句用於根據指定列對結果集進行排序,order by 預設按照升序對記錄進行排序,降序使用 desc 關鍵字

select Company, OrderNumber from Orders order by  Company desc;

   6.插入語句

    insert into 語句用於向表格中插入新的行。

INSERT INTO 表名稱 VALUES (值1, 值2,....)

  指定所要插入資料的列:

INSERT INTO table_name (列1, 列2,...) VALUES (值1, 值2,....)

   7.更新語句

   update用於修改表中的資料

    update 表名稱  set 列名稱  = 新值 where 列名稱 = 某值

update 
Person set Address = 'Zhongshan 23', City = 'Nanjing' where LastName = 'Wilson'

   8.刪除資料

   delete 語句用於刪除表中的行

   delete from 表名稱 where 列名稱 = 值

delete from Person where LastName = 'Wilson';