Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: ergen
  • Order by date
  1. ergen

    Stored Proedure - pass comma seperated string

    and here is diffrent solution http://jacek-szarapa.com/index.php?p=sql&d=2 No loops used, should be faster.
  2. ergen

    Passing comma delimited strings in an SP for a where in ('")

    That might help : http://www.jacek-szarapa.com/index.php?p=sql&d=2 just create table from comma delimited and join it the rest of the query... simple as that...
  3. ergen

    Evaluate all records to create a value for each record

    or maybe something like that? declare @temp table (Record int, Type varchar(1), Number int) insert into @temp values (1,'B',100) insert into @temp values (2,'B',106) insert into @temp values (3,'R',102) insert into @temp values (4,'S',105) insert into @temp values (5,'R',104) insert into @temp...

Part and Inventory Search

Back
Top