👋 Hi there, welcome to Datascale: SQL+Data modeling. We help create database diagrams and map out data models from existing schema and SQL queries 🌱. Find us on LinkedIn 🎉
createtableifnotexists table_1 (
id int notnull,
name string
);
createtableifnotexists table_2 (
id int notnull,
name string
);
/* create a view depending on the to tables */createor replace view view_1 asselect
a.id,
b.name
from table_1 as a
innerjoin table_2 as b
on
Related blogs
Contents
Section
Get a clear view of your SQL dependencies
Datascale helps reverse engineer data models from existing schema and SQL queries