Viewing 15 posts - 15,811 through 15,825 (of 18,926 total)
Or maybe you need to type a little faster... but that one was a close call.
Talking about call, the week-end is calling here.
L8r guys.
![]()
June 30, 2005 at 3:04 pm
Are you viewing the output in QA?
If so there's a default result max size of 255 characters... maybe that's the problem.
June 30, 2005 at 2:57 pm
We need to see the expected output too. Help us help you.
June 30, 2005 at 2:55 pm
If you have 20 wood categories, then put 20 different entries in the category table. Now you can add a category type to that table so that you can...
June 30, 2005 at 2:54 pm
Declare @A table (id int not null, Name varchar(15) not null, SortOrder tinyint not null)
Insert into @A (id, name, SortOrder) values (1, 'Mike', 3)
Insert into @A (id, name, SortOrder) values...
June 30, 2005 at 2:51 pm
This will kill the performance if not written right... Can we see the code?
June 30, 2005 at 2:47 pm
I want a recount.
Just happens to be true unfortunately.
June 30, 2005 at 2:46 pm
Now unless you have a cross join, that's just not possible. Post the actual data, table definition and the expected output and you want usefull help.
June 30, 2005 at 2:44 pm
Didn't mind trying a guess... took only 15 secs to write it
.
June 30, 2005 at 2:35 pm
Select id, Name, Min(SortOrder) as MinSort from dbo.YourTable
group by id, name
order by MinSort
June 30, 2005 at 2:29 pm
Depends on how you want to use this data and the design of the form/report...
How about not including the column at all in the select?
June 30, 2005 at 2:22 pm
Viewing 15 posts - 15,811 through 15,825 (of 18,926 total)