Re: Using row_to_json with %ROWTYPE ? - Mailing list pgsql-general

From Tim Smith
Subject Re: Using row_to_json with %ROWTYPE ?
Date
Msg-id CA+HuS5HizYQ4wKr0d_6x9RRb2y=w1zDv_bhdmDM_MKMPhDhOnw@mail.gmail.com
Whole thread Raw
In response to Re: Using row_to_json with %ROWTYPE ?  (David Johnston <david.g.johnston@gmail.com>)
Responses Re: Using row_to_json with %ROWTYPE ?  (David Johnston <david.g.johnston@gmail.com>)
List pgsql-general
You're most welcome to look at my view definition view if you don't
believe me ....

View definition:
 SELECT a.session_id,
    a.session_ip,
    a.session_user_agent,
    a.session_start,
    a.session_lastactive,
    b.user_id,
    b.tenant_id,
    b.reseller_id,
    b.tenant_name,
    b.user_fname,
    b.user_lname,
    b.user_email,
    b.user_phone,
    b.user_seed,
    b.user_passwd,
    b.user_lastupdate,
    b.tenant_lastupdate
   FROM app_sessions a,
    app_users_vw b
  WHERE a.user_id = b.user_id;


pgsql-general by date:

Previous
From: Tim Smith
Date:
Subject: Re: Using row_to_json with %ROWTYPE ?
Next
From: David Johnston
Date:
Subject: Re: Using row_to_json with %ROWTYPE ?