Не могу понять, как работать с псевдонимами БД в запросе
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;