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

##重複したデータを省く

####DISTINCT
DISTINCTを用いると、検索結果から重複するデータを除くことが可能です。「DISTINCT(カラム名)」とすることで、検索結果から指定したカラムの重複するデータを除くことができます。

SELECT
DISTINCT (省きたいカラム)
FROM テーブル名;

####取得したデータを計算する
SQLでは四則演算「足す(+)、引く(-)、かける()、割る(/)」が可能です。左の図のような記号を使うことで、右の図のようにカラムのデータを計算することが可能です。かける場合はアスタリスク()、割る場合はスラッシュ(/)を用いることに注意しましょう。

SELECT カラム * 計算したい数字
FROM テーブル名;
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?