SQL lesson1 summary

SQL is a programming language designed to manipulate and manage data stored in relational databases.
A relational database is a database that organizes information into one or more tables.
A table is a collection of data organized into rows and columns.
A statement is a string of characters that the database recognizes as a valid command.
CREATE TABLE creates a new table.
INSERT INTO adds a new row to a table.
SELECT queries data from a table.
UPDATE edits a row in a table.
ALTER TABLE changes an existing table.
DELETE FROM deletes rows from a table.

Learn SQL

SQLとはリレーショナルDBに格納されたデータを操作管理するために設計されたプログラム言語である。
リレーショナルDBとは一つまたは複数のテーブルの中に情報を組織しているデータベースである。
テーブルとは行や列の中に組織したデータの集まりである。
ステートメントとはデータベースが有効な命令として認める文字列のことである。
CREATE TABLE 新しいテーブルを作る
INSERT INTO テーブルに新しい行を作る
SELECT テーブルからデータを問い合わせる
UPDATE テーブルの行を編集する
ALTER TABLE 既存するテーブルを変更する。
DELETE FROM  テーブルから行を削除する