Respuesta :

In order to write the code for the people that have the shipments over 16000, pounds would have to write the SQL statement as:

  • Select distinct c.city_name, c.population
  • from City c
  • join Shipment s on s.city_id = c.city_id
  • where s.weight > 16000

What is a select statement on sql?

This is a statement that is used to bring out the data that is contained in specified rows and table in a given database.

In the line of code that we have above, the output would be the areas in the city called c that has the weight of the items to be over 16000 pounds.

Read more on SQL statements here: https://brainly.com/question/25694408

#SPJ4