Quick Search for:  in language:    
SQL,Enables,Server,perform,comparison,between
   Code/Articles  |  Newest/Best  |  Community  |  Jobs  |  Other  |  Goto  | 
CategoriesSearch Newest CodeCoding ContestCode of the DayAsk A ProJobsUpload
SQL Stats

 Code: 44,501. lines
 Jobs: 125. postings

 How to support the site

 
Sponsored by:

 
You are in:
 
Login





Latest Code Ticker for SQL.
Inline Views
By Thivya Prabakaran on 1/6


Create thousand Data Base users quickly
By N.D.I.Samantha on 1/1


Numbers from String
By Jeff Michelson on 12/30


Number to words in a single query
By Joseph Varghese on 12/24


Click here to put this ticker on your site!


Add this ticker to your desktop!


Daily Code Email
To join the 'Code of the Day' Mailing List click here!

Affiliate Sites



 
 
   

SQL 2 String-lists comparison

Print
Email
 
VB icon
Submitted on: 12/18/2003 6:25:53 AM
By: Mohamed EL-Zahaby 
Level: Beginner
User Rating: Unrated
Compatibility:SQL Server 2000

Users have accessed this code 489 times.
 
(About the author)
 
     Enables SQL Server to perform a comparison between two string lists ; the items sperated with a Delimiter (same one in both strings) ; it splits the twos strings and then check if all of the first array or string's elements in the second array or not ; can be used in stored procedures/views/functions Special Thanks to GuyH http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=653&lngWId;=5

 
code:
Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
 
Terms of Agreement:   
By using this code, you agree to the following terms...   
1) You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.   
2) You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
3) You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
4) You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.

--**************************************
--     
-- Name: SQL 2 String-lists comparison
-- Description:Enables SQL Server to per
--     form a comparison between two string lis
--     ts ; the items sperated with a Delimiter
--      (same one in both strings) ; it splits 
--     the twos strings and then check if all o
--     f the first array or string's elements i
--     n the second array or not ; can be used 
--     in stored procedures/views/functions
Special Thanks TO GuyH 
http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=653&lngWId;=5
-- By: Mohamed EL-Zahaby
--
-- Inputs:2 STRINGS that you would like 
--     to split down into individual elements,a
--     nd check if the first elements in the se
--     cond array or not based on the DELIMITER
--      specified
--
-- Returns:A bit true or false; True if 
--     the second array's elements contains all
--      of the first array elements
alsto returns 1 OR true OF the first input string IS NULL 
AND returns false or 0 IF the second input IS NULL
--
--This code is copyrighted and has-- limited warranties.Please see http://
--     www.Planet-Source-Code.com/vb/scripts/Sh
--     owCode.asp?txtCodeId=793&lngWId;=5--for details.--**************************************
--     

CREATE FUNCTION dbo.CMPlist1(@String varchar(4000), @Delimiter char(1),@String1 varchar(4000))
RETURNS bit
AS
     BEGIN
    IF (@String IS null) 
    RETURN 1
    IF (@String1 IS null) 
    RETURN 0
     DECLARE @INDEX INT
     DECLARE @SLICE varchar(4000)
     DECLARE @Falgz bit
     DECLARE @Results TABLE(Items varchar(4000))
     SELECT @INDEX = 1
     WHILE @INDEX !=0
         BEGIN	
         	SELECT @INDEX = CHARINDEX(@Delimiter,@STRING1)
         	IF @INDEX !=0
         		SELECT @SLICE = LEFT(@STRING1,@INDEX - 1)
         	ELSE
         		SELECT @SLICE = @STRING1
         	INSERT INTO @Results(Items) VALUES(@SLICE)
         	SELECT @STRING1 = RIGHT(@STRING1,LEN(@STRING1) - @INDEX)
         	IF LEN(@STRING1) = 0 BREAK
     END

SET @INDEX = 1 SET @Falgz =1 WHILE @INDEX !=0 BEGIN SELECT @INDEX = CHARINDEX(@Delimiter,@STRING) IF @INDEX !=0 SELECT @SLICE = LEFT(@STRING,@INDEX - 1) ELSE SELECT @SLICE = @STRING IF @SLICE IN ( SELECT Items FROM @Results) SET @Falgz = @Falgz & 1 ELSE SET @Falgz = @Falgz & 0 SELECT @STRING = RIGHT(@STRING,LEN(@STRING) - @INDEX) IF LEN(@STRING) = 0 BREAK END
--INSERT INTO @tbl (koko) VALUES(@Falgz) -- RETURN @Falgz END

 
Report Bad Submission
Use this form to notify us if this entry should be deleted (i.e contains no code, is a virus, etc.).
Reason:
 
Your Vote!

What do you think of this code(in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor See Voting Log
 
Other User Comments

 There are no comments on this submission.
 
Add Your Feedback!
Note:Not only will your feedback be posted, but an email will be sent to the code's author in your name.

NOTICE: The author of this code has been kind enough to share it with you.  If you have a criticism, please state it politely or it will be deleted.

For feedback not related to this particular code, please click here.
 
Name:
Comment:

 

Categories | Articles and Tutorials | Advanced Search | Recommended Reading | Upload | Newest Code | Code of the Month | Code of the Day | All Time Hall of Fame | Coding Contest | Search for a job | Post a Job | Ask a Pro Discussion Forum | Live Chat | Feedback | Customize | SQL Home | Site Home | Other Sites | About the Site | Feedback | Link to the Site | Awards | Advertising | Privacy

Copyright 1997 by Exhedra Solutions, Inc. All Rights Reserved.  By using this site you agree to its Terms and Conditions.  Planet Source Code (tm) and the phrase "Dream It. Code It" (tm) are trademarks of Exhedra Solutions, Inc.