±±¾©¿ÆÀ¶ PL/SQL ±à³ÌÃþµ×¿¼ÊÔ£¨¶þ£©
ÈÕÆÚ(date)£º
2010Äê11ÔÂ1ÈÕ, (Nov. 1, 2010)
¿¼ÉúÐÕÃû(Last Name, First Name)£º»ÆÐ˳¬
ÊÔÌâÒ»£ºÔÚ±¨±íÖÐÔö¼ÓÃèÊö¡£
Exam 1. Add description for insurance IDs on the report
ÔÚPatient ±íÖдæÓв¡È˵ÄID£¬ºÍËûËù¹ºÂòµÄ±£ÏÕµÄID£¨´úºÅ£© ÔÚInsurance ±íÖдæÓб£ÏÕµÄID£¨´úºÅ£©¼°ÆäÃèÊö£¨description£© Patient table: Patient ID and Insurance ID (Ins_ID_1, Ins_ID_2, Ins_ID_3) Insurance table: Insurance ID and their description.
Patient
Pat_ID Ins_ID_1 Ins_ID_2 Ins_ID_3
1 5
2 8
3 4 12
4 11
5 10 7 1
6 5 7
7 3 7 2
8 4 9 5
9 3
10 1
Insurance Ins_ID Description 1 Medicare 2 Blue Cross 3 OXFORD 4 1st Health Ins 5 United Healthcare 6 Travellers 7 Medicaid 8 Capital Healthplan 9 MVP Healthcare 10 Harvard Healthplan
ÓÃJoinµÄ·½Ê½À´²úÉúÈçϵı¨±í£¬Ã¿¸öIns IDºóÃæ¼ÓÉÏÏàÓ¦µÄÃèÊö¡£ÈçInsID²»ÄÜÔÚInsurance ±íÖз¢ÏÖ£¬¼´Óÿոñ±íʾ£º£¨ÈçID 11 ºÍ12£©
Use ¡°Join¡± to generate a report, each insurance ID followed by its description, if the insurance ID not in insurance table , leave blank.
Pat_ID InsID1 Desc-1 1 5 United Healthcare 2 8 Capital Healthplan 3 4 1st Health Ins 4 11 5 10 Harvard Healthplan 6 5 United Healthcare 7 3 OXFORD 8 4 1st Health Ins 9 3 OXFORD 10 1 Medicare
InsID2 12 7 7 7 9 Desc-2 InsID3 Desc-3 Medicaid 1 Medicare Medicaid Medicaid 2 Blue Cross MVP Healthcare 5 United Healthcare ÊÔÌâ¶þ£º Êý¾Ý¸üУ¬±»¸üеıíÊÇA£¬ ¶øÊý¾ÝÀ´×ÔB±í Table A will be updated with the data from table B
A ID 1 2 3 4 5 6 Sum
ID 1 1 1 2 4 4 B Amount 100 200 320 230 246 212 Table A and Table B are linked by ID. ID is a primary key of Table A and foreign key of Table B.
Please summrize the amount column in Table B by ID, then update the Sum column in Table A by ID.
Please do not use cursor or sub-query, use Join
Hint: create a view to join those 2 tables, then update the sum column in the view. The table behind the view will be automatically updated.
±íAºÍ±íBÊÇÓÃIDÀ´¹ØÁªµÄ¡£IDÊÇAµÄÖ÷¼ü£¬BµÄÍâ¼ü
Çë°ÑBÖеÄAmount°´IDÀÛ¼ÓÆðÀ´£¬È»ºó·Åµ½AµÄSum×Ö¶ÎÀï¡£ Çë²»ÒªÓÃCursor£¬Ò²²»ÓÃSub-Query£¬ÓÃJoinÀ´×ö Ìáʾ£º
´´½¨Ò»¸öÊÓͼ°Ñ2¸ötable Join ÆðÀ´£¬È»ºóÓÃUpdate À´¸üÐÂÊÓͼÖеÄSum×ֶΣ¬ÕâÑùÊÓͼ±³ºóµÄTableÒ²×Ô¶¯±»¸üÐÂÁË¡£
ÊÔÌâÈý£º ɾȥÖظ´µÄ¼Ç¼ Exam 3. Remove redundant rows
Account Acct_No Type 10001 Savings 10002 Savings 10003 Savings 10004 Savings 10005 Savings 10002 Savings 10002 Savings 10005 Savings 60001 Checking 60002 Checking There are some duplicated records in this table. Please find all the duplicated rows and delete the redundant rows
For example: 10002 need to be removed 2 rows and 10005 1 row.
ÔÚÉÏÊö±íÖУ¬10002Öظ´ÁË3´Î£¬10005Öظ´ÁË2´Î¡£ ÇëÕÒ³öËùÓеÄÖظ´¼Ç¼£¬²¢°Ñ¶àÓàµÄ¼Ç¼ɾȥ¡£ ÀýÈ磺10002ÐèҪɾȥ2Ìõ£¬10005ÐèҪɾȥ1Ìõ¡£
ÊÔÌâËÄ£º Transation Processing
ÈÎÎñ£º´ÓijһÕË»§×ª³öÒ»¶¨µÄ½ð¶îµ½ÁíÒ»¸öÕË»§¡£ Task: Transfer money from one account to another ²½Ö裺(steps)
1. È·¶¨×ª³öÕË»§Ã»Óб»Ëø¡£Confirm the transfer from account (debiting account) was not locked 2. È·¶¨×ªÈëÕË»§µÄ´æÔÚ¡£Confirm the existence of transfer to account (crediting account)
3. È·¶¨×ªÈëÕË»§Ã»Óб»Ëø¡£Confirm the transfer to account (crediting account) was not locked.
4. È·¶¨×ª³öÕË»§ÖÐÓÐ×ã¹»Óà¶îÂú×ãתÕË Confirm the debiting account balance can satisfy the transferring
5. È·¶¨×ª³öÕË»§ÔÚתÕ˺óÂú×㶳½á¶îµÄÒªÇóConfirm after trasferring, the debiting account balance can satisfy the holding amount requirement.
6. È·¶¨ÔÚת³öÕË»§Éϳɹ¦µØ¿ÛÈ¥ÁËתÕ˵Ľð¶îConfirm the debiting account was successfully debited 7. È·¶¨ÔÚתÈëÕË»§Éϳɹ¦µØ¼ÓÉÏÁËתÕ˵Ľð¶î Confirm the crediting account was sucessfully credited
ÉÏÊöµÄÈκÎÒ»¸ö²½Öèʧ°Ü£¬¶¼»áµ¼ÖÂTransactionʧ°Ü¡£Óû§Ó¦¸ÃµÃµ½Ò»¸öºÜÇåÎúµÄMessage£¬Ö¸³öÔÚÄĸö²½Öè³öÁËÎÊÌ⣬¶ø²»ÊǼòµ¥µØ¸øÒ»¸öMessage˵£º¡°½»Ò×ʧ°Ü¡±¡£
Any of steps fails will cause the transaction falure. And user will get a very clear message indicating which step causes the failure. Acct ×Ö¶ÎÃû³Æ ÃèÊö Acct_No Õ˺ŠBalance Óà¶î
Table explanation: (±í½âÊÍ)
Acct: °üÀ¨ËùÓеÄÕË»§¼°ÆäÓà¶î, All the accounts and their balance
Locking: °üÀ¨ËùÓеı»Ëø¶¨µÄÕË»§. ÕË»§Ò»µ©Ëø¶¨£¬¾Í²»ÄÜ×öÈκν»Ò×.
Locking
×Ö¶ÎÃû³Æ ÃèÊö
Acct_No Õ˺Å
Type Ëø¶¨ÀàÐÍ
×Ö¶ÎÃû³Æ Acct_No Amount Holding ÃèÊö Õ˺Š¶³½á½ð¶î A list of account number which was locked. Once account locked, no transaction can be performed
Holding: ±»¶³½áµÄÕË»§¼°Æ䶳½áµÄ½ð¶î¡£±»¶³½áµÄÕË»§ÈÔ¿É×ö½»Ò×£¬µ«Òª±£Ö¤½»Ò׺óµÄÓà¶î´óÓÚ¶³½á½ð¶î.
A list of account number which was held and their holding amount. Those account is still able to do the transaction, but need tomake sure, the balance after transaction should be greater than required holding amount.
Create a Stored Procedure£º
Input parameters:
ת³öÕË»§µÄÕ˺ŠAccount number of transfer from (debiting account number)
תÈëÕË»§µÄÕ˺ţ¬Account number of transfer to (crediting account number) תÕ˽ð¶î Amount of transferring.
Return: A Message,
¸æËßÓû§½»Ò׳ɹ¦»òʧ°Ü£¬Èôʧ°Ü¸æËßÓû§Ê§°ÜÔÚÄĸö»·½Ú¡£
Return a message to user, if transaction fails, user need to know which step causes the failure.
½¨±í½Å±¾£ºScripts for creating tables and insert data:
ÊÔÌâÒ»
CREATE TABLE patient (pat_id NUMBER, ins_id_1 NUMBER, ins_id_2 NUMBER, ins_id_3 NUMBER); INSERT INTO patient VALUES(1, 5, NULL, NULL); INSERT INTO patient VALUES(2, 8, NULL, NULL); INSERT INTO patient VALUES(3, 4, 12, NULL); INSERT INTO patient VALUES(4, 11, NULL, NULL); INSERT INTO patient VALUES(5, 10, 7, 1); INSERT INTO patient VALUES(6, 5, 7, NULL); INSERT INTO patient VALUES(7, 3, 7, 2); INSERT INTO patient VALUES(8, 4, 9, 5);
INSERT INTO patient VALUES(9, 3, NULL, NULL); INSERT INTO patient VALUES(10, 1, NULL, NULL);
CREATE TABLE insurance (ins_id NUMBER, description VARCHAR2(20)); INSERT INTO insurance VALUES(1, 'Medicare'); INSERT INTO insurance VALUES(2, 'Blue Cross'); INSERT INTO insurance VALUES(3, 'OXFORD'); INSERT INTO insurance VALUES(4, '1st Health Ins'); INSERT INTO insurance VALUES(5, 'United Healthcare'); INSERT INTO insurance VALUES(6, 'Travellers'); INSERT INTO insurance VALUES(7, 'Medicaid'); INSERT INTO insurance VALUES(8, 'Capital Healthplan'); INSERT INTO insurance VALUES(9, 'MVP Healthcare'); INSERT INTO insurance VALUES(10, 'Harvard Healthplan');
ÊÔÌâ¶þ
CREATE TABLE a(id NUMBER, sum NUMBER); INSERT INTO a VALUES(1, NULL); INSERT INTO a VALUES(2, NULL); INSERT INTO a VALUES(3, NULL); INSERT INTO a VALUES(4, NULL); INSERT INTO a VALUES(5, NULL); INSERT INTO a VALUES(6, NULL);
CREATE TABLE b(id NUMBER, amount NUMBER); INSERT INTO b VALUES(1, 100); INSERT INTO b VALUES(1, 200); INSERT INTO b VALUES(1, 320); INSERT INTO b VALUES(2, 230); INSERT INTO b VALUES(4, 246); INSERT INTO b VALUES(4, 212);
ÊÔÌâÈý
CREATE TABLE account(acct_no NUMBER, type VARCHAR2(10)); INSERT INTO account VALUES(10001, 'Savings'); INSERT INTO account VALUES(10002, 'Savings'); INSERT INTO account VALUES(10003, 'Savings'); INSERT INTO account VALUES(10004, 'Savings');
INSERT INTO account VALUES(10005, 'Savings'); INSERT INTO account VALUES(10002, 'Savings'); INSERT INTO account VALUES(10002, 'Savings'); INSERT INTO account VALUES(10005, 'Savings'); INSERT INTO account VALUES(60001, 'Checking'); INSERT INTO account VALUES(60002, 'Checking');
ÊÔÌâËÄ CREATE TABLE acct(acct_no NUMBER, balance NUMBER); CREATE TABLE locking(acct_no NUMBER, type VARCHAR2(8)); CREATE TABLE holding(acct_no NUMBER, amount NUMBER);
INSERT INTO acct VALUES(10001, 2000); INSERT INTO acct VALUES(10002, 500); INSERT INTO acct VALUES(10003, 1500); INSERT INTO acct VALUES(10004, 300);
INSERT INTO locking VALUES(10004, 'locked');
INSERT INTO holding VALUES(10001, 1000); INSERT INTO holding VALUES(10003, 800);
´ð°¸
ÊÔÌâÒ»
select p.pat_id,p.ins_id_1,I1.Description,P.INS_ID_2,I2.Description,P.INS_ID_3,I3.Description from Patient p,Insurance I1, Insurance I2,Insurance I3 where P.INS_ID_1 = i1.ins_id(+) and P.INS_ID_2= i2.ins_id(+) and p.ins_id_3 = i3.ins_id(+) order by p.pat_id;
ÊÔÌâ¶þ
update a set a.sum = (
select sum(b.amount) amount from B
where a.id = b.id group by B.Id );
ûÓÃÊÓͼO(¡É_¡É)O~
ÊÔÌâÈý
delete Account a where exists ( select * from Account b where a.acct_no = b.acct_no and a.RowID > b.RowID);
×¢£º°´ÕÕ´æÔÚ»ò²»´æÔÚµÄ˼·»¹ÓÐÆäËû·½·¨¿ÉÒÔʵÏÖ ÊÔÌâËÄ
CREATE OR REPLACE PROCEDURE TRANSFER_PRO (
A_FROMACCOUNT IN NUMBER, A_TOACCOUNT IN NUMBER, A_AMOUNT IN NUMBER
)
/*********************************************************************** ¹¦ÄÜ:´ÓijһÕË»§×ª³öÒ»¶¨µÄ½ð¶îµ½ÁíÒ»¸öÕË»§ ×÷Õß:»ÆÐ˳¬ ÈÕÆÚ£º2010-11-1 Ô´±í: ACCT Ä¿±ê±í:ACCT
************************************************************************/ IS
V_COUNT INTEGER; V_ERRCODE NUMBER;
V_ERRMESSAGE VARCHAR2(1000); BEGIN
--1. È·¶¨×ª³öÕË»§Ã»Óб»Ëø¡£
SELECT COUNT(*) INTO V_COUNT FROM LOCKING L WHERE L.ACCT_NO = A_FROMACCOUNT; IF V_COUNT > 0 THEN V_ERRCODE := -20001;
V_ERRMESSAGE := 'ת³öÕË»§±»Ëø';
RAISE_APPLICATION_ERROR(V_ERRCODE, V_ERRMESSAGE); END IF;
--2. È·¶¨×ªÈëÕË»§µÄ´æÔÚ¡£
SELECT COUNT(*) INTO V_COUNT FROM ACCT A WHERE A.ACCT_NO = A_TOACCOUNT; IF V_COUNT = 0 THEN V_ERRCODE := -20002;
V_ERRMESSAGE := 'תÈëÕË»§²»´æÔÚ';
RAISE_APPLICATION_ERROR(V_ERRCODE, V_ERRMESSAGE); END IF;
--3. È·¶¨×ªÈëÕË»§Ã»Óб»Ëø¡£
SELECT COUNT(*) INTO V_COUNT FROM LOCKING L WHERE L.ACCT_NO = A_TOACCOUNT; IF V_COUNT > 0 THEN V_ERRCODE := -20003;
V_ERRMESSAGE := 'תÈëÕË»§±»Ëø';
RAISE_APPLICATION_ERROR(V_ERRCODE, V_ERRMESSAGE); END IF;
--4. È·¶¨×ª³öÕË»§ÖÐÓÐ×ã¹»Óà¶îÂú×ãתÕË
SELECT A.BALANCE - A_AMOUNT INTO V_COUNT FROM ACCT A WHERE A.ACCT_NO = A_FROMACCOUNT; IF V_COUNT < 0 THEN V_ERRCODE := -20004;
V_ERRMESSAGE := 'ת³öÕË»§ÖÐûÓÐ×ã¹»µÄÓà¶î';
RAISE_APPLICATION_ERROR(V_ERRCODE, V_ERRMESSAGE); END IF;
--5. È·¶¨×ª³öÕË»§ÔÚתÕ˺óÂú×㶳½á¶îµÄÒªÇó
SELECT A.BALANCE - A_AMOUNT - NVL(H.AMOUNT,0) INTO V_COUNT FROM ACCT A, HOLDING H
WHERE A.ACCT_NO = A_FROMACCOUNT AND A.ACCT_NO = H.ACCT_NO(+); IF V_COUNT < 0 THEN V_ERRCODE := -20005;
V_ERRMESSAGE := 'תÕ˺ó²»Âú×㶳½á¶îµÄÒªÇó';
RAISE_APPLICATION_ERROR(V_ERRCODE, V_ERRMESSAGE); END IF;
--6. È·¶¨ÔÚת³öÕË»§Éϳɹ¦µØ¿ÛÈ¥ÁËתÕ˵Ľð¶î BEGIN
UPDATE ACCT A SET A.BALANCE = A.BALANCE - A_AMOUNT WHERE A.ACCT_NO = A_FROMACCOUNT; EXCEPTION
WHEN OTHERS THEN V_ERRCODE := -20006;
V_ERRMESSAGE := 'ÕË»§×ª³öʱ½»Ò×ʧ°Ü';
RAISE_APPLICATION_ERROR(V_ERRCODE, V_ERRMESSAGE); END;
--7. È·¶¨ÔÚתÈëÕË»§Éϳɹ¦µØ¼ÓÉÏÁËתÕ˵Ľð¶î BEGIN
UPDATE ACCT A SET A.BALANCE = A.BALANCE + A_AMOUNT WHERE A.ACCT_NO = A_TOACCOUNT; EXCEPTION
WHEN OTHERS THEN V_ERRCODE := -20007;
V_ERRMESSAGE := 'ÕË»§×ªÈëʱ½»Ò×ʧ°Ü';
RAISE_APPLICATION_ERROR(V_ERRCODE, V_ERRMESSAGE); END; COMMIT; EXCEPTION
WHEN OTHERS THEN ROLLBACK;
RAISE_APPLICATION_ERROR(V_ERRCODE, V_ERRMESSAGE); END;