Pseudonyms | псевдоним

Не могу понять, как работать с псевдонимами БД в запросе
I can’t figure out how to work with database aliases in a query

SELECT orders.created_at, customers.name, products.name
FROM orders
JOIN products ON products.id = orders.product_id
JOIN customers ON customers.id=orders.customer_id;

At the moment it is not possible to use different tables in one query. This will be added in the new version.

1 Like

Back to Flipabit >
Copyright © 2018. Flipabit Team. All rights reserved.