5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

【電脳少女プログラミング2088 ─壊レタ君を再構築─】D:データセンターをやってみた。

Posted at

はじめに

paizaの新作プログラミングゲーム【電脳少女プログラミング2088 ─壊レタ君を再構築─】データセンター(paizaランク:D相当)をやってみました。

問題

あなたはデータセンターへアクセスしすべての人物の一覧を得ようとしています。

memory (記憶) テーブルと person (人物) テーブルが以下の図のようにあります。

person (人物) の person.id (人物.ID) と person.name (人物.名称) をすべて出力してください。

image.png

解答

SELECT id, name FROM person;

解説

SELECT <出力要素> FROM <TABLE>

であり、
出力元はpersonであるから、FROM person
出力要素はidとnameであるからSELECT id,name

今回出力は person.id (人物.ID) と person.name (人物.名称)という指定されているが、出力元が一つであるから、personという指定をする必要がない

↓SELECT文の解説

今回学んだこと

データの出力にはSELECT文を使う

SELECT <出力要素> FROM <TABLE名>

出力要素が複数あるときは,で区切る

他の問題

5
3
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
5
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?