Thông tin tài khoản
MB: STK: 0650102744009 – Chủ TK: PHI HONG THAI, chi nhánh MB Hai Bà Trưng. Số thẻ: 9704222090144130 VCB: STK 0011003725535 – Chủ TK PHI HONG THAI, chi nhánh Trung Hòa Số thẻ: 9704336804688308015 97043668 04688308 015 SHB thì chỉ có số thẻ: 9704431054451015 Lưu lại thi thoảng có nhà hảo tâm chuyển tiền ủng hộ … Read more
Thông tin tài khoản
MB: STK: 0650102744009 – Chủ TK: PHI HONG THAI, chi nhánh MB Hai Bà Trưng. Số thẻ: 9704222090144130 VCB: STK 0011003725535 – Chủ TK PHI HONG THAI, chi nhánh Trung Hòa Số thẻ: 9704336804688308015 97043668 04688308 015 SHB thì chỉ có số thẻ: 9704431054451015 Lưu lại thi thoảng có nhà hảo tâm chuyển tiền ủng hộ … Read more
Array in oracle
DECLARE type namesarray IS VARRAY(5) OF VARCHAR2(10); type grades IS VARRAY(5) OF INTEGER; names namesarray; marks grades; total integer; BEGIN names := namesarray(‘Kavita’, ‘Pritam’, ‘Ayan’, ‘Rishav’, ‘Aziz’); marks:= grades(98, 97, 78, 87, 92); total := names.count; dbms_output.put_line(‘Total ‘|| total || ‘ Students’); FOR i in 1 .. total LOOP dbms_output.put_line(‘Student: ‘ || names(i) || ‘ … Read more
Tách chuỗi thành mảng trong oracle
/* Formatted on 3/4/2015 12:32:08 AM (QP5 v5.126) */ DECLARE l_input VARCHAR2 (4000) := ‘1,2,3’; l_count BINARY_INTEGER; l_array DBMS_UTILITY.lname_array; BEGIN SELECT param_value INTO l_input FROM item_param_detail WHERE param_value LIKE ‘TO%,%’; DBMS_UTILITY.comma_to_table ( list => REGEXP_REPLACE (l_input, ‘(^|,)’, ‘\1x’), tablen => l_count, tab => l_array); DBMS_OUTPUT.put_line (l_count); FOR i IN 1 .. l_count LOOP DBMS_OUTPUT.put_line( ‘Element … Read more
Protected: Sếp
There is no excerpt because this is a protected post.