test.hits
SELECT count() FROM test.hits WHERE NOT ignore(concat(URL, URL))
SELECT count() FROM test.hits WHERE NOT ignore(concat(URL, SearchPhrase))
SELECT count() FROM test.hits WHERE NOT ignore(concat(MobilePhoneModel, SearchPhrase))
SELECT count() FROM test.hits WHERE NOT ignore(concat(URL, 'Hello'))
SELECT count() FROM test.hits WHERE NOT ignore(concat('World', SearchPhrase))
SELECT count() FROM test.hits WHERE NOT ignore(concat(MobilePhoneModel, 'Hello'))
SELECT count() FROM test.hits WHERE NOT ignore(concat(PageCharset, 'a'))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}{{}}', URL, URL))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}{{}}', URL, SearchPhrase))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}{{}}', MobilePhoneModel, SearchPhrase))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}Hello', URL))
SELECT count() FROM test.hits WHERE NOT ignore(format('World{{}}', SearchPhrase))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}Hello', MobilePhoneModel))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}a', PageCharset))
SELECT count() FROM test.hits WHERE NOT ignore(concat(URL, URL, URL))
SELECT count() FROM test.hits WHERE NOT ignore(concat(URL, SearchPhrase, MobilePhoneModel))
SELECT count() FROM test.hits WHERE NOT ignore(concat(URL, 'Hello', URL))
SELECT count() FROM test.hits WHERE NOT ignore(concat('Hello', SearchPhrase, 'World'))
SELECT count() FROM test.hits WHERE NOT ignore(concat(MobilePhoneModel, 'Hello', PageCharset))
SELECT count() FROM test.hits WHERE NOT ignore(concat('a', PageCharset, 'b'))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}{{}}{{}}', URL, URL, URL))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}{{}}{{}}', URL, SearchPhrase, MobilePhoneModel))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}Hello{{}}', URL, URL))
SELECT count() FROM test.hits WHERE NOT ignore(format('Hello{{}}World', SearchPhrase))
SELECT count() FROM test.hits WHERE NOT ignore(format('{{}}Hello{{}}', MobilePhoneModel, PageCharset))
SELECT count() FROM test.hits WHERE NOT ignore(format('a{{}}b', PageCharset))