Skip to content
Advertisement

How to JOIN two SQL tables to get a specific additional data based on matching id’s

I haven’t done a JOIN query in a long time, so I’m pretty rusty. What I have: a table called triggers and users. Initially, I just had a query that selected all of the information from the triggers table. This includes a user_id. Well, instead of just showing a user_id, I thought it would make sense to turn the user_id into the username.

The records are from all sorts of usernames, therefore the username shown will have to match the user_id from the triggers table to the id of the users table. This is where I get lost. I can’t figure out what to do once I match the t.user_id with the u.id. How do I get the u.username for these records?

I still want all the records to show just as it would if you do SELECT * FROM triggers. I just want to be able to use the correct username for the record.

Here is what I’ve tried. I get errors starting here:

Any help would be appreciated. The database tables are shown below.

triggers = t

users = u

Advertisement

Answer

for sql code you need only

User contributions licensed under: CC BY-SA
4 People found this is helpful
Advertisement