Forum Moderators: open
www.domain.com
www.other.com/page.htm
www.domain.com/links.html
www.something.com/pages/page.htm
www.domain.com/about.html
etc.
if I want to pull all of the records that contain 'domain.com' can I just say:
select * from table where field contains 'domain.com'
or do I need to pull everything and loop through the data to check?
But a correction, the * (or its ASP equivalent) should be after the string
LIKE 'www.domain.com*' :)
Best bet is to experiment, the perfoemance may be fine .