foo> - Search results in mailing lists

2024-12-03 00:32:13 | Re: Command Line option misunderstanding (Ken Dibble)

foo;'    or                echo '\x \\ SELECT * FROM foo;' | psql            (\\ is the separator meta-command.)            Each SQL command

2021-11-26 18:33:01 | Re: Simple question about running a function. (SQL Padawan)

foo(); NOTICE: Hello from void function foo ----- (1 row) So, then I ran this. -- in PLpgSQL

2021-08-21 15:04:36 | triggers and parameters (Roger Mason)

foo_insert () RETURNS TRIGGER AS $$ DECLARE BEGIN INSERT INTO foo SELECT * FROM -- how can I pass

2020-09-19 17:20:34 | Re: Feature proposal for psql (Tom Lane)

foo" and :'foo', I'm wondering about something like :(MyQuery1,table_name,id_value) which

2020-04-25 14:35:22 | Re: LATIN9 - hex in varchar after convert (Tom Lane)

foo (f1 text); CREATE TABLE regression=# insert into foo values ('this is a test'); INSERT

2019-06-12 14:44:09 | RE: Error when doing sql (David Raymond)

FOO...;" becomes "create table foo...;" before it gets run by the server. "SELECT * FrOm fOO;" gets

2019-03-13 23:43:12 | Re: Parallel Aggregates for string_agg and array_agg (Tomer Praizler)

foo 9,10 50 The primary key is combined of 6 columns in this example

2018-01-22 11:45:44 | create subscription, connection string, password in log not hide (ferraresso@tin.it)

foo host=bar user=repuser password=secret' PUBLICATION mypub;" Where I can see the connection

2017-12-15 00:01:11 | RE: r there downsides to explicitly naming a pk column xxxx_pk (Sharon Giannatto)

foo.idfoo.id>" can easily be mis-typed as "bar.id" and a query

2017-11-15 22:51:39 | Re: [NOVICE] How to get n records from parent table and theirchildren (Lutz Horn)

foo 2 | bar 3 | baz (3 rows) lutz=> select * from child;id | name | parent_id ----+-------------+----------- 1 | foo-child

2017-11-04 21:41:49 | [NOVICE] Re: Old solutions for listing tables by tablespace broken in PG 10for partitions. (Stephen Froehlich)

foo'; --Stephen From: pgsql-novice-owner@postgresql.org [mailto:pgsql-novice-owner@postgresql.org] On Behalf Of Stephen Froehlich Sent: Saturday, November 04, 2017 12:35 PM To: pgsql-novice@postgresql.org

2017-03-09 13:51:17 | [NOVICE] SELECT FOR UPDATE with ORDER BY (Bogdan Zlatanov)

foo' AND t.attr2 = 'bar' ORDER BY t.id ASC FOR UPDATE; -- Update some of the rows

2017-01-23 17:31:36 | Re: [SPAM] [NOVICE] Override Like Operator (Moreno Andreo)

upper() https:///docs/9.1/static/functions-string.html i.e. select foo from bar where upper(foobar) like '%BLAH%'; HTH Moreno

2016-09-29 13:31:42 | Re: JSON, JSONB questions (Merlin Moncure)

foo (j jsonb); CREATE TABLE postgres=# insert into foo values('[{"a": "b"}]'); INSERT 0 1 postgres

2016-08-02 16:48:35 | Column Does Not Exist Error: Order by an Particular Cell of an Array (David Muller)

foo ( value integer PRIMARY KEY); CREATE TABLE gears=> insert into foo Values(1); INSERT 0 1 gears