ขนาดวิดีโอ: 1280 X 720853 X 480640 X 360
แสดงแผงควบคุมโปรแกรมเล่น
เล่นอัตโนมัติ
เล่นใหม่
I was unsuccessful in using the c.CustomerID, I used the following which still works:select customers.CustomerId, invoices.InvoiceId, invoices.InvoiceDatefrom customersjoin invoices On customers.CustomerId = invoices.InvoiceId
Did you alias the table as c? Great job troubleshooting
I was unsuccessful in using the c.CustomerID, I used the following which still works:
select customers.CustomerId, invoices.InvoiceId, invoices.InvoiceDate
from customers
join invoices
On customers.CustomerId = invoices.InvoiceId
Did you alias the table as c? Great job troubleshooting