29 Pages

sql_subqueries

Course: CIS 310, Fall 2008
School: N. Arizona
Rating:
 
 
 
 
 

Word Count: 2943

Document Preview

Sub SQL Queries Northern Arizona University College of Business The Sub Query Concept s A sub query is a query that is nested inside the where clause of another query. The sub query is executed first and its resulting value or values is/are treated as if they were literal constants when the outer query is executed. A sub query can contain another sub query so that we can nest sub queries to any desired...

Register Now

Unformatted Document Excerpt

Coursehero >> Arizona >> N. Arizona >> CIS 310

Course Hero has millions of student submitted documents similar to the one
below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.

Course Hero has millions of student submitted documents similar to the one below including study guides, practice problems, reference materials, practice exams, textbook help and tutor support.
Sub SQL Queries Northern Arizona University College of Business The Sub Query Concept s A sub query is a query that is nested inside the where clause of another query. The sub query is executed first and its resulting value or values is/are treated as if they were literal constants when the outer query is executed. A sub query can contain another sub query so that we can nest sub queries to any desired depth. s A sub query allows you to break a complex retrieval problem into parts. "First I will retrieve a set of information X, and then I will use this result to find another set of information Y. e.g, I want to retrieve a list of Flights whose fare is less than the average fare. First I need to find the average fare, then compare each flight's fare to the average. Sub Query Lets assume that we wanted to look at all the flights from PHX to LAX that had fares less than the average fare for that route. The first part of the operation would be to get the average fare for that route. We could do that in one SQL query and then use the result to construct another SQL query. We can also write the query as one query where the average calculation is obtained in the sub query. Note that the sub query is in parenthesis. Select Flight_no, Orig, Dest, Fare from flight where Orig = `PHX' and Dest = `LAX' and fare < (Select avg(fare) from flight where Orig = `PHX' and Dest = `LAX') Sub Query Example Types of Sub Queries s A sub query can return a single value - single row Most where clause operators can be used with this type of sub query In the previous example, the sub query returned a single value. s A sub query can return multiple rows Can only be used with where clause operators designed to accept a list of items, such as the IN operator. (ANY and ALL operators which are described in your reading assignments also work here) s A sub query can return values from multiple columns Can only be used with a special where clause option which allows combining columns and will be described below. Sub Query Example 2 As noted on the previous slide, sub queries can be used to obtain a list of values that another query can use to control its results. For example lets assume that we are interested in obtaining the flights that originate in airports where the elevation is greater than 1000 feet. This list can be solved using a join, but it can also be solved with a sub query. First, we get a list of the codes for airports over 1000 feet in the sub query, then we apply that list in the outer query to retrieve data from all flights whose origin is in the list. Example: Select Flight_no, Orig, Dest from flight where orig in (Select air_code from airport where elevation > 1000) Sub Select using a List NOTE A Sub Query as an Implicit Join: The sub select example we just completed is a special form of sub select that is also called an implicit join. An implicit join can be used in place of a join when the data of the column list come from only one of the tables involved. The SELECT statements below produce the same result: Select Flight_no, Orig, Dest from flight Implicit Join where orig in via Sub Select (Select air_code from airport where elevation > 1000) Select F.Flight_no, Orig, Dest from flight F,airport A where Orig = Air_Code and Elevation >1000; Explicit Join Multi Column Sub Select Statements s s s In some cases, you will want to use values returned from two or more columns in a sub select to identify the selection criteria to be applied in an outer select. Multiple column criteria can be identified in the where clause of a select statement by enclosing two or more column names in parentheses and separating them by commas, e.g: WHERE (Orig, Meal) IN (SELECT Orig, Meal FROM .....) The multiple columns are logical related by and logic that is, a row meets the criteria only if all items on the left side of the equation are matched by corresponding values returned on the right side . In our example, the Orig would need to be in the set of Orig values returned by the sub select and the Meal would need to be in the set of Meal values returned by the sub select. Multi Column Sub Select Example Suppose we want a list of passengers who will be on flights with the passenger named Andy Anderson. (That is, passengers flying on the same flight_no on the same flight_date). Here we first want to find the flight_no's and dates that Andy is flying (the sub query) and then get the names of all passengers on those Flight_nos on those dates (the outer query). select pass_name, flight_no, flight_date from ticket t, passenger p where p.itinerary_no = t.itinerary_no and (flight_no, flight_date) in (select flight_no, flight_date from ticket t, passenger p where p.itinerary_no= t.itinerary_no and pass_name = 'ANDY ANDERSON') Multi Column Sub Select Results select pass_name, flight_no, flight_date from ticket t, passenger p 2 where p.itinerary_no = t.itinerary_no and 3 (flight_no, flight_date) in (select flight_no, flight_date 4 from ticket t, passenger p 5 where p.itinerary_no= t.itinerary_no 6* and pass_name = 'ANDY ANDERSON') SQL> / PASS_NAME FLIGHT_NO FLIGHT_DA -------------------- --------- --------ANDY ANDERSON 102 18-FEB-05 GLORIA ANDERSON 102 18-FEB-05 ANDY ANDERSON 103 19-FEB-05 ANDY ANDERSON 518 21-FEB-05 GLORIA ANDERSON 518 21-FEB-05 ANDY ANDERSON 606 20-FEB-05 GLORIA ANDERSON 606 20-FEB-05 1 Review Questions Write up your Select statement and execute it, then check your results by clicking the S button. (All questions are based on tables in the Airwest database) s s s We want to get a listing of the name (air_location) and elevation of all airports whose elevation is greater than the average airport elevation. We want a listing of the name and elevation of all airports which serve as the origin for flights that serve breakfast (Meal = B). (We're afraid we won't be able to get those heavy airline omlettes off the ground) We need a list of all flights whose whose origin airport (orig) is the same as flight 102's destination airport (dest) and whose destination airport is the same as flight 102's origin airport (return flight for flight 102). S S S Queries Using Multiple Aliases for a Table s s The query processing software of a relational DBMS is designed to take only a single pass through each table appearing in a select statement. If multiple passes are needed, we may use a sub select the first sub select example we used was an example of this. We went through the Flight table once to determine an average fare. Then the outer select looked through the flight table again comparing individual rows to this average. s Alternatively, we may include the same table more than once in a select statement by using different aliases. When multiple aliases for a table are created each is treated as a separate table when the select statement is executed and we can, in effect, search through the same table more than once. Multiple table Alias Example The Dual Relationship Between Airports and Flights s s s s The airline database provides a classic example of a case where multiple aliases for a table are needed. There is a dual relationship between Airport and Flight. That is, each Flight has a relationship to two different Airports, one that it comes form, and one that is going to. Note that a standard where clause to join the Airport and Flight tables would not work here. There is no single row of the Airport table which matches both origin and destination. What is needed is two copies of the airport table, one associated with the origin airport and the other associated with the destination airport. The next slide shows this for a query where we wanted the airport code and full airport name for both the origin and destination airport. Select with Multiple Copies of the Airport Table The select statement below creates the logical relationships shown to the right. The 2 copies of the AIRPORT table appear only in temporary storage as the select statement is executed. Physical storage of the AIRPORT table in the database is unaffected. AIRPORT OA origin AIRPORT DA destination FLIGHT 1 select flight_no, orig, oa.air_location as orig_airport_name, 2 dest, da.air_location as dest_airport_name 3 from airport oa, airport da, flight f 4 where oa.air_code = orig 5* and da.air_code = dest FLIGHT_NO --------101 102 103 104 15 17 31 . ORI --FLG PHX MPS PHX PHX PHX PHX . ORIG_AIRPORT_NAME --------------------------Flagstaff AZ Phoenix AZ Minneapolis/St Paul MN Phoenix AZ Phoenix AZ Phoenix AZ Phoenix AZ . DES --PHX MPS PHX FLG LAX LAX LAX . DEST_AIRPORT_NAME -------------------------Phoenix AZ Minneapolis/St Paul MN Phoenix AZ Flagstaff AZ Los Angeles CA Los Angeles Los CA Angeles CA . Using Multiple Table Aliases An Intra-table Relationship Example s s Multiple copies of a table are also often needed when a table contains an intra-table relationship (some rows of the table have a relationship to other rows of the same table). The example below shows an employee table with this type of relationship. The Sup_ID column is used to link an employee's row to the row of the employee's supervisor. An employee is supervised by at most one other employee, while a supervisory employee can supervise more than one employees E_ID ---5678 3456 4567 1234 2345 6789 7890 E_NAME --------------Gates Jones Smythe Adams Bates Lewis Earle HIRE_DATE SALARY SUP_ID --------- --------- ---10-JAN-91 80000000 12-FEB-03 80000 5678 18-MAR-98 75000 5678 14-OCT-04 32500 3456 12-DEC-99 35000 3456 12-NOV-02 38000 4567 08-OCT-02 38000 4567 < supervises supervised by > EMPLOYEE Intra-Table Relationship Query Example Based on the table on the previous slide, to retrieve information about each employees supervisor, their name for example, along with information about the employee, we would need to create an alias (S) for the employee table to search for row's corresponding to the supervisor of the employee found in the original (E) copy of the table. 1 Employee S Employee E select e.e_id, e.e_name, s.e_id as super_id, s.e_name as super_name 2 from employee e, employee s 3* where e.sup_id = s.e_id E_NAME --------------Jones Smythe Adams Bates Lewis Earle SUPER _ID 5678 5678 3456 3456 4567 4567 SUPER_NAME --------------Gates Gates Jones Jones Smythe Smythe E_ID ---3456 4567 1234 2345 6789 7890 Correlated Sub Query A correlated sub query is a sub query that operates with variable values in the sub query that were obtained from the main query. Often times these variables reference the same table. For example, suppose we want to identify all flights originating from PHX whose fare is at the lowest available rate for all flights from PHX to the destination the particular flight is going to. Note how variables in the sub query refer to values obtained in the main query in this example. We want to compare each flight's fare to the minimum of fares from PHX to the destination of that particular flight. Thus the Sub query must reference the destination of the row of the flight table used in the outer query. 1 select flight_no, orig, dest, fare, meal from 2 flight f1 3 where orig = 'PHX' 4 and fare = (select min(fare) from flight f2 5 where f1.dest = f2.dest 6* and orig = 'PHX') Correlated Sub Query Example select flight_no, orig, dest, fare, meal from 2 flight f1 3 where orig = 'PHX' 4 and fare = (select min(fare) from flight f2 5 where f1.dest = f2.dest 6* and orig = 'PHX') SQL> / Subqueries are always executed before FLIGHT_NO --------102 104 15 31 33 35 40 600 604 606 ORI --PHX PHX PHX PHX PHX PHX PHX PHX PHX PHX DES FARE M --- --------- MPS 156 L FLG 48.5 S LAX 49 B LAX 49 S LAX 49 S LAX 49 S LAX 49 SFO 109 B SFO 109 B SFO 109 L the main query. However, the sub query in this case contains data from the main query. Thus, the sub query is executed once for each row of the main query. The values from the main query for the current row are substituted into the subquery, then it is executed and the results are used to determine whether a row is produced from the main query. This process is completed for each row of the main query. Note how time consuming this could be for a table with many rows. Correlated queries are to be avoided if there are other ways to produce the needed results. 1 In-line Views An Alternative to Correlated Sub-Queries s s s Oracle (and IBM's DB2) now support the use of in-line views An in-line view is just a sub-select that is placed in the FROM tables component of a query and given an alias Sub-select is performed first and its results treated as a temporary table when executing the outer select In-line view example select flight_no, orig, f.dest, fare, meal from flight f, (select dest, min(fare) as min_fare from flight where orig = 'PHX' group by dest) fm where orig = 'PHX' and f.dest = fm.dest DEST MIN_FARE LAX 49 and fare = fm.min_fare FLIGHT_NO ORIG DEST 102 PHX MPS 104 PHX FLG 15 PHX LAX 31 PHX LAX 33 PHX LAX 35 PHX LAX 40 PHX LAX 600 PHX SFO 604 PHX SFO 606 PHX SFO FARE MEAL 156 L 48.5 S 49 B 49 S 49 S 49 S 49 109 B 109 B 109 L SFO FLG MPS 109 48.5 156 Review Questions Write up your Select statement and execute it, then check your results by clicking the S button. (All questions are based on tables in the Airwest database) s s s We need a listing showing the flight number, fare, origin airport code and phone number and destination airport code and phone number for all flights whose fare is less than 60 dollars. (note phone numbers must come form airport and both origin and destination airports phone numbers are needed) We want a listing of all flights that can serve as a connecting flight for flight 101. That is, the origin airport (orig) must equal the destination airport (dest) of flight 102 and the orig_time must be at least 45 minutes, but no more than 300 minutes after flight 102 is scheduled to arrive (dest_time + 45/3600 adds 45 minutes to a dest_time) For each route (orig and de...

