You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Being able to query tables with partner tables as if they were the same table would be pretty cool.
Not sure if this should be allowed for one-to-many tables.
Example:
SELECTperson.id,
person.name,
person.phone,
emergency_contact.name,
emergency_contact.phoneFROM
person
where
CREATETABLEperson (
id UINT PRIMARY KEY,
name SMALL_TEXT,
phone SMALL_TEXT,
emergency_contact_id INTFOREIGN KEYREFERENCES person (id)
)
-- Foreign Key doesn't need to be same table, better example could have been used
The text was updated successfully, but these errors were encountered:
Being able to query tables with partner tables as if they were the same table would be pretty cool.
Not sure if this should be allowed for one-to-many tables.
Example:
where
The text was updated successfully, but these errors were encountered: