hello guys
Thank you to support
I create a query in sql servers i need to this 'True' appears (Approved) and False appears (Reject) how can i change this in query .
below the query :
SELECT Requestor_Data.ReqID, Requestor_Data.ReqName, Requestor_Data.ReqCompany, Requestor_Data.ReqMobile, Requestor_Data.City, Requestor_Data.ReqDate,
ApprovedApsgManager.Request_Status
FROM Requestor_Data INNER JOIN
ApprovedApsgManager ON Requestor_Data.ReqID = ApprovedApsgManager.ReqID
WHERE (ApprovedApsgManager.Request_Status = 'TRUE')
* if you need to help more i use this query to dispaly GridView .
THANKS

Munish KumarPosted Oct 18, 2018, 4:40 AM
Imran MunirPosted Oct 18, 2018, 4:57 AM
Abdalla ElawadPosted Oct 18, 2018, 4:57 AM
Abdalla ElawadPosted Oct 18, 2018, 4:52 AM
Uttam ChaturvediPosted Oct 18, 2018, 4:35 AM
CASE
WHEN Quantity > 30 THEN "The quantity is greater than 30"
WHEN Quantity = 30 THEN "The quantity is 30"
ELSE "The quantity is something else"
END
FROM OrderDetails;
Abdalla ElawadPosted Oct 18, 2018, 4:30 AM
Uttam ChaturvediPosted Oct 18, 2018, 3:43 AM
Abdalla ElawadPosted Oct 18, 2018, 3:35 AM