Re: SELECT FOR UPDATE returns zero rows

From: Dima Pavlov <imyfess(at)gmail(dot)com>
To: amul sul <sulamul(at)gmail(dot)com>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: SELECT FOR UPDATE returns zero rows
Date: 2016-09-18 13:50:56
Message-ID: CAHt_LuuVNWWeXK_ovFzG_F4NN3Wk3-kt968g759TBJZLONfqng@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

1. 1 row.
t2c2: 100

2. 1 row.
_pk:1
t1c1: 123456789
t1c2: 100
t1c3: "string_value_1"

*Example:*

CREATE TABLE t1 (_pk serial, t1c1 integer, t1c2 integer, t1c3 text);
CREATE TABLE t2 (_pk serial, t2c1 text, t2c2 integer);
insert into t1 (t1c1, t1c2, t1c3) values(123456789, 100, 'string_value_1');
insert into t2 (t2c1, t2c2) values('string_value_2', 100);

On Sun, Sep 18, 2016 at 9:41 AM, amul sul <sulamul(at)gmail(dot)com> wrote:

> What is output of following queries:
>
> 1. SELECT t2c2 FROM t2 WHERE t2c1 = "string_value_2"
> 2. SELECT * FROM t1 WHERE t1c1 = 123456789 AND t1c2 IN (SELECT t2c2
> FROM t2 WHERE t2c1 = "string_value_2")
>
> Regards,
> Amul
>

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message amul sul 2016-09-19 05:09:43 Re: SELECT FOR UPDATE returns zero rows
Previous Message Amit S. 2016-09-18 07:09:18 Re: :