10
I would like to format the fields DataAfr
and DataTrm
of the kind DATETIME
, in the Brazilian date format dd/MM/YYYY instead of the American format yyyy-mm-dd hh:mm:ss
SELECT
e.NmrCnt AS [Contrato]
,e.NmrSerie AS [Serie]
,e.DataAfr AS [Data Aferição]
,e.DataTrm AS [Data Término]
FROM
tbl_Eqp e
How should I treat SELECT
?