Query between columns

Hi,
Is it possible to compare two columns of a collection? And how?

Like this syntax, even if incorrect

wixData.query('MYCOLLECTION').eq('col1', 'col2');
..
..

Thanks a lot
Claudio

Maybe your best shot would be to query the first Field and add an and query to match that against a second query. Just a thought let newQuery = query1.and(query2);

1 Like