Viewing 15 posts - 46 through 60 (of 127 total)
remove like isn't an problem, my first crack at is had { = }, as for performance, quicker the better. 🙂
April 6, 2011 at 7:08 am
@jeff, thanks for your help on this. the more and more i posted the more it was coming to me, so I guess posting was like me talking it out...
April 1, 2011 at 5:10 am
I got it working
I did this:
select * from
(select id,
max(case when value like 'make' then shortdescription else '' end) as carMake,
max(case when value like 'model' then shortdescription else '' end)...
March 31, 2011 at 4:57 pm
I have it about 99.9% working, but i'm losing my date, this is what I have
CREATE TABLE [dbo].[sales](
[id] [int] IDENTITY(1,1) NOT NULL,
[value] [nvarchar](50) NULL,
[shortDescription] [nvarchar](max) NULL,
[longdescription] [nvarchar](max) NULL,
[datetime] [smalldatetime] NULL
)...
March 31, 2011 at 4:38 pm
how's this:
CREATE TABLE [dbo].[sales](
[id] [int] IDENTITY(1,1) NOT NULL,
[value] [nvarchar](50) NULL,
[shortDescription] [nvarchar](max) NULL,
[longdescription] [nvarchar](max) NULL,
[datetime] [smalldatetime] NULL
) ON [PRIMARY]
INSERT INTO[dbo].[sales]
([value]
...
March 31, 2011 at 8:28 am
I can't show the table schema and what I have shown is what most of my data looks like.
it contains 5 colums and they are all nvarchar fields, so I...
March 31, 2011 at 7:54 am
I got it, I had to make a query change and then I grouped everything via the code within the app.
Though for future, could SQL give me output like...
November 2, 2010 at 9:12 am
thanks, I have to say, the security on Win 7 is brutal.
this helped, thanks alot.
August 11, 2010 at 6:53 am
thanks, I'll take a look, I just don't want to uninstall and reinstall everything on the servers. That would be a huge task
June 3, 2010 at 1:24 pm
i'm just looking for pulling random records out (which I showed my query I'm using) and not show the same sales person twice.
April 27, 2010 at 5:15 am
Jeff Moden (4/19/2010)
SQL_NuB (4/19/2010)
April 21, 2010 at 5:07 am
that is setup for the start date or end date begin on a weekend, I need to find out if the day between my two dates are a saturday or...
April 19, 2010 at 11:36 am
I got it working, instead of where you had the 10, I put that as my column that has the defined number of days to complete and it worked fine.
thanks...
April 15, 2010 at 6:39 am
Viewing 15 posts - 46 through 60 (of 127 total)