Question: This assignment is designed to make sure your software is installed and working properly. Using MySQL WorkBench complete the following: A . Install SQL Server
This assignment is designed to make sure your software is installed and working properly.
Using MySQL WorkBench complete the following:
A Install SQL Server Express as described in Appendix A and B starting on page or using the
instructions located in Course Material Content Getting Started.
Install the AP and HarmonyCorp databases as described in the HOW TO Create the
Databases for IST pdf file in the content area of the course
B Once the software is installed log in to SQL Server Management Studio, then click the New Query
Button
C Use the following SQL CREATE command to create a new database called STUDENT.
CREATE DATABASE STUDENT
Then click the Execute Button or press F to run the command
D Once you have created the database, type in Use Student to select the STUDENT Table.
E Use the SQL CREATE command to create a table called FIRSTTABLE with the following fields and
constraints:
Field name datatype comment
STUID NUMERIC TTC student ID number, primary key
STULNAME varchar last name
STUFNAME varchar first name
STUADDR varchar street address
STUCITY varchar city
STUSTATE varchar state letter code
STUZIP varchardigit zip code STUDOB date date of birth
F INSERT a record into this new table with your own information as the data. Also, remember that all
varchar data must be surrounded in single quotes not double quotes, that is Access! and numbers do
not use quotes, commas, etc. Only a decimal point may be used if the type of number calls for it Thus,
to enter your record into the newly created table you would use the following command: INSERT
INTO FIRSTTABLE values
'Smith', 'John', Anywhere Lane', 'Columbia', SCJUN Note:
do not just copy this; use notepad or type it directly into your system.
G Use the SELECT command to make sure the record was inserted. This assignment is due as posted on
the Course Outline. Submit your CREATE, INSERT, AND SELECT SQL statements following the
format in the How to format your chapter submissions document. found in the content area Your
instructor will then check your work in MySQL and give you a grade
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
