0
I am saving in my database the date that certain record is changed, however the format that it is saved is (YYYY-MM-DD), the SQL command used so far is as follows::
update public.transportadora set status = 'Ativo', user_update = 'Teste', data_alteracao = current_date where codigo = 3
and the record goes like this:
My need is for the date to be in sequence DD-MM-YYYY, that is to say, 27/03/2017
You need to adapt to recognize the database as a transparent layer made to store and manipulate data. It will return a type of data, the display of this type is not necessarily his obligation. You can display as you wish
– Jefferson Quesado