Simple SQL Select from 2 Tables (What is a Join?)

后端 未结 2 424
有刺的猬
有刺的猬 2020-12-04 00:56

I\'m new to SQL. I have a simple problem with getting the results from two different tables.

I have two tables in a database. The first table has a column with an id

相关标签:
2条回答
  • 2020-12-04 01:40

    You do, in fact, want to JOIN the two tables:

    SELECT * FROM
        TABLE_USERS LEFT JOIN TABLE_GROUPS 
        ON TABLE_USERS.group = TABLE_GROUPS.id
    

    The trick of joining tables is to find the values that must match in the two tables, and use the on to tell SQL to match them. This table has a ID column to let you do that = you will join the table, ON, and then list the values that need to be equal.

    If you do not want all of the columns in both tables, you can simply list only the columns you need in your final query. This means that instead of Select *, you list the columns you want. As shown below, if a column appears with the same name in both tables, you need to prepend the table name, so that SQL know which value you want.

    SELECT TABLE_USERS.ID, Username, Groupname 
      FROM TABLE_USERS 
         LEFT JOIN TABLE_GROUPS 
         ON TABLE_USERS.group = TABLE_GROUPS.id
    
    0 讨论(0)
  • 2020-12-04 01:43

    You want a JOIN:

    SELECT
        u.id,
        username,
        groupname
    FROM
        TABLE_USERS AS u
    LEFT JOIN TABLE_GROUPS AS g
        ON u.group = g.id
    
    0 讨论(0)
提交回复
热议问题