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.
PostgreSQLにテーブルがあります。特定の列(主キーではない)に従って行データを物理的に並べ替えたい。私の場合、この列タイプはdateです。どうすればいいですか?
date
「ORDER BY」は試しましたか?たとえば、「SELECT * FROM table_name ORDER BY date ASC;」? 日付を逆順にしたい場合は、「ASC」の代わりに「DESC」を試すことができます。