Temel Oracle Fonksiyonları
Oracle'da en çok kullanacağınız temel oracle fonksiyonlarını aşağıda açıkl ama ve örnekleri ile bulabilrsiniz. Umarım işinize yarar; PLSQL Numeric Functions ROUND(N , x) : Return the number N rounded to x decimal places. If x <0 it rounds N to x places to the left. Example: ROUND(1234.468,2) returns 1234.5 ROUND(1234.468,-2) returns 1200 Example: TRUNC(123.456,2) returns 123.45 TRUNC(123.456,-2) returns 100 Example: SIGN(-234) returns -1 SIGN(452) returns 1 Example: ABS(-541) returns 541. Example: MOD(10,4) returns 2. MOD(5,2) returns 1 Example: CEIL(123.456) returns 124. CEIL(-123.456) returns -123 Example: FLOOR (123.456) returns 123. FLOOR (-123.456) returns -124 TRUNC(N , x): Return the number with the ...