100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
WGU D427 DATA Management Applications Objective Assessment Study Guide questions fully solved $15.49   Add to cart

Exam (elaborations)

WGU D427 DATA Management Applications Objective Assessment Study Guide questions fully solved

 0 view  0 purchase
  • Course
  • WGU - D427 Data Management
  • Institution
  • WGU - D427 Data Management

WGU D427 DATA Management Applications Objective Assessment Study Guide questions fully solved

Preview 3 out of 30  pages

  • September 21, 2024
  • 30
  • 2024/2025
  • Exam (elaborations)
  • Questions & answers
  • WGU - D427 Data Management
  • WGU - D427 Data Management
avatar-seller
BRAINBOOSTERS
WGU D427 DATA Management
Applications Objective
Assessment Study Guide
questions fully solved & updated
2025

The Member table will have the following columns:
ID—positive integer
FirstName—variable-length string with up to 100
characters
MiddleInitial—fixed-length string with 1 character
LastName—variable-length string with up to 100
characters
DateOfBirth—date
AnnualPledge—positive decimal value representing
a cost of up to $999,999, with 2 digits for cents
Write a SQL statement to create the Member table.
- answer CREATE TABLE Member(
ID INT UNSIGNED,
FirstName VARCHAR(100),
MiddleInitial CHAR(1),
LastName VARCHAR(100),
DateOfBirth DATE,

,AnnualPledge DECIMAL(8,2) UNSIGNED
);


The Rating table has the following columns:
RatingCode—variable-length string, primary key
RatingDescription—variable-length string
The Movie table should have the following
columns:
Title—variable-length string, maximum 30
characters
RatingCode—variable-length string, maximum 5
characters
Write a SQL statement to create the Movie table.
Designate the RatingCode column in the Movie
table as a foreign key to the RatingCode column in
the Rating table. - answer CREATE TABLE Movie(
Title VARCHAR(30),
RatingCode VARCHAR(5),
FOREIGN KEY (RatingCode) REFERENCES
Rating(RatingCode)
);


The Movie table has the following columns:
ID—integer, primary key
Title—variable-length string

, Genre—variable-length string
RatingCode—variable-length string
Year—integer
A new column must be added to the Movie table:
Column name: Score
Data type: decimal(3,1)
Write a SQL statement to add the Score column to
the Movie table. - answer ALTER TABLE Movie
ADD Score DECIMAL(3,1);


The Movie table has the following columns:
ID—integer, primary key
Title—variable-length string
Genre—variable-length string
RatingCode—variable-length string
Year—integer
Write a SQL statement to create a view named
MyMovies that contains the Title, Genre, and Year
columns for all movies. Ensure your result set
returns the columns in the order indicated. -
answer CREATE VIEW MyMovies AS
SELECT Title, Genre, Year
FROM Movie;

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller BRAINBOOSTERS. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $15.49. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

72964 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$15.49
  • (0)
  Add to cart