Hi I've a query like this
select * from emplyees
result is
name dept status
emp1 Admin y
emp2 admin n
I'm going to bind it to gridview like mygridview.datasource = ds;
now here i want to display approve instead of y and disapprove instead of n
how can i write a query ?
thank you