Viewing 15 posts - 13,456 through 13,470 (of 13,876 total)
Convert your month to an integer between 1 and 12 (1 = Jan, 2 = Feb etc) using datepart and then use that in your ORDER BY clause:
select datefield
order by...
July 25, 2005 at 2:20 am
Try running this code and you'll get the idea:
declare @a varchar(120), @b-2 varchar(120)
set @a = 'COMPUTER CORP 45474'
set @b-2 = 'SQL IMAGING, INC 90159S'
select reverse(left(reverse(@a), charindex(' ', reverse(@a))-1))
select rtrim(left(@a, len(@a)...
July 22, 2005 at 7:23 am
Hi Jesper
I was actually answering the previous message; not yours, which made perfect sense. Your solution effectively replaces my view idea with a standard (non-corelated ?) subquery and is the...
July 22, 2005 at 4:43 am
This is not strictly a corelated subquery - the subquery runs independently of the outer query, as the subquery's results do not depend on values from the outer query. I can't...
July 22, 2005 at 3:27 am
Yuk, your problem here (if you hadn't already realised!) is stripping the filepath out of medialist.media to leave you with just the filename, which you can then join to MobileVideo.
Here's...
July 22, 2005 at 3:14 am
I think that your requirement for row aggregation rules out a simple join query directly. However, why not create a view of
select orderID, sum(quantity) from [order details] group by orderID
and...
July 22, 2005 at 2:55 am
Not sure whether you've already worked this out, but sounds like you need
select cast(3434.3484365657 as decimal(19,2))
July 22, 2005 at 2:27 am
Standard Windows:
Shift-Alt-Spacebar x
July 21, 2005 at 3:56 pm
How about creating an additional integer field with identity (to do the counting for you) and then create an insert trigger to set the field you want.
July 21, 2005 at 1:21 pm
This thread should give you what you need:
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=92&messageid=201594
July 21, 2005 at 6:21 am
I'm sorry, but I'm afraid that confusion still reigns in my mind! Why would you want to write a program that works exactly like IDENTITY?
Does your prog need to generate...
July 21, 2005 at 5:58 am
Viewing 15 posts - 13,456 through 13,470 (of 13,876 total)