Management Information Systems: Managing The Digital Firm (16th Edition)
Management Information Systems: Managing The Digital Firm (16th Edition)
16th Edition
ISBN: 9780135191798
Author: Kenneth C. Laudon, Jane P. Laudon
Publisher: PEARSON
Expert Solution & Answer
Book Icon
Chapter 13, Problem 1IQ

Explanation of Solution

Information systems courses:

The job seeker tells about the course of information system. The courses which is taken by job seeker has various functionalities. They are data analytics, system development, MIS, and database manipulation.

Explanation of Solution

SQL query:

To create a table in SQL, the programmer must know about syntax for the code.

The syntax for creating a table is as follows:

CREATE TABLE TABLE_NAME (

  Column1 datatype,

  Column2 datatype,

  …

);

The following table “Employee” is created using the below given syntax in SQL.

CREATE TABLE Employee (EMP_NUM CHAR(3) PRIMARY KEY, EMP_LNAME VARCHAR(15), EMP_FNAME VARCHAR(15), EMP_INITIAL CHAR(1), EMP_HIREDATE DATE, JOB_CODE CHAR(3), FOREIGN KEY (JOB_CODE) REFERENCES JOB);

Explanation:

The table named “Employee” was created using the above query as per the given data types. The data type for “EMP_NUM”, “EMP_INITIAL”, and “JOB_CODE” is given as “CHAR”.  The data type for “EMP_LNAME”, “EMP_FNAME” is “VARCHAR” and the data type for “EMP_HIREDATE” is given as “DATE”.

Want to see more full solutions like this?

Subscribe now to access step-by-step solutions to millions of textbook problems written by subject matter experts!
Knowledge Booster
Background pattern image
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education