开发者

Comparing 2 columns in the same table with the "Like" function

开发者 https://www.devze.com 2022-12-22 02:17 出处:网络
I\'m trying to come up with a way to query the values in two different columns in the same table where the result set will indicate instances where the value of columnB doesn\'t contain the value of c

I'm trying to come up with a way to query the values in two different columns in the same table where the result set will indicate instances where the value of columnB doesn't contain the value of columnA.

For example, my "Nodes" table contains columns "NodeName" and "DNS". The values should look similar to the following:

NodeName    DNS
Router1     Router1.mydomain.com

I want to run a query to show which rows have a DNS value that does not contain (or begin with) the value of the NodeName field. I think the query should function something similar to the following, but obviously I'm missing something with regard to th开发者_运维知识库e use of "Like" in this situation.

SELECT NodeName, DNS
WHERE DNS NOT LIKE 'NodeName%'

I'm using SQL Server 2005, and any suggestions would be greatly appreciated... :)


SELECT NodeName, DNS
WHERE DNS NOT LIKE NodeName + '%' AND DNS NOT LIKE '%' + NodeName + '%'

Your DNS LIKE 'NodeName%' is comparing the string literal "NodeName" with DNS

Edit:

Nissan Fan added NOT LIKE '%' + NodeName + '%' which would mean NOT LIKE NodeName + '%' is not needed.

It depends if want "contains" or "starts with": take your pick.

@Nissan Fan: thanks: you should post it as your own answer...


SELECT USR.USER_ID, USR.LDAP_TITLE, LRM.LDAP_ROLE, LRM.ROLE_ID, RLS.PRIMARY_ROLE
FROM USERS USR, NEW_LDAP_ROLE_MATCH LRM, NEWROLES RLS
WHERE (INSTR(USR.LDAP_TITLE,LRM.LDAP_ROLE) > 0) 
AND LRM.ROLE_ID = RLS.ROLE_ID;

It took lot of time to get the scenario working.Check out below link for sql queries. http://www.anaesthetist.com/mnm/sql/query.htm

0

精彩评论

暂无评论...
验证码 换一张
取 消