Viewing 15 posts - 586 through 600 (of 1,114 total)
How about this ?
create table #CallCost
(
Phoneno varchar(10),
Duration varchar(15),
Cost numeric(8,2)
)
insert into #CallCost
select '9841645768','00:20:15',20
union all
select '9841645768','00:00:15',1
union all
select '9940272484','00:55:01',60
union all
select '9940272484','00:01:15',2
union all
select '9940272484','00:10:15',10
union all
select '9841645768','00:00:55',1
union all
select '9841645768','00:00:59',20
union all
select '9841645768','00:00:59',20
union all
select '9841645768','00:00:59',20
union all
select '9841645768','00:00:59',20
union...
July 15, 2008 at 3:55 am
Steve,
Thanks for your information.
I'm curious as to why you're interested and we certainly don't want people to have a goal of boosting their counts without adding to the site. We...
July 15, 2008 at 12:28 am
Please post with more details. You have given only Date ,whether it denotes start date or end date or both.
July 14, 2008 at 3:31 am
Bananas in pyjamas are coming down the stairs,
Bananas in pyjamas are coming down in pairs,
Bananas in pyjamas are chasing teddy bears,
'Cause on Tuesdays they all try to catch them unawares!
🙂
July 14, 2008 at 1:11 am
or ...
just replace your code to
MIN(isnull(u.ITEM,0)) AS UnitItem
July 14, 2008 at 1:05 am
There are lots of things that Rollback cannot undo.
can you tell me what are all those ?
July 11, 2008 at 4:45 am
If you want to know more about 'Tally' table, read the following URL.
July 9, 2008 at 5:04 am
You can do it by using Tally table or master..spt_values table.
July 9, 2008 at 4:27 am
I do agree with you, I am also suggested the same way.
July 8, 2008 at 6:04 am
Gila,
The suggestion of a comma-delimited list in a single column violates the first. It it often suggested as a 'solution', but tends to cause mor problems than it solves.
how...
July 4, 2008 at 12:45 am
rbarryyoung,
when will your article published ? i am eagerly expecting your article.
July 3, 2008 at 11:45 pm
Jeff is my sql teacher. I have learned lot of things from his reply,forums & articles.
If i did any mistake, whether it may be in sql side or in communication...
July 3, 2008 at 8:13 am
But I think PIVOT option is introduced in sql2005 only.
SQL Server 2005 introduces the new PIVOT keyword, however I think it will be a disappointment to most. What people have...
July 3, 2008 at 7:52 am
Viewing 15 posts - 586 through 600 (of 1,114 total)