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.

SQL 複数のカラムからデータを取得する方法

Posted at

一度に複数のカラムからデータを取得するには、
カラム名をコンマ( , )で区切りましょう!

(例)    
   SELECT カラム名,カラム名
   
全カラムのデータを取得する場合は「*」の記号を使いましょう

(例)
   SELECT *
   FROM teams;

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?