-
-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Description
Hello.
Sometimes when browsing a table ("Browse Data" view) it's very useful to see joined columns from another table.
For example, if we have users and groups tables, and a user is assigned to any of the existing groups by their row ids (users table has a column named "group_id" that is a foreign key that references groups.id), it's useful while viewing the users table to join the groups table and see the group name along with the group row id, instead of looking every time in the groups table to see the group name.
Of course, we can achieve this behavior using the "Execute SQL" view and use a SQL query with JOIN to return desired columns along with joined ones, but the "Execute SQL" result has no filter, sorting and ability to delete/duplicate rows.
Thanks!