select a.报到时间,a.姓名,sum(a.标准价格) as 标准价格,sum(a.体检价格) As 体检价格 ,sum(实收金额) from ( select to_char(a.报到时间,yyyy-mm-dd) as 报到时间,a.姓名,a.性别,a.年龄,b.健康号,l.名称,sum(nvl(Decode(Y.是否变价,1,时价,Z.基本价格),0)) as 标准…
1. 基本类型
// 1. boolean 类型
let isOff true
let isOn false// 2. 数字类型
let a: number 2// 3. 字符串类型
let aStr:string "hello"// 4. 俩种数组类型
let arr1:number[] [1, 3, 5]
let arr2: Array<string> ["hel…