Preview

Pt2520 Course Project Part 1

Satisfactory Essays
Open Document
Open Document
325 Words
Grammar
Grammar
Plagiarism
Plagiarism
Writing
Writing
Score
Score
Pt2520 Course Project Part 1
Course Project Part 1
You are required to use OpenOffice software to build tables, write, and execute queries. 1. Build a Database named DBMS Course Project. The database should include following tables. * First Table – Students * ID * First Name * Last Name * Address * City * State * Zip Code * Phone Number with area code

* Second Table – GPA * ID * Current GPA * Class * 1 (Freshman) * 2 (Sophomore) * 3 (Junior) * 4 (Senior) * 5 (Graduate Student)

* Third Table – Scholarships * ID * Major course of study * Academic
…show more content…
Extract the First and Last Name, Address, City, State, Zip Code and Phone Number of each senior on the database. Sort by Last Name, then First Name (1 sort). select s.First_Name, s.Last_Name, s.Address, s.City, s.State, s.Zipcode, s.Phone_Num from Students s, GPA g where g.Class = 4 and g.ID = s.ID order by s.Last_Name,s.First_Name;

3. Extract the First and Last Name, and GPA of each student who qualifies for the Dean’s List. Sort by GPA, then Last Name, then First Name (1 sort). A GPA of 3.25 is required to make the Dean’s List. select s.First_Name, s.Last_Name, g.Current_GPA from Students s, GPA g where s.ID = g.ID and g.Current_GPA >= 3.25 order by g.Current_GPA, s.Last_Name,s.First_Name;

Course Project Part 2
You are required to use OpenOffice software to write and execute queries with tables you created in project prt 1.

1. Extract the First and Last Name, Student ID, Course Major and GPA of any students on athletic scholarship. Sort by Student ID.

select s.First_Name, s.Last_Name,s.ID, sc.Major_Course, g.Current_GPA from Students s, GPA g, Scholarships sc where s.ID = g.ID and s.ID =

You May Also Find These Documents Helpful

  • Satisfactory Essays

    PT2520 Week 1 Assignment

    • 571 Words
    • 2 Pages

    History: Wild Woods Apartments is a property management company. They own around 20 different building, each of which is composed of anywhere from 10-60 different units. Each building has a lot of information to maintain such as occupancy, leases, payments and maintenance requests and expenses. This is expected to be done by the manger on site and then they are to send a report to cooperate every quarter. Every quarter, cooperates receives the information form all 20 sites and has to then manage that. Doing all of this paper work and managing by hand or even in spreadsheets is very inefficient and wastes time. Creating a database that can record and organize all of this pertinent information would help both the managers, cooperate and even the tenants.…

    • 571 Words
    • 2 Pages
    Satisfactory Essays
  • Good Essays

    When a client connects to the MySQL server, the server uses the username provided by the client and the client host to select the appropriate account row from the mysql.user table. It then uses this row to authenticate the client. Before MySQL 5.5.7, the server authenticates the password provided by the client against the Password column of the account row.…

    • 406 Words
    • 2 Pages
    Good Essays
  • Good Essays

    You must show your work on all problems. You may type your answer right into this document. Total points for project: 45 points. Projects must be submitted as a Microsoft Word document and uploaded to the Dropbox for Unit 1. All Projects are due by Tuesday at 11:59 PM ET of the assigned Unit. NOTE: Project problems should not be posted to the Discussion threads. Questions on the project problems should be addressed to the instructor by sending an email or by attending office hours. You will be able to come back to the Dropbox and view your graded work or in the Gradebook after your instructor evaluates it.…

    • 1753 Words
    • 8 Pages
    Good Essays
  • Satisfactory Essays

    8 T | Rather than put several values in a single column, you should create several columns and number them like column1, column2, etc.…

    • 313 Words
    • 1 Page
    Satisfactory Essays
  • Satisfactory Essays

    Look up “System Analysis and Design Life Cycle.” What are the parts of this life cycle? How do you think this relates to database development?…

    • 317 Words
    • 2 Pages
    Satisfactory Essays
  • Satisfactory Essays

    Begin establishing relationships in the database by adding the Department Managers and Volunteers tables to the Relationships space.…

    • 402 Words
    • 3 Pages
    Satisfactory Essays
  • Good Essays

    SEQUEL or SQL is a data language that provides benefits for all types of users. SQL’s purpose is to provide an interface to a relational database such as Oracle Database. Dr. Edgar Frank “Ted” Codd introduced the first commercially available implementation of SQL. Today, SQL is accepted as the standard RDBMS language. The features of SQL include processing sets of data as groups rather than as individual units and providing automatic navigation to the data. It uses statements that are complex and powerful individually, and that therefore stand alone. Flow-control statements were not part of SQL originally, but they are found in the recently accepted optional part of SQL. Flow-control statements are commonly known as "persistent stored modules" (PSM), and the PL/SQL extension to Oracle SQL is similar to PSM.…

    • 452 Words
    • 2 Pages
    Good Essays
  • Satisfactory Essays

    Sp2750 Practice 3

    • 115 Words
    • 1 Page

    Use the modal must to show that an action is necessary in the sentences below.…

    • 115 Words
    • 1 Page
    Satisfactory Essays
  • Powerful Essays

    Research Project # 1 It221

    • 2867 Words
    • 12 Pages

    1. Why windows server 2008 comes in different versions? What is the significance of each version?…

    • 2867 Words
    • 12 Pages
    Powerful Essays
  • Satisfactory Essays

     Explain what you will do differently, if anything, in your next online collaboration opportunity.…

    • 337 Words
    • 4 Pages
    Satisfactory Essays
  • Satisfactory Essays

    SQL Queries

    • 423 Words
    • 2 Pages

    Query 3: Find the names and ID's of all faculty members, sorted in reverse alphabetical order by name. The result should be a two column table (SELECT should only be two in order for the table to be 2 columns)…

    • 423 Words
    • 2 Pages
    Satisfactory Essays
  • Good Essays

    2301 Final Exam Workbook

    • 6563 Words
    • 60 Pages

    _____ Psychology and "common sense" lead to the same conclusions about behavior and mental processes.…

    • 6563 Words
    • 60 Pages
    Good Essays
  • Good Essays

    Activestats

    • 602 Words
    • 3 Pages

    13 variables are considered for each student: sex (SEX), high school percentile (HSP), cumulative GPA (GPA), age (AGE), total credits earned (CREDITS), classification (CLASS), school/college (COLLEGE), primary major (MAJOR), residency (RESIDENCY), admission type (TYPE), ACT English score (ENGLISH), ACT math score (MATH), and ACT composition score(COMP).…

    • 602 Words
    • 3 Pages
    Good Essays
  • Good Essays

    Questions Unit 2 Pt2520

    • 389 Words
    • 2 Pages

    * A Candidate Key can be any column or a combination of columns that can qualify as unique key in database. There can be multiple Candidate Keys in one table. Each Candidate Key can qualify as Primary Key.…

    • 389 Words
    • 2 Pages
    Good Essays
  • Satisfactory Essays

    Eamcet Ranks for Snist

    • 456 Words
    • 2 Pages

    First & Last Ranks of Category wise admitted Under EAMCET - 2012 (Admissions) during the Academic Year 2012-13 OC BC-A BC-B BC-C Boys Girls Boys Girls Boys Girls Boys Girls First Last First Last First Last First Last First Last First Last First Last First Last…

    • 456 Words
    • 2 Pages
    Satisfactory Essays