Intro to JOINS in SQL: SQL 30 Day Challenge Day 14

แชร์
ฝัง
  • เผยแพร่เมื่อ 25 ต.ค. 2024

ความคิดเห็น • 2

  • @developbit
    @developbit 3 หลายเดือนก่อน

    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

    • @learningwithjelly
      @learningwithjelly  3 หลายเดือนก่อน

      Did you alias the table as c? Great job troubleshooting