In this video, we will show:
- Retrieve data from two tables using a LEFT JOIN SQL query
- Configure an Advanced Database Layout
- Use it in a process flow and show the results
For example:
SELECT customer.customerid, customername, orderID, orderitem
FROM dbo.[customer]
LEFT JOIN orders
ON customer.customerid = orders.customerid;
Comments
0 comments
Article is closed for comments.