06.md—/Users/yasuhiko/Desktop/06

06 postsテーブルを用意する

※記事に関するテーブル --> 本文とタイトルを持たせる

  • テーブル「posts」を作成
create table posts (
    id int not null auto_increment primary key,
    title varchar(50),
    body text,
    created datetime default null,
    modified datetime default null
);

※[posts]は複数形にする

  • サンプルデータを挿入
insert into posts (title, body, created, modified) values
('title 1', 'body 1', now(), now()),
('title 2', 'body 2', now(), now()),
('title 3', 'body 3', now(), now());

MySQLコマンド

  • 使用するデータベースを指定
use [データベース名]
  • テーブルの構造を表示
desc [テーブル名];
  • テーブルの内容(データ)を返す
select * from [テーブル名];

PAGE TOP



< 前へ  <<目次に戻る  次へ >