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.
私はMysqlの初心者ですが、これについて誰か助けてもらえますか?
Mysql レコード ORDER BY User_ID DESC および ORDER BY Created_date ASC を取得する必要があります
出来ますか?
ORDER BY列のコンマ区切りリストを受け入れます。だから、簡単に言えばORDER BY User_ID DESC, Created_date ASC
ORDER BY
ORDER BY User_ID DESC, Created_date ASC
はい、このようにクエリを実行できますSELECT ------ ORDER BY User_ID DESC, CREATED DATE ASC
SELECT ------ ORDER BY User_ID DESC, CREATED DATE ASC