|
[x]
Posted via EE Mobile
|
||
Search, ask, and monitor your questions on the go with EE Mobile. Visit Experts Exchange from your mobile device and never be out of touch again. |
||
| Question |
|
[x]
Attachment Details
|
||
|
[x]
The Solution Rating System
|
||
With so many solutions, how can you tell which solutions are most likely to help you and which ones are not? To provide you with a tool to use, we rate our solutions based on various elements that most accurately determine if a solution is a quality solution. To explain what factors affect the solution rating, here are the elements we take into consideration when formulating our solution rating.
Your Input Matters If you have any suggestions that you would like to make for our rating system, please ask a question in the Suggestions Zone of Community Support. Thank you! |
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: |
set linesize 200; set pagesize 100; set underline off; column Inst_Code heading "Code" format a4; column Catalog_Year heading "Year" format a4; column Inst_Desc heading "Inst Desc" format a20; column Deg_Trns heading "Deg Trns" format a10; column Deg_Trns_Desc heading " Degree Desc" format a40; --column Deg_Inst heading " Deg Inst" format a22; --column Deg_Inst_Desc heading " Deg Desc" format a22; --column Major_Code heading " Major Code" format a20; --column Major_Desc heading " Major Desc" format a25; --column Conc heading "Conc" format a4; --column Seq_No heading " Seq No" format x; --column Subj_Code heading "Subj Code" format a9; --column Course_No heading "Course Num" format a6; --column Count heading "Count" format 99; SELECT SWRREQD_SBGI_CODE Inst_Code, SWRREQD_ACYR_CODE Catalog_Year, SWVSBGI_DESC Inst_Desc, TRIM(SWRREQD_DEGT_TRNS) Deg_Trns, TRIM(SWVDEGT_DESC) Deg_Trns_Desc, TRIM(SWRREQD_DEGC_INST) Deg_Inst, TRIM(STVDEGC_DESC) Deg_Inst_Desc, TRIM(SWRREQD_MAJR_CODE) Major_Code, TRIM(STVMAJR_DESC) Major_Desc, SWRREQD_CONC_CODE Conc, SWRREQD_SEQNO Seq_No, TRIM(SWRREQD_SUBJ_CODE) Subj_Code, SWRREQD_CRSE_NUMB Course_No, COUNT (*) Count FROM SWRREQD, SWVSBGI, SWVDEGT, STVMAJR, STVDEGC WHERE SWRREQD_SBGI_CODE = SWVSBGI_CODE AND SWRREQD_MAJR_CODE = STVMAJR_CODE AND SWRREQD_DEGT_TRNS = SWVDEGT_CODE AND SWRREQD_DEGC_INST = STVDEGC_CODE GROUP BY SWRREQD_SBGI_CODE, SWVSBGI_DESC, SWRREQD_DEGT_TRNS, SWVDEGT_DESC, SWRREQD_DEGC_INST, STVDEGC_DESC, SWRREQD_MAJR_CODE, STVMAJR_DESC, SWRREQD_CONC_CODE, SWRREQD_SEQNO, SWRREQD_SUBJ_CODE, SWRREQD_CRSE_NUMB, SWRREQD_ACYR_CODE HAVING COUNT(*) > 1 ORDER BY SWRREQD_SBGI_CODE, SWRREQD_DEGT_TRNS, SWRREQD_DEGC_INST, SWRREQD_MAJR_CODE; |
Advertisement
| Hall of Fame |