sorting report

Stimulsoft Ultimate discussion
Post Reply
ronak
Posts: 5
Joined: Sat Apr 23, 2011 11:14 am

sorting report

Post by ronak »

hi i have data source that displayed data with this code

Code: Select all

select * from boiler where date like @date
in these data i have on field with name 'count ' i want to sort my report with this field
thanks
HighAley
Posts: 8431
Joined: Wed Jun 08, 2011 7:40 am
Location: Stimulsoft Office

sorting report

Post by HighAley »

Hello.
ronak wrote:hi i have data source that displayed data with this code

Code: Select all

select * from boiler where date like @date
in these data i have on field with name 'count ' i want to sort my report with this field
Please, try to use next query:

Code: Select all

select * from boiler where date like @date order by count
Thank you.
Post Reply