Hey all,
So lets say I have 2 tables:
companies
[id]
[name]
[primary_user] = users.id
users
[id]
[first_name]
[last_name]
I need to show all users AND show the primary user, right now I am only showing the primary user
(for use in a php select field)
On a side note, is it the norm to store a persons name in two fields or one field? I know I can explode it on a white space to separate the names, but what if someone has a funky name like: Bob Jones Smith Willams lolCode:SELECT u.id , u.first_name , u.last_name FROM users AS u LEFT JOIN companies AS c ON u.id = c.primary_user WHERE c.id = 1 ORDER BY u.first_name



Reply With Quote




Bookmarks