Re: Determine if range list contains specified integer

2022-05-27 Thread Sándor Daku
ow to change join so that type ranges in list like 6-9 are also returned? > Eq. f list contains 6-9, Type 6,7,8 and 9 shoud included in report. > > Postgres 13 is used. > > Posted also in > > > https://stackoverflow.com/questions/72404218/how-determine-if-range-list-contains-spec

Re: Determine if range list contains specified integer

2022-05-27 Thread David G. Johnston
On Fri, May 27, 2022 at 9:19 AM Andrus wrote: > Product type table contains product types. Some ids may missing : > > > create table artliik (liiginrlki char(3) primary key); > As an aside, don't use the "character" data type: https://wiki.postgresql.org/wiki/Don%27t_Do_This#Don.27t_use_cha

Re: Determine if range list contains specified integer

2022-05-27 Thread Adrian Klaver
On 5/27/22 03:51, Andrus wrote: Hi! How to all properties for given type. Query     select id     from artliik     join strings on ','||trim(strings.kirjeldLku)||',' like '%,'||trim(artliik.liiginrlki)||',%' returns date for single integer list only. How to change join so that type rang

Determine if range list contains specified integer

2022-05-27 Thread Andrus
27;%,'||trim(artliik.liiginrlki)||',%' returns date for single integer list only. How to change join so that type ranges in list like 6-9 are also returned? Eq. f list contains 6-9, Type 6,7,8 and 9 shoud included in report. Postgres 13 is used. Posted also in https://stackoverflow.com/questions/72404218/how-determine-if-range-list-contains-specified-integer Andrus.