Three tables join in SQL

前端 未结 2 429
星月不相逢
星月不相逢 2021-01-28 19:17

I am newbie in SQL. I want to join three tables in SQL. Below is my query, please check and correct me where I am wrong -

Tables:

  • CARD: ID,Code,Name,CC
2条回答
  •  北荒
    北荒 (楼主)
    2021-01-28 19:44

    You are missing the keyword ON, placed after the table name.

    INNER JOIN tablename ON condition...
    

提交回复
热议问题