LoginSignup
0
0

More than 3 years have passed since last update.

ORDER BY

Posted at

ORDER BY 並べ替え基準となるカラムと指定すると、小さい順に並べ替えて表示させることができます。これはテーブル内の順番が変わるのではなく、あくまで表示上そう見えるようにできるだけです。

mysql> SELECT * FROM bookstore.books ORDER BY price;

大きい順に並べ替えたい場合には、DESCをつけます。

mysql> SELECT * FROM bookstore.books ORDER BY price DESC;

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0