CREATE TABLE your_project.your_dataset.relationship_model
(
from_node STRING,
to_node STRING,
relationship STRING
);
INSERT INTO your_project.your_dataset.relationship_model
(from_node, to_node, relationship) VALUES
(‘Environment’, ‘Renewable Energy’, ‘drives’),
(‘Environment’, ‘Engineering’, ‘regulates’),
(‘Environment’, ‘Economics’, ‘impacts’),
(‘Environment’, ‘Innovation’, ‘inspires’),
(‘Engineering’, ‘Technology’, ‘develops’),
(‘Engineering’, ‘Renewable Energy’, ‘improves’),
(‘Engineering’, ‘Innovation’, ‘enables’),
(‘Engineering’, ‘Economics’, ‘influences’),
(‘Innovation’, ‘Technology’, ‘advances’),
(‘Innovation’, ‘Economics’, ‘stimulates’),
(‘Innovation’, ‘Renewable Energy’, ‘enhances’),
(‘Innovation’, ‘Engineering’, ‘drives’),
(‘Economics’, ‘Renewable Energy’, ‘supports’),
(‘Economics’, ‘Technology’, ‘finances’),
(‘Economics’, ‘Innovation’, ‘drives’),
(‘Economics’, ‘Engineering’, ‘funds’),
(‘Technology’, ‘Renewable Energy’, ‘optimizes’),
(‘Technology’, ‘Innovation’, ‘facilitates’),
(‘Technology’, ‘Engineering’, ‘advances’),
(‘Renewable Energy’, ‘Environment’, ‘preserves’),
(‘Renewable Energy’, ‘Economics’, ‘benefits’),
(‘Renewable Energy’, ‘Technology’, ‘depends on’),
(‘Renewable Energy’, ‘Engineering’, ‘requires’);
Vuyisa Jobo is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.