join with 1 row limit - Mailing list pgsql-novice

From Behringer Behringer
Subject join with 1 row limit
Date
Msg-id 370933.72551.qm@web45205.mail.sp1.yahoo.com
Whole thread Raw
Responses Re: join with 1 row limit  (Vibhor Kumar <vibhor.kumar@enterprisedb.com>)
Re: join with 1 row limit  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-novice
In mysql this query works fine, what is the equivalent in posgresql?

SELECT *
FROM
products p LEFT JOIN
products_images pi ON p.id = pi.product_id  LIMIT 1
WHERE products.company = 7

postgresql complains about LIMIT

This also fails

SELECT p.*
FROM
products p LEFT JOIN
(SELECT id,server_id,format,product_id FROM products_images pi WHERE pi.product_id = p.id LIMIT 1) pi ON pi.product_id
=p.id 
WHERE p.store_id = 1

with
There is an entry for table "p", but it cannot be referenced from this part of the query.

also this fails

SELECT p.*,
(SELECT id,server_id,format,product_id FROM products_images pi WHERE pi.product_id = p.id LIMIT 1) as AS pi(id, type)
FROM products p
WHERE p.store_id = 1

thanks





pgsql-novice by date:

Previous
From: Jasen Betts
Date:
Subject: Re: Collation and Case Insensitivity
Next
From: Vibhor Kumar
Date:
Subject: Re: join with 1 row limit