Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I don't know what's wrong with this query :

select * from products , top 1 * from pic 
where products.productId = pic.productId

I have Products and Pic tables , every products could have 1 to n pic and I would like to return every product and the first pic of that

The picture of diagram may help enter image description here

share|improve this question
What results are you getting? What results are you expecting? – Oded May 23 '11 at 13:13
@Oded , Incorrect syntax near the keyword 'top'. I wanna return all product with the first pic which is associated with it – Mostafa May 23 '11 at 13:14
I upvoted a better answer than mine (in my opinion), but now it's disappeared? – MatBailie May 23 '11 at 13:41
@Dems: Answers does not disappear .. They get temporarely deteted :) – Akram Shahda May 23 '11 at 13:44

3 Answers

up vote 3 down vote accepted

You need to have a way of uniquely identifying each pic, so I'm asuming that table as an ID column...

SELECT
  *
FROM
  products
LEFT JOIN
  pic
    ON pic.Id = (SELECT TOP 1 id FROM pic WHERE productID = products.ProductID ORDER BY id DESC)


EDIT

Inspired by another answer, using APPLY instead...

SELECT
  *
FROM
  products
OUTER APPLY
  (SELECT TOP 1 * FROM pic WHERE productID = products.ProductID ORDER BY id DESC) AS pic
share|improve this answer
Thank you ! That worked . – Mostafa May 23 '11 at 13:21

You need a subquery to

  • select the first PicID's for each ProductID
  • join with Pic table itself to get the additional columns
  • join with Products to get the product columns

SQL Statement

SELECT  *
FROM    Products prod
        LEFT OUTER JOIN Pic p ON p.ProductID = prod.ProductID
        LEFT OUTER JOIN (
          SELECT PicID = MIN(PicID)
                 , ProductID
          FROM   Pic
          GROUP BY
                 ProductID
        ) pm ON pm.PicID = p.PicID
share|improve this answer
If there is a product without picture - your script will not catch it. Change to LEFT JOIN – Parkyprg May 23 '11 at 13:18
@Parkyprg - you are right, I've changed it to left <vbg>. – Lieven Keersmaekers May 23 '11 at 13:29

There is also way with subsection but please avoid sub select as much as You can in yours TSQL

Select 
*
,(select top(1) adress from pic where pic.productid=products.id /* if u wanna you also can order by id */   ) as Id
from products 
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.