Emp_id, sal, age, exp
1 2 21 9
2 2 21 9
3 2 22 9
4 2 33 9
5 2 33 10
select sum(sal) from emp_table where age in (21,22,33,...);
Need to add some condition
for age 21 No condition
for age 22 No condition
for age 33 exp > 10;
所需的輸出:SUM(SAL):8 我怎麼能在Oracle中實現這一單查詢的Oralce凡克勞斯在查詢
添加一些示例表數據和預期結果。 (如格式化文本,而不是圖像) – jarlh
爲什麼IN如此重要? – jarlh
年齡參數是動態的,這就是爲什麼 –