Escrito por estudiantes que aprobaron Inmediatamente disponible después del pago Leer en línea o como PDF ¿Documento equivocado? Cámbialo gratis 4,6 TrustPilot
logo-home
Document preview thumbnail
Vista previa 4 fuera de 44 páginas
Examen

WGU D427 - DATA MANAGEMENT APPLICATIONS EXAM QUESTIONS AND 100% CORRECT ANSWERS (A+) 2025

Document preview thumbnail
Vista previa 4 fuera de 44 páginas

WGU D427 - DATA MANAGEMENT APPLICATIONS EXAM QUESTIONS AND 100% CORRECT ANSWERS (A+) 2025

Vista previa del contenido

WGU D427 - DATA MANAGEMENT APPLICATIONS
EXAM QUESTIONS AND 100% CORRECT ANSWERS
(A+) 2025
The Movie table has the following columns:

ID - positive integer

Title - variable-length string

Genre - variable-length string

RatingCode - variable-length string

Year - integer

Write ALTER statements to make the following modifications to the Movie table:

Add a Producer column with VARCHAR data type (max 50 chars).

ALTER TABLE Movie ADD Producer VARCHAR(50);


The Movie table has the following columns:

ID - positive integer

Title - variable-length string

Genre - variable-length string

RatingCode - variable-length string

Year - integer

Write ALTER statements to make the following modifications to the Movie table:

Remove the Genre column.

,ALTER TABLE Movie DROP COLUMN Genre;


The Movie table has the following columns:

ID - positive integer

Title - variable-length string

Genre - variable-length string

RatingCode - variable-length string

Year - integer

Write ALTER statements to make the following modifications to the Movie table:

Change the Year column's name to ReleaseYear, and change the data type to
SMALLINT.

ALTER TABLE Movie CHANGE COLUMN Year ReleaseYear SMALLINT;


The Movie table has the following columns:

ID - positive integer

Title - variable-length string

Genre - variable-length string

RatingCode - variable-length string

Year - integer

Write ALTER statements to make the following modifications to the Movie table:

,- Add a Producer column with VARCHAR data type (max 50 chars).

- Remove the Genre column.

- Change the Year column's name to ReleaseYear, and change the data type to
SMALLINT.

ALTER TABLE Movie ADD Producer VARCHAR(50);
ALTER TABLE Movie DROP COLUMN Genre;
ALTER TABLE Movie CHANGE COLUMN Year ReleaseYear SMALLINT;


The Horse table has the following columns:

ID - integer, auto increment, primary key

RegisteredName - variable-length string

Breed - variable-length string, must be one of the following: Egyptian Arab,
Holsteiner, Quarter Horse, Paint, Saddlebred

Height - decimal number, must be between 10.0 and 20.0

BirthDate - date, must be on or after Jan 1, 2015

Insert the following data into the Horse table:

RegisteredName Breed Height BirthDate

Babe Quarter Horse 15.3 2015-02-10

Independence Holsteiner 16.0 2017-03-13

Ellie Saddlebred 15.0 2016-12-22

NULL Egyptian Arab 14.9 2019-10-12

INSERT INTO Horse (RegisteredName, Breed, Height, BirthDate) VALUES
('Babe', 'Quarter Horse', 15.3, '2015-02-10'),

, ('Independence', 'Holsteiner', 16.0, '2017-03-13'),
('Ellie', 'Saddlebred', 15.0, '2016-12-22'),
(NULL, 'Egyptian Arab', 14.9, '2019-10-12');


The Horse table has the following columns:

ID - integer, auto increment, primary key

RegisteredName - variable-length string

Breed - variable-length string, must be one of the following: Egyptian Arab,
Holsteiner, Quarter Horse, Paint, Saddlebred

Height - decimal number, must be ≥ 10.0 and ≤ 20.0

BirthDate - date, must be ≥ Jan 1, 2015

Make the following updates:

Change the height to 15.6 for horse with ID 2.

UPDATE Horse
SET Height = 15.6
WHERE ID = 2;


The Horse table has the following columns:

ID - integer, auto increment, primary key

RegisteredName - variable-length string

Breed - variable-length string, must be one of the following: Egyptian Arab,
Holsteiner, Quarter Horse, Paint, Saddlebred

Height - decimal number, must be ≥ 10.0 and ≤ 20.0

Información del documento

Subido en
8 de enero de 2025
Número de páginas
44
Escrito en
2024/2025
Tipo
Examen
Contiene
Preguntas y respuestas
$17.49

¿Documento equivocado? Cámbialo gratis Dentro de los 14 días posteriores a la compra y antes de descargarlo, puedes elegir otro documento. Puedes gastar el importe de nuevo.
Escrito por estudiantes que aprobaron
Inmediatamente disponible después del pago
Leer en línea o como PDF

Seller avatar
Los indicadores de reputación están sujetos a la cantidad de artículos vendidos por una tarifa y las reseñas que ha recibido por esos documentos. Hay tres niveles: Bronce, Plata y Oro. Cuanto mayor reputación, más podrás confiar en la calidad del trabajo del vendedor.
Lectpearl
4.3
(6)
Vendido
53
Seguidores
19
Artículos
1544
Última venta
2 meses hace


Por qué los estudiantes eligen Stuvia

Creado por compañeros estudiantes, verificado por reseñas

Calidad en la que puedes confiar: escrito por estudiantes que aprobaron y evaluado por otros que han usado estos resúmenes.

¿No estás satisfecho? Elige otro documento

¡No te preocupes! Puedes elegir directamente otro documento que se ajuste mejor a lo que buscas.

Paga como quieras, empieza a estudiar al instante

Sin suscripción, sin compromisos. Paga como estés acostumbrado con tarjeta de crédito y descarga tu documento PDF inmediatamente.

Student with book image

“Comprado, descargado y aprobado. Así de fácil puede ser.”

Alisha Student

Preguntas frecuentes