Viewing 4 posts - 1 through 4 (of 4 total)
Hi,
if am execute this query am getting first select statement values.
ALTER procedure [dbo].[usp_Fixtures_BowlingAverages_Client]
( @Fixture_SeasonKey int,@Fixture_TeamKey int,@Fixture_FixtureType int)
as
begin
Select (cast(Max(D.Bowling_Wickets)as varchar)+'-'+cast(Min(D.Bowling_Runs)as varchar)) as Bestbowling
From InningsBowlingDetails D
JOIN (Select D.Bowling_MemberKey, Max(D.Bowling_Wickets) as Wickets from...
November 21, 2012 at 4:39 am
hi,
its returning first select statement values.
means if u changed the positions of select statements then also its displays
select stmt values means which one first the values r getting...
November 21, 2012 at 4:24 am
Hi,
thanks for reply.
still it displays first select statement values. here is my code....
ALTER procedure [dbo].[usp_Fixtures_BowlingAverages_Client]
( @Fixture_SeasonKey int,@Fixture_TeamKey int,@Fixture_FixtureType int)
as
begin
Select (cast(Max(D.Bowling_Wickets)as varchar)+'-'+cast(Min(D.Bowling_Runs)as varchar)) as Bestbowling
From...
November 21, 2012 at 4:12 am
i want to display this format
0-0
2-2
2-2
0-3
2-45
5-49
November 21, 2012 at 1:38 am
Viewing 4 posts - 1 through 4 (of 4 total)