Question: Project Objectives Creating tables with various data types Inserting data to the database tables Updating and deleting data from database tables Running complex queries to
Project Objectives
Creating tables with various data types
Inserting data to the database tables
Updating and deleting data from database tables
Running complex queries to make calculations over database tables
Best Practices to Follow:
Write detailed comments for SQL statements
Organize and structure SQL statements for readability
Your tasks are as follows:
StayWell manages the owner information about every property under their management. Since the owners are essential to the operations, their addresses with city, state, and zip code are collected. Create the OWNER table, it should have the following data:
OWNERNUM as fixedlength characters
LASTNAME as maximum characters
FIRSTNAME as maximum characters
ADDRESS as maximum characters
CITY as maximum characters
STATE as fixedlength characters
ZIPCODE as fixedlength characters
All fields are mandatory and cannot be empty
StayWell stores and manages the detailed information about the properties within their operations. Each property is assigned to an office for its management activities. In addition, propertyspecific information such as the house size, number of bedrooms and floors, and monthly rent are also kept. Each property has an owner reference. Considering the future expansion of StayWell, all properties should be managed within the database. Create the PROPERTY table, it should have the following data:
PROPERTYID as small integer
OFFICENUM as tiny integer
ADDRESS as maximum of characters
SQRFT as small integer
BDRMSas tiny integer
FLOORS as tiny integer
MONTHLYRENT as small integer
OWNERNUM as fixedlength characters
All fields except monthly rent are mandatory and cannot be empty.
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
