1
ivanlw 2014-12-08 05:50:46 +08:00 via iPhone
select avatar_url, nickname, topic_name, topic_content
from users, topic where users.uid = topic.uid and users.uid = 1 |
2
raptor 2014-12-08 09:07:50 +08:00
这跟postgresql没什么必然关系啊,就是个标准SQL语句的问题……
select u.avatar_url, u.nickname, t.* from topic t inner join users u on u.uid=t.uid where t.uid=1 |
3
liprais 2014-12-08 09:43:11 +08:00 via iPhone
买本sql的书看一下吧,推荐head first sql
|
4
hsu 2014-12-08 10:16:40 +08:00
有两个小建议
1.不到万不得已,不要用select * 2.可以多看看SQL相关的基础知识 |