A
Size: a a a
A
A
WITH t as (
select url , property_type from
pages p inner join cards on p.id = cards.id )
SELECT *
FROM t
WHERE url like '%avito%' and property_type = 'street_retail'
limit 10
RB
A
RB
A
A
RB
A
A
ГР
p.id = cards.id ?ГР
WITH t as (
select url , property_type from
(select * from pages limit 100) as p left join cards on p.id = cards.id )
SELECT *
FROM t
WHERE url like '%avito%' and property_type = 'street_retail'
limit 10AL
JD
PC
C
V
psql -h host -U user test_db < any_name.sql
ac
IA
IA