我在数据库中有:
User:
id | name
1 | one
2 | two
3 | three
4 | four
5 | five
House:
id | name
1 | London
2 | Barcelona
UserHouse:
id_user | id_house
1 | 1
2 | 2
4 | 1
我如何在 SQL 查询中使用 IF 和 ISSET?
从用户中选择 *
我想收到:
用户:
name | has_house
1 | yes
2 | yes
3 | no
4 | yes
5 | no
我必须从SELECT * from User开始我的查询。我不能在 House 或 UserHouse 中加注星标。有可能吗?如果是,如何?
我也可以使用 DOCTRINE 和 Symfony。