Answers for "mysql view from multiple tables"

SQL
0

mysql view from multiple tables

CREATE VIEW V AS (

  SELECT i.country,i.year,p.pop,f.food,i.income FROM
    INCOME i
  LEFT JOIN 
    POP p 
  ON
    i.country=p.country
  LEFT JOIN
    Food f
  ON 
    i.country=f.country
  WHERE 
    i.year=p.year
  AND
    i.year=f.year
);
Posted by: Guest on June-19-2020

Code answers related to "mysql view from multiple tables"

Code answers related to "SQL"

Browse Popular Code Answers by Language