Oracl cmd for dayname
jullien88
Messages postés
2
Date d'inscription
Statut
Membre
Dernière intervention
-
krakixx Messages postés 3404 Date d'inscription Statut Membre Dernière intervention -
krakixx Messages postés 3404 Date d'inscription Statut Membre Dernière intervention -
Hi,
my table contains a colun "datetime" (16/02/2013 , ....)
i would like to extract the dayname (saturday, ...)
can one of you help me .
thx.
my table contains a colun "datetime" (16/02/2013 , ....)
i would like to extract the dayname (saturday, ...)
can one of you help me .
thx.
A voir également:
- Oracl cmd for dayname
- Downloader for pc - Télécharger - Téléchargement & Transfert
- Cmd - Guide
- Scannow cmd - Guide
- Cmd mac - Guide
- Récupérer clé windows cmd - Guide
Thx for your answer. The pb is resolved but i can't get what i want from my table.
I want to get all the values of my table where datetime (one of my column ) is like 'sunday'.
select * FROM my_table WHERE to_char(to_date(trunc(datetime),'dd/mm/yyyy'), 'DAY') like 'sunday'
is there any solution ?