subject

For the location with the most companies, list the names of the people and the companies they work for. The output should consist of two columns: PEOPLE. NAME COMPANIES. NAME Schema There are 3 tables: PEOPLE, COMPANIES, LOCATIONS.
PEOPLE
Name Type Description
ID STRING Unique ID of the person.
NAME STRING NAME of the person
COMPANY_ID STRING ID of the company that person works for.
COMPANIES
Name Type Description
ID STRING Unique ID of the company
NAME STRING NAME of the company
LOCATION_ID STRING ID of the location of the company
LOCATIONS
Name Туре Description
ID STRING Unique ID of the location
NAME STRING Name of the location
Sample Data Tables
PEOPLE
ID NAME COMPANY_ID
a3c7f250f72e452fa5030d587f14922b Chris 0734a7703d1d4dab8f87be8396415452
71a1e133e7ca4f128f43eed1f5a3a8bc Sam 55865e7b74ef46a389a1edb9de030b9c
5a439620490646158bc6dd548ddeab21 Faker 2268c402cdfd48c4a7ee8d3a88c162e0
COMPANIES
IID NAME LOCATION_ID 0734a7703d1d4dab8f87be8396415452 Wright-Phillips e2ec9af444ff4e1aaa0b2f4aa19e7063
55865e7b74ef46a389a1edb9de030b9c HazardEden e2ec9af444ff4e 1 aaa0b2f4aa19e7063
2268c402cdfd48c4a7ee8d3a88c162e0 Palmieri 2268c402cdfd48c4a7ee8d3a88c162e0
LOCATIONS
ID NAME
e2ec9af444ff4e1aaa0b2f4aa 19e7063 Wrightmouth b927735edd1d4354a0a45d8c22e45a53 New Joseph
Sample Output
Chris Wright-Phillips
Sam Hazard Eden
Explanation
Wrightmouth is the location with the most companies. Chris and Sam work there at the companies listed.

ansver
Answers: 1

Another question on Computers and Technology

question
Computers and Technology, 23.06.2019 07:30
What is the original authority for copyright laws
Answers: 1
question
Computers and Technology, 23.06.2019 21:40
Draw the resistor’s voltage and current phasors at t=15ms. draw the vectors with their tails at the origin. the orientation of your vectors will be graded. the exact length of your vectors will not be graded.
Answers: 2
question
Computers and Technology, 23.06.2019 22:30
How many points do i need before i can send a chat
Answers: 1
question
Computers and Technology, 24.06.2019 12:50
Write a new lc-3 trap subroutine (i.e. a subroutine that will be invoked via the trap instruction) that will receive a numeric digit entered at the keyboard (i.e. an ascii character), echo it to the screen, and return in r0 the corresponding numeric value: so if the user types the digit '7', the character '7' will appear on the screen, but the value returned in r0 will be b0000 0000 0000 0111 (#7) you may not use any trap calls in your code - you must implement the "polling" code that interrogates the keyboard status and data registers. ; getnum_tsr ; a subroutine for obtaining a numeric value ; given ascii numeric digit input to keyboard. ; the numeric digit is echoed to the console (e.g. '7' = b0000 0000 0011 0111), ; but the value returned in r0 is the actual numeric value ; corresponding to the digit (e.g. b0000 0000 0000 0111 =
Answers: 3
You know the right answer?
For the location with the most companies, list the names of the people and the companies they work f...
Questions
Questions on the website: 13722363