Viewing 9 posts - 31 through 39 (of 39 total)
Lynn Pettis (7/5/2012)
joe.eager (7/5/2012)
Lynn Pettis (7/5/2012)
DECLARE @StateFipsCSV varchar(500) = '01,03'
SELECT
*
FROM
[dbo].[ProductInventory] prdinv
WHERE
exists (SELECT instr.Item FROM dbo.DelimitedSplit8K(@StateFipsCSV,',') instr INNER...
July 5, 2012 at 2:05 pm
Lynn Pettis (7/5/2012)
DECLARE @StateFipsCSV varchar(500) = '01,03'
SELECT
*
FROM
[dbo].[ProductInventory] prdinv
WHERE
exists (SELECT instr.Item FROM dbo.DelimitedSplit8K(@StateFipsCSV,',') instr INNER JOIN
...
July 5, 2012 at 1:42 pm
Lynn Pettis (7/5/2012)
July 5, 2012 at 1:18 pm
Lynn Pettis (7/5/2012)
July 5, 2012 at 12:22 pm
Sorry forgot the ")"
Here is the new sample stuff
CREATE TABLE [GoInventory].[ProductInventory](
[ProductInventoryId] [int] IDENTITY(1,1) NOT NULL,
[ContactId] [int] NOT NULL,
[ProductTitle] [varchar](200) NOT NULL,
[BriefDescription] [varchar](8000) NULL,
[TargetAudience] [varchar](1000) NULL,
[CurrentStatusId] [int] NOT NULL,
[FundingSource] [varchar](500) NULL,
[Partners]...
July 5, 2012 at 11:52 am
Lynn Pettis (7/5/2012)
joe.eager (7/5/2012)
Lynn Pettis (7/5/2012)
July 5, 2012 at 11:32 am
Lynn Pettis (7/5/2012)
July 5, 2012 at 11:17 am
Jeff Moden (7/5/2012)
joe.eager (7/5/2012)
Background: ...
July 5, 2012 at 11:16 am
michael vessey (7/5/2012)
joe.eager (7/5/2012)
Background: ...
July 5, 2012 at 9:36 am
Viewing 9 posts - 31 through 39 (of 39 total)