Answer the question
In order to leave comments, you need to log in
How to implement join of two tables without duplicate id columns?
Query: SELECT * FROM reg_admin JOIN more_people_info ON reg_admin.user_id = more_people_info.user_id Result
:
That is, you need to display user_id only at the beginning, and remove the one in the middle
Answer the question
In order to leave comments, you need to log in
SELECT reg_admin.*, more_people_info.{список полей, которые нужны из этой таблицы}
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question