【設計】ブログを簡単に見るヤツ4
RSS用のテーブルを作っておきます。
<RSS用のテーブル>
ID
RSSID(主キー)
RSSURL
mysql> create table tbl_rss(
-> RSSID integer not null auto_increment primary key,
-> ID integer not null,
-> RSSURL text not null default '');
<RSS用のテーブル>
ID
RSSID(主キー)
RSSURL
mysql> create table tbl_rss(
-> RSSID integer not null auto_increment primary key,
-> ID integer not null,
-> RSSURL text not null default '');