Basically I have two tables in the same database and I want to join them.
Aka created a virtual column in one table that adds a friendly name:
SELECT database_1.*, database_2.device_type
FROM database_1
INNER JOIN database_2 ON database_2.user_agent = database_1.agent
Is it possible to do this in caravel?
Tnx