Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
日付を以下の形式で表示したい
July 23, 2011 SELECT REG_NO, FORMAT(DOB ,'YYYY/MM/DD') FROM Students ;
私は以下を試しました
SELECT REG_NO, FORMAT(DOB ,'MON DD,YYYY') FROM Students ;
動作していないようです
これを試してみてはどうですか:
SELECT REG_NO, to_char(DOB, 'FMMonth DD, YYYY') FROM Students;
TO_CHAR()