Assignment InstructionsThere are 2 parts to this week’s assignment. Download the attached instruction details.The objective is to perform the same tasks; first, by issuing SQL commands, and then by us

INFO3 21 WEEK 3 Assignmen t Page 1 of 3 OBJECTIVE S Use SQL commands to Create a table, Insert data into that table and Select data from that table. Complete the same tasks using MS Access (graphic user interface) . Part A SQL Commands (70%) Read all Part A instructions before beginning General Information: Go to http://www.sqlcourse.com/create.html , click on the links on the left to revie w Table Basics, Creating Tables, Inserting into a table, and Drop a table . Th ere is a description of each command , the format ( syntax ) used by the Web site , and examples . You should also review the Select command instructions (which includes the “Where” clause) at http://www.sqlcourse2.com/select2.html . Then return to the “Standalone SQL interpreter ” found on the http://www.sqlcourse.com/create.html site (the link is on the left of the Web site page) to enter and submit your SQL command s. (The SQL interpreter on the sqlcourse2.com page only support s the Select command and uses predefined tables. ) It is recommended that you submit and execute one SQL command at a time. For each task below: a) Label each Ta sk to match the instruction b) Construct the SQL command (include the text of each command in your formal submission ) c) Paste the SQL command onto the Web site (Standalone SQL Interpreter page) click on the Submit Query button to execute the command d) Capture the entire resp onse display (either the Window or the entire screen) and paste it below the SQL comman d text If you have difficultly – send the SQL command text and response capture to the instructor for assistance Let’s Begin the SQL Portion of the Exercise : Task 1 – Use the SQL Create command to create a table with the below specifications The table name should be your last name plus a unique number Use the following to name each field (column) ; with a matching data type EmployeeID 10 numeric digits (no decimal points) SSN up to 11 characters (SSN = social security number) fName up to 12 characters lName up to 12 characters Position up to 12 characters Salary 10 maximum num eric digits (including 2 decimal digits) PhoneNum 12 characters. Task 2 – Use the Insert command to insert the records / data below: Submit one record at a time (eas ier to correct any mistakes) INFO3 21 WEEK 3 Assignmen t Page 2 of 3 100 , 111 -11 -0607 , John , Smith , Manager , 35000.75 , 800 -350 -0000 200 , 333 -22 -0607 , John , Jones , Associate , 25000.00 , 202 -999 -0000 300 , 444 -44 -0607 , Sally , Smith , Manager , 46500.00 , 303 -999 -0000 Insert one more record – you determine the content, EXCEPT it must use your name for the first name (fName) and last name l Name), and a Salary of 36900. Ta sk 3 Use the Select * command to l ist all fields for all records in the table. Task 4 Use a Select command to list the EmployeeID, fName, lName, Position, and Salary fields for all employees with a last name of Smith. Task 5 Use a Select command to l ist the EmployeeID, fName, lName, Position, Salary and PhoneNum fields for all employees with a salary greater than 20000. Task 6 Use a Select command to list the EmployeeID, fName, lName, Position and Salary fields for all Employees with a Salary great er than 30000 and less than 45000. Submit this part of the assignment in a word docum ent . Nam e your document Last _Name_SQLWeb (i.e. Smith_ SQLWeb ). A description of the most common SQL problems can be found at the end of these instructions . Contact the instructor with any questions. Part B Access Database (30%) Perform the same tasks using MS Access A) Create the table (same field names and field types as in Part A ) Do not worry about specifying exact field lengths, or decimal points. No primary key is required. B) Enter (type) the same data as in Part A C) Create and Save a Query created for Task 3 above with the name Query C D) Create and Save a Query created for Task 4 above with the name Query D E) Create and Save a Query created for Task 5 above with the name Query E F) Create and Save a Query created for Task 6 above with the name Query F Name the Access database Last Name_Assignment3 (i.e. Smith_ Assignment3). Ensure you attach and submit BOTH files (a word document for Part A and an Access database for Part b) EmployeeID SSN fName lName Position Salary PhoneNum 100 111-11-0607 John Smith Manager 35000.75 800-350-0000 200 333-22-0607 John Jones Associate 25000.00 202-999-0000 300 444-44-0607 Sally Smith Manager 46500.00 303-999-0000 INFO3 21 WEEK 3 Assignmen t Page 3 of 3 Common SQL problems A) Table and field names are case sensitive , and should not include spaces. B) Another common error is “Invalid character used in command” – this means you have used an illegal character. Character fields should be enclosed in single quote marks. Sometimes an incorrect single quote is generated by Word (this seems to be associated with the keyboard used). You can determine the “value” of a character in Word by selecting it and then pressing the ALT + X (the letter x) keys. That will display the value of the character. It should have a value of 0027. If you have the wrong value – go to the SQL Web site an copy one of the single quotes from an “Example” and use that in your Word document C) Declaring a field to be numeric, and using single quotes in a Select statement (for the field’s value) seems to generate a Something Went Wrong error message, or even worse it may blank the field. I suggest you double check whether you are using character or numeric fields – and ensure the Select statement field is consistent with the Insert statement. D) The Inse rt command does not display the con tents of the record entered into the table. The site will return a “SQL Command executed ” message. This is “not” an error Use Select * From YourTableName to display all records in the table. E) If the above does not localize the problem I suggest starting again: use the DROP TABLE command to delete your table. Then use the Create command to reestablish the table. Then use an INSERT command to load only the first field. If that works then add the second field name (and a value), and so on . Each INSERT will add a new record – which has values only in the specified fields. Once you master the Insert command, then DROP the table and use the INSERT command to load a record with all fields and values.