GradePack

    • Home
    • Blog
Skip to content
bg
bg
bg
bg

GradePack

For the following tables called “instructor” and “class”,  w…

For the following tables called “instructor” and “class”,  write a SQL query to perform the given search.  instructor column_name |     data_type     ————-+——————- id          | numeric name        | character varyingclass column_name | data_type ————-+———– info        | json   Example data tables are given below. However, your code should be generic and work with any valid data. instructor id |       name       —-+——————  1 | Terence Parr  2 | Yannet Interian  3 | Diane Woodbridge  4 | Shan Wang  5 | Michael Ruddy(5 rows)class                      info                       ————————————————– {                                                        “name” : “Relational Databases”,                 “class_id” : “MSDS691”,                          “instructor_id” : 3,                             “start_date” : “2021-08-23”              } {                                                        “name” : “Time Series Analysis”,                 “class_id” : “MSDS604”,                          “instructor_id” : 4,                             “start_date” : “2021-10-18”              } {                                                        “name” : “EDA and Viosualization”,               “class_id” : “MSDS593”,                          “instructor_id” : 4,                             “start_date” : “2021-07-05”              } {                                                        “name” : “Communications for Analytics”,         “class_id” : “MSDS610”,                          “instructor_id” : 5,                             “start_date” : “2021-08-23”             } {                                                        “name” : “Intro to Machine Learning”,            “class_id” : “MSDS621”,                          “instructor_id” : 1,                             “start_date” : “2021-10-18”              } {                                                        “name” : “Machine Learning Laboratory”,          “class_id” : “MSDS699”,                          “instructor_id” : 3,                             “start_date” : “2021-10-18”              }(6 rows)   *You can create the tables using the following queries. CREATE TABLE instructor(    id NUMERIC,    name VARCHAR,    PRIMARY KEY (id));INSERT INTO instructor VALUES(1, ‘Terence Parr’),(2, ‘Yannet Interian’),(3, ‘Diane Woodbridge’),(4, ‘Shan Wang’),(5, ‘Michael Ruddy’);CREATE TABLE class(    info json);INSERT INTO class VALUES(    ‘{    “name” : “Relational Databases”,    “class_id” : “MSDS691”,    “instructor_id” : 3,    “start_date” : “2021-08-23”    }’),(    ‘{    “name” : “Time Series Analysis”,    “class_id” : “MSDS604”,    “instructor_id” : 4,    “start_date” : “2021-10-18”    }’),(    ‘{    “name” : “EDA and Viosualization”,    “class_id” : “MSDS593”,    “instructor_id” : 4,    “start_date” : “2021-07-05”    }’),(    ‘{    “name” : “Communications for Analytics”,    “class_id” : “MSDS610”,    “instructor_id” : 5,    “start_date” : “2021-08-23”    }’),(    ‘{    “name” : “Intro to Machine Learning”,    “class_id” : “MSDS621”,    “instructor_id” : 1,    “start_date” : “2021-10-18”    }’),(    ‘{    “name” : “Machine Learning Laboratory”,    “class_id” : “MSDS699”,    “instructor_id” : 3,    “start_date” : “2021-10-18”    }’);

Read Details

Read the following sentence.   Choose the correct form of th…

Read the following sentence.   Choose the correct form of the verb.   She _____________ at USF for so long that she forgot when she started.

Read Details

Read the following sentence.   Choose the correct form of th…

Read the following sentence.   Choose the correct form of the verb.   They __________________ at USF for two years.  Now,  they work at Microsoft.

Read Details

Read the following sentence.   Choose the past tense OR pres…

Read the following sentence.   Choose the past tense OR present perfect form of the verb.   They ______________________ in Paris for several years.  They really like it there.

Read Details

The thyroid gland secretes growth hormone.

The thyroid gland secretes growth hormone.

Read Details

The hip joint allows a greater freedom of movement than the…

The hip joint allows a greater freedom of movement than the shoulder joint.

Read Details

The following properties of a map can be distorted by a proj…

The following properties of a map can be distorted by a projection; 

Read Details

A reference map can symbolize:

A reference map can symbolize:

Read Details

Bonus question: What is the last name of your CHM 1102 instr…

Bonus question: What is the last name of your CHM 1102 instructor? (not a multiple choice question)

Read Details

Calculate the pH of a 0.65 M solution of 2-chloropropionic a…

Calculate the pH of a 0.65 M solution of 2-chloropropionic acid?  The “small x” approximation might be used when solving this problem.  Ka = 1.58 × 10–3.  

Read Details

Posts pagination

Newer posts 1 … 43,995 43,996 43,997 43,998 43,999 … 69,825 Older posts

GradePack

  • Privacy Policy
  • Terms of Service
Top