subject

Overview To complete this assignment, you will work in the Codio virtual lab environment to create tables similar to the ones that you saw in the previous activity.
Prompt
To begin, go to your Codio virtual lab environment and start a new terminal session. Once there, perform the steps below to complete this activity. The commands you see, or are asked to write, must all be entered manually. To validate that the commands you have written work, capture screenshots of the results and place them in a document for submission. Each screenshot should be around one quarter of a page.
Connect to the database you created and named in Module One (for example, Jetson). Type after the prompt mysql>
use (table you named);
Example: mysql> use Jetson;
Create the Employee table using the SQL statement shown here. Press Return after each line.
CREATE TABLE Employee (
Employee_ID SMALLINT,
First_Name VARCHAR(40),
Last_Name VARCHAR(60),
Department_ID SMALLINT,
Classification VARCHAR(10),
STATUS VARCHAR(10),
Salary DECIMAL(7,2));
Create the Branches table. Fill in the missing characters or punctuation in the incomplete statement shown below to complete this action.
CREATE Branches (
Department_ID SMALLINT,
Department_Name )
After creating the tables, use the correct commands to describe them. You will only be given commands to describe one of the tables and must complete the same action for the second one on your own. Validate your work with a screenshot.
describe Employee;
Write the correct command to describe the Branches table
Insert the following records into the Employee table. Each line going from left to right is a record. Each line going from top to bottom is a column. Validate your work with a screenshot.
INSERT INTO Employee VALUES (100, 'John', 'Smith', 1, 'Exempt', 'Full-Time', 90000), (101,'Mary','Jones',2,'Non-Exempt', 'Part-Time',35000), (102,'Mary','Williams',3,'Exempt',' Full-Time',80000);
Type the command select* from Employee; and take a screenshot of it to validate this step.
Insert the following records into the Employee table for Gwen Johnson and Michael Jones by writing the correct SQL commands on your own.
Gwen Johnson: Employee ID = 103, DEPARTMENT_ID = 4, Classification = NULL, Status = Full-Time, SALARY = 40000
Michael Jones: Employee ID = 104, DEPARTMENT_ID = 4, Classification = Non-Exempt, Status = Full-Time, SALARY = 90000
Insert your name into the table to verify and prove your work. (Your First and Last Name, or a nickname): Employee ID = 105, DEPARTMENT_ID = 1, Classification = Non-Exempt, Statues = Full-time, SALARY = (Choose a value between 50000 and 99000)
Type the command select* from Employee; and take a screenshot of it to validate this step.
Insert records for a musician, athlete, or other famous character of your choice. Make sure to enter information for all of the fields listed in this table. The Department_ID must be a number between one and four.
Write the correct command to prove that you’ve successfully completed this step, and validate it with a screenshot.
Select the fields of last name, first name, and department id from the table. Validate your work with a screenshot.
Select First_Name, Last_Name, Employee_ID, Department_ID from Employee;

ansver
Answers: 3

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 04:31
Which of the following is not a way in which trees benefit the environment? a. they remove a significant amount of carbon dioxide from the atmosphere. b. they remove a significant amount of oxygen from the atmosphere. c. their roots hold soil in place, reducing rates of erosion. d. they remove ozone and particulates from the atmosphere. select the best answer from the choices provided a b c d
Answers: 1
question
Computers and Technology, 23.06.2019 09:30
Given a link with a maximum transmission rate of 32.8 mbps. only two computers, x and y, wish to transmit starting at time t = 0 seconds. computer x sends filex (4 mib) and computer y sends filey (244 kib), both starting at time t = 0. statistical multiplexing is used, with details as follows packet payload size = 1000 bytes packet header size = 24 bytes (overhead) ignore processing and queueing delays assume partial packets (packets consisting of less than 1000 bytes of data) are padded so that they are the same size as full packets. assume continuous alternating-packet transmission. computer x gets the transmission medium first. at what time (t = ? ) would filey finish transmitting? give answer in milliseconds, without units, and round to one decimal places (e.g. for an answer of 0.013777 seconds you would enter "13.8" without the quotes)
Answers: 3
question
Computers and Technology, 24.06.2019 14:00
Which computer tools allow you to communicate with coworkers, family,and friends
Answers: 1
question
Computers and Technology, 24.06.2019 21:30
What need most led to the creation of the advanced research projects agency network? darpa wanted scientists to be able to collaborate and share research easily. darpa wanted american and russian politicians to be able to communicate. darpa wanted astronauts to be able to contact nasa and the white house. darpa wanted factory owners to be able to coordinate supply chains.
Answers: 1
You know the right answer?
Overview To complete this assignment, you will work in the Codio virtual lab environment to create...
Questions
question
Mathematics, 20.09.2020 18:01
question
Mathematics, 20.09.2020 18:01
question
Mathematics, 20.09.2020 18:01
question
Mathematics, 20.09.2020 18:01