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 3 years have passed since last update.

テーブルやカラムに別名をつける AS句

Posted at

用途

何度もテーブル名やカラム名を打たないといけない時、テーブル名やカラム名が長い時などで、テーブルやカラムに別名をつけ、入力を楽にしたい時などに使う

使用方法

テーブルに別名をつける

SELECT * FROM hogehogehoge AS hoge;

ASは省略できる

SELECT * FROM hogehogehoge hoge;

hogehogehogeテーブルの id を取得したい時

SELECT hoge.id FROM hogehogehoge hoge;

取得したいカラムに別名をつける(取得後の作業でミスを防げる)

SELECT hoge.id AS hoge_id FROM hogehogehoge hoge;

ASは省略できる

SELECT hoge.id hoge_id FROM hogehogehoge hoge;
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?