ORACLE基本SQL語句-添加更新資料函數篇

來源:互聯網
上載者:User

標籤:style   blog   http   color   資料   2014   ar   log   

一、添加資料

/*添加資料*/
insert into STU values(‘stu0004‘,‘趙一‘,18,1,"kc0004");
insert into STU(STU_ID,STU_NAME,STU_AGE,STU_SET ) values(‘stu0013‘,‘儲十一‘,19,1);

說明:如果不指定將資料添加到那個欄位,那麼此時必須列出全部資料,如果列出欄位,則一一對應,必須列出約束不為空白的所有欄位,否則報錯。

二、更新資料

/*更新資料*/
update STU SET STU_AGE=19 WHERE STU_ID=‘stu0001‘

說明:SET後面為你要更新的資料,WHERE後面為條件

三、增加列

/*增加列*/
ALTER TABLE STU ADD KC_NO varchar2(10)

說明:在STU中增加KC_NO列,此處不能設定約束不為空白,除非STU中沒有任何資料

四、函數

/*平均數*/
select AVG(STU_AGE) as 平均數 from stu


/*存在值得行數*/
select COUNT(STU_ID) as 行數 from stu


select COUNT(KC_NO) as 行數 from stu


/*最大值*/
select MAX(STU_AGE) as 最大年齡 from stu


/*最小值*/
select MIN(STU_AGE) as 最小年齡 from stu


/*求和*/
select SUM(STU_AGE) as 和 from stu

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.