Find millions of documents on Course Hero - Study Guides, Lecture Notes, Reference Materials, Practice Exams and more. Course Hero has millions of course specific materials providing students with the best way to expand their education.

Below is a small sample set of documents:

N. Arizona - CIS - 310
Chapter10: TheInternetDatabase Environment pages426437ModernDatabaseManagement 9thEditionJeffreyA.Hoffer,MaryB.Prescott, HeikkiTopi2009PearsonEducation,Inc.PublishingasPrenticeHall1Objectives Definitionofterms Explaintheimportanceofattac
N. Arizona - CIS - 310
PL/SQL TriggersCIS 410What is PL/SQL - * Procedural Language SQL Transaction Processing Language Program Blocks Similar to COBOL and BASIC Control Structures Build Triggers, Procedures, Functions Limited I/O Support Utility Focus2PL/SQL
RIT - P - 05100
Test Plan Test Preparation 1. Delphi will randomly selected 30 heater cores from production throughout the duration of one week. 2. Measure and record all 6 clinches on each core. 3. Number all cores 1 through 30. 4. Glue stoppers to the outlet pipe
N. Arizona - FIN - 331
Chapter 9, Behavioral Finance Behavioral tendencies that interfere with rational decision making: Overconfidence Loss aversion Pain of regret Mental accounting Unrealistic probabilities Why do investors tend to keep losers too long? What can an inves
N. Arizona - ECO - 346
DATA SETS FROM FORECASTING: METHODS AND APPLICATIONS (3RD EDITION)-CHAPTER 1: THE FORECASTING PERSPECTIVE.elec.dat Australian monthly electricity productionustreas.dat US Treasury bill contractsprodc.dat Sale
Maryland - ENEE - 350
) @i 5 ~p )9 @0~f)~ 5p ip 05@ p8ipi~Qs~p)5 x~uf)@Ap4~i)4i 5@u4Ip 8ippG }~uf)@ gep6p4Gp 6ppix~sf I548g (bS 5 WbdX ) f 7 7 5 V U
Maryland - ENPM - 607
h PH d a bw TFD XR #WVrcV#t7QGxYxX RqYG{EWSytcVtErb2rRWWH rbI7tfbxEWWxQfRrpGQWH GYQGWqxEWcyH GrsWQHrRfHWqfDQE s wFR w R PH d H w P a m s d w pFR d T w a | s d X vSS y SF p DF b D SSR w TF D XR X R PH H w P dF DH g p T dF dF stfbWG%WYVnrbd tIxIm
Maryland - ENEE - 350
1 ) Ec5 u@041 v F ' ' F ' 0auE0ure}a)}2su 5 ) D 1 D F B 8 ' 1 D p F ) ' 1 5 D F F ' ' F ' 1 S T F B 6 a5u5ue56 gE0YQ1rfc2sues9eu~qe00auE92e#Qe cuuu2ue0'uu~1Xe59Cd5A9b b )QX d %
Maryland - ENEE - 0105
o deq gq s g eq gq s b t0dBd0bIu ddBfdsste `d y ` eq gq s ` deq gq s b t0cbfjsdtfdBdcstfe8 rt0dBdxste u du ` s d @gTputqIIi b g}n D00bs r0t0bIu sfI b e b e g e b e d p0ribIu r0te xd q q l g e b g e b e h0bIu sfd c 0bIu bvx q q g
Maryland - ENEE - 114
o deq gq s g eq gq s b t0dBd0bIu ddBfdsste `d y ` eq gq s ` deq gq s b t0cbfjsdtfdBdcstfe8 rt0dBdxste u du ` s d @gTputqIIi b g}n D00bs r0t0bIu sfI b e b e g e b e d p0ribIu r0te xd q q l g e b g e b e h0bIu sfd c 0bIu bvx q q g
Maryland - ENEE - 114
Q h dx Wim t Y x W ri q Y q xri WU im fx3exAsid uiasYu i Y '3&quot;gt`w`sYeeuxX3gW ux Y sxsrq dx Y &quot;i ftufnsq3osi8f`ifx&quot;frq q Y x d ni d di t dx dU dx Wim rx Y xipU x d Yr x WU x d rU x Y t i sxfdXisxi`85IX3snfqeutA 3`srfqXci `i`xv3m | h dx x Y
N. Arizona - NS - 516
MAT 516 Spring 2009Instructor: Nndor Sieben a e-mail: nandor.sieben@nau.edu http:/jan.ucc.nau.edu/ns46/516/516.html Oce: AMB 175Final (take home part)Name:You can use all results that were proved in class, in the book or was assigned as homewo
Maryland - CMSC - 250
Wrh w6 8rh 8 rpg ) dudyy@ rdyrs)yy(yW} pYyp &amp;ctydwwyy d typ~tp rWWagp V) dudyy@ rdVurcyry#yWg p@yp wctydwsyt pCd dysyp~rf ctytUr@6ysdyzurhysd
Wisconsin - ENGR - 191
Ethical Problem Solving4.16.08 ISyE 191Objectives for todayAt end of hour, you will be able to: Distinguish between engineering ethics and everyday ethics Explain how design skills apply to moral problems Distinguish between a moral problems a
Clarkson - TC - 441
Meeting Adjourned 7:02pmNo electionsPresidents Report:Everything is good, have a good summerAdmin Affairs:No ReportGreek Affairs Coordinator: No ReportNew Business:Motion to Give President salary of $1,000,000.00 PASSED 7-2-1
Berkeley - CS - 184
12 Wednesday, October 29, 200834 Wednesday, October 29, 200856 Wednesday, October 29, 200878 Wednesday, October 29, 2008910 Wednesday, October 29, 20081112 Wednesday, October 29, 20081314 Wednesday, October 29, 20081516
Berkeley - CS - 184
CS-184: Computer GraphicsLecture #12: Curves and SurfacesProf. James O'Brien University of California, BerkeleyV2008-F-12-1.01TodayGeneral curve and surface representations Splines and other polynomial bases22Wednesday, October 15, 200
Wisconsin - SW - 869
University of Wisconsin Madison School of Social WorkSOCIAL WORK 896 - Recent Developments in Social Work: Cognitive Behavioral Interventions in Social Work Spring 2005 Instructor: Kathleen Todar D.N., L.C.S.W., ABD. Room: 301 School of Social Wor
Clarkson - CM - 242
CM242 Organic Chemistry Spring 2002 FINAL EXAM KEY Date 5/1/02 The marks for each question are given in italics. There are 10 questions. Total number of points is 100. Question 1. (4+4+4) a) The following infrared spectra (spectra 1 and 2) are of n
Maryland - PHYS - 161
6P*,ilon&quot;fa R,!oL AS to\-T-a^\^\ o!1.!=(^ ln}Ldq i?,0{'4 A&quot;tJ&quot;+ ,ut*r. -clo *[F ,r.,.| &amp;o^qaaxIe&quot;d,-d&quot;r/ il r,rnel.leS rS c(sidt.i rvror\r\ lt* $hra, (4' .t1&quot; *rdrt\ g^4,c\q\ -2,',no,i*iin .s\^+r&quot;J rnu).on&quot;[ho^a\*ofoq&lt; onnb
Maryland - PHYS - 161
Phys161 (Spring 2009) Instructor: Ayush Gupta Second Exam (50 points total) Answer all questions on these sheets. Please write clearly and neatly; we can only give you credit for what we can read. We need your name and section number on every page, b
Maryland - PHYS - 161
FIRST EXAM (50 points) PHYS161: Spring2009 Instructor: Ayush Gupta Feb 27, 2009Answer all questions on these sheets. Please write clearly and neatly; we can only give you credit for what we can read. We need your name and section number on every pag
Maryland - PHYS - 161
-4HNu^,r.N'sTbayoF CB,tvtrNe-^.Ms L*.rl-\ -(nn'tg'c.\itCs,vy)z-Nrn- ' !rq' - go*'\t&quot;^n\ C= L.67 r.tb-'l Cu^$tt*f\)6*}*h&quot;^o\ &amp;tQ-(l+rlq3(frpoJ.;^ -Ftutus9eSCrntioLrrafiqSSrnonap\&quot;,n.| X wiJh {Aass l'4. o^ol racl;
Maryland - PHYS - 161
12.14. The angular momentum L of disk b is larger than the angular momentum of disk a. Calculate L foreach:1 L1 $ I1#1 $ mr12#1 2 2%1 1 &amp; %1 &amp; L2 $ I 2# 2 $ m ! 2r12 &quot; ' #1 ( $ 2 ' mr12#1 ( $ 2 L1 2 )2 * )2 *12.8.! e &quot; ! a # ! b &quot; ! c # ! d &quot;
Maryland - PHYS - 161
13.6. Model: Model the earth (e) as a sphere.Visualize:The space shuttle or a 1.0 kg sphere (s) in the space shuttle is Re ! rs &quot; 6.37 # 106 m ! 0.30 # 106 m &quot; 6.67 # 106 m away from the center of the earth. GM e M s (6.67 # 10$11 N % m 2 /kg 2 )(
Maryland - PHYS - 161
85-100A70-85B55-70C40-55D0-40F
East Los Angeles College - PAS - 364
PAS364/PAS6012 Sampling Theory and Design of Experiments: Lecture 181PAS364/PAS6012 SAMPLING THEORY AND DESIGN OF EXPERIMENTS: Lecture 1818.1 Practicalities of Surveys: Problems at the Planning Stage The following is a list of some things that
Clarkson - COMM - 214
Objective: Looking for a co-op or internship to develop communication skills and gain experience in the working environment and in the field of technical writing. Education: Clarkson University Cumulative GPA: 3.512 Major: Double Major in Technical
Berkeley - STAT - 205
Solutions to homework 8Statistics 205B: Spring 20081. (Problem 1.12 from section 3.1 in Durrett) Let X1 , X2 , X3 , . . . be i.i.d. uniform on (0, 1), let Sn = X1 + X2 + + Xn , and T = inf{n : Sn &gt; 1}. Show that P(T &gt; n) = 1/n!, so E T = e and
Berkeley - EE - 127
1. Number and title of course: EECS 127A, Optimization Models in Engineering 2. Course objectives: This introductory course will examine linear, quadratic convex, andsecond-order cone optimization and their applications in engineering, circuit desig
Berkeley - CS - 188
CS188_F'08 Outcomes List Dan Klein When students have completed CS188, Introduction to Artificial Intelligence, we expect them to be able to: 1. Formulate and solve single-agent deterministic search problems, using graph search techniques. 2. Formul
Berkeley - EE - 129
1. Number and title of course: EE 129 Neural and Nonlinear InformationProcessing2. Course objectives: To present a unified treatment of real-time analog computation,image processing, and optimization using analog VLSI neural networks which explo
Berkeley - EE - 127
1. Number and title of course: EECS 127A, Optimization Models in Engineering2. Course objectives: This introductory course will examine linear, quadratic convex, and second-order cone optimization and their applications in engineering, circuit desig
Berkeley - CS - 160
1. Number and title of course: CS 160, User Interface Design and Development 2. Course objectives: The goal of the course is for students to learn how to design,prototype, and evaluate user interfaces using a variety of methods 3. Topics covered: H
Berkeley - CS - 188
CS188_F'08 Outcomes List Dan Klein When students have completed CS188, Introduction to Artificial Intelligence, we expect them to be able to: 1. Formulate and solve single-agent deterministic search problems, using graph search techniques. 2. Formul
Wisconsin - AOS - 171
Wisconsin - AOS - 100
Review of Previous LectureMidLatitude CycloneCold core system forms along front Tropical CycloneWarm core system forms by latent heatingIntensity of the low increases with heightIntensity of the low decreases with heightWinds speed
Clarkson - COMM - 214
AlexCornwell 2BuckboardRidge,Bethel,CT06801 2037707157 cornwean@clarkson.edu SUMMARYOFQUALIFICATIONS KnowledgeableinthefieldsofAnnualGiving,Foundations,Grants,MajorGifts,Marketing,Software, andSpecialEvents.Responsiblefortargetingandaddressingcompani
Clarkson - COMM - 214
Lynsey H. Jordan585-260-6036 (cell) Email: jordanlh@clarkson.edu 109 Maple Street Potsdam, NY 13676 17 Holmes Road Rochester, NY 14626ObjectiveSecure a pre-professional experience that fits with my Interdisciplinary Engineering and Management maj
N. Arizona - COM - 499
TypesofEmail Emailbasics Discussionlists TypesofEmail EmailallowsyoutosendanelectronicmessageovertheInternet.The messagepartofanemailmessagecanbetextonly,butbyusing attachmentsyoucanincludepictures,programs,wordprocessing documents,oranyothertypeofco
Berkeley - CS - 152
Review: Summary of Pipelining Basics Pipelines pass control information down the pipe just as data moves down pipe Forwarding/Stalls handled by local control Hazards limit performance Structural: need more HW resources Data: need forwarding, com
Berkeley - EE - 120
1. Number and title of course: EE 120 Signals and Systems 2. Course objectives: This course introduces mathematical techniques used in the designand analysis of signals and systems. The intention is to promote an understanding of the fundamental sy
Maryland - MATH - 246
Sample Final Exam Problems, Math 246, Spring 2009 (1) Consider the differential equation dy = (9 - y 2)y 2 . dt (a) Identify its equilibrium (stationary) points and classify their stability. (b) Sketch how solutions move in the interval -5 y 5 (its
Maryland - MATH - 246
Sample Problems for Third In-Class Exam Math 246, Spring 2009, Professor David Levermore (1) Consider the matrices A= Compute the matrices (a) AT , (b) A , (c) A , (d) 5A B , (e) AB , (f) B1 . (2) Consider the matrix A= 3 3 4 1 . i2 1 + i 2 + i 4 ,
Maryland - MATH - 246
MATLAB code to produce the following model: %Andrew Levinson %April 28, 2009 %Competing species/Predator-Prey Model %Set up parameters for vector field [X,Y] = meshgrid(0:.1:2.5, 0:.1:2.5); U1=X.*(1.5-.5*X-Y); V1=Y.*(2-Y-1.125*X); U2=X.*(1-.5*Y); V2=
Maryland - MATH - 246
Solutions to Sample Final Exam Problems, Math 246, Spring 2009 (1) Consider the differential equation dy = (9 - y 2)y 2 . dt (a) Identify its equilibrium (stationary) points and classify their stability. (b) Sketch how solutions move in the interval
Kalamazoo - CHEM - 310
Chem 310 Homework 7Physical Chemistry I Due 10:00 am Monday, 5/17/041. Calculate the maximum non-expansion work per mole that may be obtained from a fuel cell in which the chemical reaction is the combustion of methane at 298 K. 2. At 298 K the s
UCSC - BIO - 126
Cell, Vol. 117, 157169, April 16, 2004, Copyright 2004 by Cell PressThe Divergent Robo Family Protein Rig-1/Robo3 Is a Negative Regulator of Slit Responsiveness Required for Midline Crossing by Commissural AxonsChristelle Sabatier,1,2 Andrew S. Pl
Berkeley - MCB - 150
MCB 150 Lecture 1: Innate and adaptive Immunity Overview: 1.Innate immunity 2.Adaptive immunity 3. How adaptive immune response is initiated.Astar WinotoLecture: Immune system is important because of the need of all organisms for protection again
N. Arizona - D - 486
Raytheon Seekers Design ReviewRaytheon Seekers1Raytheon SeekersAaron Scrignar.Team LeadergroupphotoEric Draves.Historian Trevor Moody.Web Page Des., Mediator Stacy Davison.Document Coord., Financial Officer LaTanya Williams.CommunicatorRa
RIT - ANS - 235
N. Arizona - D - 486
Ricardo Silva30 Calle Contenta #2 Flagstaff, AZ 86001 Cell phone: 9288539839 rsilvat@gmail.comObjective Develop myself as a manager and a mechanical engineer within an organization that will challenge the knowledge I have obtained along my profess
N. Arizona - LAM - 323
MyHobbiesLia MitchellGoingtothebeach isoneofmyfavorite hobbiesandpast times. ItsaGREATplace togettogetherwith friendsorfamily Ienjoysurfing, wakeboarding, snorkeling, kayaking,swimming orjustloungingin thesunIve been hiking with my family sin
N. Arizona - MJS - 297
MyHobby: BluegrassAPRESENTATIONBYMICHAELSWIFT CIS120SECTION13WhatisBluegrass?BluegrassisaformofAmericanTraditional music Originatedinthe Appalachians Includesonlyacoustic instrumentsWhatMakesUpaBluegrassBand?Instrumentscaninclude: Gui
N. Arizona - TS - 224
Travis K. Sanders1909 W. Fairway Ln. Payson, AZ 85541 ts224@dana.ucc.nau.edu (928)-978-3460OBJECTIVETo live my life to the best of my abilityEDUCATION Yavapai College, Prescott, AZ A.A. Liberal Arts May 2005 Northern Arizona University, College
Berkeley - CS - 161
CS161_F'08 Outcomes List Dawn Song 1. Be familiar with basic concepts in cryptography such as encryption, authentication, message authentication codes, hash functions, signatures, etc. 2. Understand classic types of software vulnerabilities includin
N. Arizona - JAN - 474
DEPARTMENT of MATHEMATICS &amp; STATISTICS SYLLABUS and COURSE INFORMATION SPRING 2007 STA 474C INTRODUCTION TO MATHEMATICAL STATISTICS II 11:30am-12:20pm MWF AMB 147 class # 3622 INSTRUCTOR INFORMATION Roy.St.Laurent@nau.edu Instructor: Dr. Roy St.
Berkeley - STAT - 248
STAT 248: Nonparametric Spectral Estimation. ARMAX. Handout 12GSI: Irma Hernandez-Magallanes April 17, 20091Kernel Smoothing1. Kernel functions: a) daniell m=3, b) modified daniell m=3, c) dirichlet r=2 and m=3 and d) fejer r=3 and m=3.Daniell
Berkeley - STAT - 248
Tinn-R - [C:\Documents and Settings\Irmita\My Documents\STAT248\Spring 2009\Lab12.04.17.09\code.r]1/3grDevices:initPSandPDFfonts() soi=scan('soi.dat') rec=scan('recruit.dat') ts.soi=ts(soi,frequency=12,start=c(1950,1) ts.rec=ts(rec,frequency=12,s
Berkeley - STAT - 248
STAT 248: Bivariate Analysis. Kernel Smoothing Handout 11GSI: Irma Hernandez-Magallanes April 10, 200911.1Spectral DensitySimulations2 1. Consider a Gaussian white noise xt with w . Show that the spectral density (power spectrum) 2 is fw (w)
Berkeley - STAT - 248
STAT 248: Spectral Analysis. Bivariate Analysis Handout 10GSI: Irma Hernandez-Magallanes April 9, 200911.1Spectral DensitySimulations1. Consider a time series xt where t = 1, 2, ., n. We will define I(j/n) as the periodogram and as the scaled