【Oracle 学习笔记】Day 1 常用函数整理(转换、DeCode),表的外键
生活随笔
收集整理的這篇文章主要介紹了
【Oracle 学习笔记】Day 1 常用函数整理(转换、DeCode),表的外键
小編覺得挺不錯的,現(xiàn)在分享給大家,幫大家做個參考.
select Convert(varchar,Convert(money,TaxExValue),1) from A--Result
2,794.87
58,119.66
1,367.52
對于SQL Server來說,進(jìn)行金額的轉(zhuǎn)換,可以按照上面的操作那樣,會自動將金額處理為兩位小數(shù),并用逗號分隔小數(shù)點前面的數(shù)字。
當(dāng)然可以用字符串拼接的方式,將金額符號加上去。
對于項目中,客戶需要將金額轉(zhuǎn)換的時候,這樣處理顯示出來的效果會好一些。
一下是用ORACLE的顯示結(jié)果。
Select to_char(hisal,'L9,999') as Value from SALGRADE--result¥1,200¥1,400¥2,000¥3,000¥9,999?
?
?
--Decode()函數(shù)
//SQL Server 下,用case 實現(xiàn)
select case '2' when '1' then '內(nèi)容1' when '2' then '內(nèi)容2' when '3' then '內(nèi)容3' End Union all select case '4' when '1' then '內(nèi)容1' when '2' then '內(nèi)容2' when '3' then '內(nèi)容3' End --Result 內(nèi)容2 NULL//Oracle 下,Decode和Case都可以
select Decode('2','1','內(nèi)容1','2','內(nèi)容2','3','內(nèi)容3') from dual Union all select case '2' when '1' then '內(nèi)容1' when '2' then '內(nèi)容2' when '3' then '內(nèi)容3' End from dual Union all select Decode('4','1','內(nèi)容1','2','內(nèi)容2','3','內(nèi)容3') from dual Union all select case '4' when '1' then '內(nèi)容1' when '2' then '內(nèi)容2' when '3' then '內(nèi)容3' End from dual;--Result 內(nèi)容2 內(nèi)容2Oracle后面兩個SQL執(zhí)行出來的結(jié)果不是NULL而是''
?
外鍵約束。
刪除時同時刪除子表數(shù)據(jù)
Oracle測試用例 1 ORACLE 的測試用例 2 1 drop table Materials 3 2 / 4 3 Create table Materials 5 4 ( 6 5 MaterialID varchar2(30), 7 6 MaterialCode varchar2(255), 8 7 MaterialName varchar2(255), 9 8 Specs varchar2(255), 10 9 UnitID varchar2(30), 11 10 constraint PK_Materials primary key (MaterialID) 12 11 ) 13 12 / 14 13 drop table MaterialComLinks 15 14 / 16 15 Create table MaterialComLinks 17 16 ( 18 17 CompanyID varchar2(30), 19 18 MaterialID varchar2(30), 20 19 IMUnitID varchar2(30), 21 20 PUUnitID varchar2(30), 22 21 constraint PK_MaterialComLinks primary key (CompanyID,MaterialID), 23 22 constraint fk_MaterialComLinks foreign key (MaterialID) references Materials(Materialid) on delete cascade 24 23 ) 25 24 / 26 25 27 26 Insert into Materials (MaterialID,MateiralCode,MaterialName,Specs,UnitID) 28 27 values('0001','010101','測試物料1','規(guī)格型號','計量單位') 29 28 / 30 29 Insert into Materials (MaterialID,MateiralCode,MaterialName,Specs,UnitID) 31 30 values('0002','010102','測試物料2','規(guī)格型號2','計量單位2') 32 31 / 33 32 Insert into MaterialComlinks (CompanyID,MaterialID,IMUnitID,PUUnitID) 34 33 values('01','0001','庫存計量單位1','采購計量單位1') 35 34 / 36 35 Insert into MaterialComlinks (CompanyID,MaterialID,IMUnitID,PUUnitID) 37 36 values('01','0002','庫存計量單位2','采購計量單位2') 38 37 / 39 38 Insert into MaterialComlinks (CompanyID,MaterialID,IMUnitID,PUUnitID) 40 39 values('02','0002','庫存計量單位3','采購計量單位3')上兩個建表語句分別為創(chuàng)建
集團(tuán)物料字典表,和公司物料表。
并預(yù)制了集團(tuán)物料兩條數(shù)據(jù)和公司物料兩條數(shù)據(jù)
結(jié)果 select * from Materials ; Select * from MaterialComlinks--Result1 0001 010101 測試物料1 規(guī)格型號 計量單位 0002 010102 測試物料2 規(guī)格型號2 計量單位2 --Result2 01 0001 庫存計量單位1 采購計量單位1 01 0002 庫存計量單位2 采購計量單位2 02 0002 庫存計量單位3 采購計量單位3當(dāng)在集團(tuán)物料中刪除對應(yīng)物料信息時,自動刪除公司物料下的對應(yīng)數(shù)據(jù)。
View Code delete from Materials where MaterialID='0001'select * from Materialcomlinks --Reuslt 01 0002 庫存計量單位2 采購計量單位2 02 0002 庫存計量單位3 采購計量單位3?
轉(zhuǎn)載于:https://www.cnblogs.com/Xuhaiyang/archive/2012/04/25/2470212.html
總結(jié)
以上是生活随笔為你收集整理的【Oracle 学习笔记】Day 1 常用函数整理(转换、DeCode),表的外键的全部內(nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 浙江一水库发现大量桃花水母:被称为“活化
- 下一篇: 三星980 PRO散热片版扩容PS5!玩