Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两张桌子。两者都有一个字段名称相同,即user_id。一张表填充了用户名等数据。我想将此用户名放入其他表并在网页上显示用户名。
user_id
例如表a有user_id和user_name
a
user_name
表b有id和user_id
b
id
我想user_name通过b它的user_id.
谁能帮我。
您一定是 SQL 新手。这是一个基本的join:
join
select a.user_name from TableB b join TableA a on a.user_id = b.user_id;
我建议你买一本关于 SQL 的基础书,这样你就可以更有效地做你想做的应用程序。
select a.user_name ,b.user_id from a,b where a.user_id = b.user_id;