0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

SQL 取得したデータの並び替え・「必要な数だけ」データを取得

Posted at

##取得したデータの並び替え

####ORDER BY

「ORDER BY」の並べ方は、「昇順」か「降順」を指定します。「昇順」は「小さい数から大きい数へ向かう順序」、「降順」は「大きい数から小さい数へ向かう順序」です。

#####「小さい→大きい」は「ASC」

SELECT カラム
FROM テーブル名
ORDER BY カラム ASC;

#####「大きい→小さい」は「DESC」

SELECT カラム
FROM テーブル名
ORDER BY カラム DESC;

##「必要な数だけ」データを取得
「最大で何件取得するか」を指定するためには、「制限する」という意味の「LIMIT」を用います。

SELECT カラム
FROM テーブル名
LIMIT データ件数;
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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?