I would like to format the DataAfr
and DataTrm
fields of type DATETIME
, in 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 deal with SELECT
?