octavian10
MIS
SELECT ID, ACTIVATE, DEACTIVATE,
CAST(ACTIVATE AS VARCHAR) AS [Activate Date],
CAST(DEACTIVATE AS VARCHAR) AS [Deactivate Date]
FROM VENDOR
In the above statement how do you keep the original ACTIVATE and DEACTIVATE from being returned in the result set? In other words, I only want to see the converted date in the query result.
ACTIVATE and DEACTIVATE are smalldatetime
Thanks in advance for anyone's time
"I hear and I forget. I see and I remember. I do and I understand."
- Confucius (551 BC - 479)
CAST(ACTIVATE AS VARCHAR) AS [Activate Date],
CAST(DEACTIVATE AS VARCHAR) AS [Deactivate Date]
FROM VENDOR
In the above statement how do you keep the original ACTIVATE and DEACTIVATE from being returned in the result set? In other words, I only want to see the converted date in the query result.
ACTIVATE and DEACTIVATE are smalldatetime
Thanks in advance for anyone's time
"I hear and I forget. I see and I remember. I do and I understand."
- Confucius (551 BC - 479)