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.
最大値を取得したいフィールドがありますが、それはすべて数字の varchar2(6) フィールドです。フィールドのタイプを変更できません
フィールドは、2013 年 7 月の 201307 のようにリストされた日付です。MAX を使用するだけでは機能しません。
オラクルを使用。
SELECT MAX(date) "MostRecent" FROM tablename;
動作するはずです。YYYYMM は、Oracle の MAX 集計または分析関数で最新のものとしてソートされます。