sql server 入門語句總結_MsSql

來源:互聯網
上載者:User

對於資料庫來說多多少少要掌握一點,首先基本的SQL語句要瞭解。下面來總結一些入門層級的SQL語句。

create相關

•show database; 顯示出現有的資料庫
•use database_x; 現在要使用資料庫database_x
•create table coffee (id int(5) not null,coffee_name varchar(25)); 建立一張表,包含id和coffee_name兩個欄位
•alter table coffee add taste varchar(10); 增加新的一列
•insert into coffee (id,coffee_name,taste,rank) value ("1","BlueMountain",“well”,“5”); 插入資料
•show columns from coffee; 查看錶結構
•show create table coffee; 查看錶資訊,包括建表語句
•alter table student rename ss; 改變表名
•alter table ss drop mark; 刪除表ss中mark列
select語句

•select * from coffee where id="1"; 查詢出id=1的所有資訊
•select coffee_name from coffee where id="2"; 查詢出id=2的coffee name
•select * from club where id between "1" and "3"; 查詢出id=1到3的條目
•select * from club where id="1" or id="3"; 查詢出id=1和id=3這兩個條目
•select club_name from club where mark>50; 查詢出mark大於50的club
•select club_name from club where mark not between  48 and 50; 查詢mark不在48與50之間的club
•select * from club where id in("1","3","4"); 查詢id=1,3,4的條目
•select * from club where id not in("1","3","4");
•select * from club where name like "M%r"; 萬用字元%表示任意長度的字元(可以是0,漢字為兩個字元)
•select * from club where name like "M_r"; _表示單個字元
•select * from club where id in("1","3","4") and mark>50; 多重查詢
•select * from club order by mark desc; 按照mark降序排列(desc:降序,usc:升序)
數量查詢相關

•select count(*) from club; 查詢club中有多少條記錄
•select count(distinct mark) from club; 不同分數的有多少條記錄
•select sum(mark) from club; 積分總和
•select avg(mark) from club; 平均積分
•select max(mark) from club; 最高積分
•select min(mark) from club; 最低積分
update語句

•update club set mark=mark-8 where id="1"; id=1的俱樂部積分罰8分
delete語句

•delete from club where id="001"; 刪除id=001的俱樂部資訊
以上語句都是SQL語句增刪改查最基本的部分,屬於入門層級,一定要掌握。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.