- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Rathinakararaj_
New Member
06-14-2021
02:43 AM
I am looking for an analytical query to fetch list of URLs from browser records that does not match a pagename with http and without http and with partial URL segments...
example : select * from browser records where pagename is not in ("abc.com", "https://abc.com",%abc.com%)
1 Solution
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Morelz
Builder
06-14-2021
03:46 AM
Can you not use something like below?
SELECT * FROM browser_records WHERE pagename not like "*abc.com*"
Ciao
- Mark as New
- Bookmark Message
- Subscribe to Message
- Mute Message
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Morelz
Builder
06-14-2021
03:46 AM
Can you not use something like below?
SELECT * FROM browser_records WHERE pagename not like "*abc.com*"
Ciao
