iT邦幫忙

twrichgod 所有喜歡的回答 6

SQL如何只取出表A的資料,但是是用表B的資料作為條件

使用 distinct 吧。 SELECT distinct a.user_id FROM a JOIN b ON a.user_id=b.user_id an...

2019-07-28 ‧ 由 twrichgod 提問

SQL如何只取出表A的資料,但是是用表B的資料作為條件

SELECT id, user_id FROM `mail` WHERE user_id IN (SELECT user_id FROM `status`...

2019-07-27 ‧ 由 twrichgod 提問

SQL如何只取出表A的資料,但是是用表B的資料作為條件

http://sqlfiddle.com/#!9/e1233e/15 提供你另一個思路, 用subquery

2019-07-27 ‧ 由 twrichgod 提問

SQL如何只取出表A的資料,但是是用表B的資料作為條件

如果妳的Table A user_id 資料不重複可以使用exists Query 1: SELECT a.id, a.user_id FROM a WHER...

2019-07-27 ‧ 由 twrichgod 提問

Angular的CORS問題

添加jsnop_provider接著把你的http物件類別Http換成Jsnop參考:【 How to make a simple JSONP asynch...

2018-04-05 ‧ 由 twrichgod 提問