Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
AND (SELECT RIGHT(Articles.ByPassURL,7)<> '[placex')
AND (SELECT RIGHT(Articles.ByPassURL,7)!= '[placex')
Select [columns]
from URLtraffic
where RIGHT(Articles.ByPassURL,7) != '[placex')
Select [columns]
from Articles
where RIGHT(Articles.ByPassURL,7) <> '[placex'
--- I prefer [<>] to [!=] because it is most visible by me :-)
The correct suntax is to use RIGHT() function directly smile not in Sub select (as sparkbyte showed it)