分类: Mysql/postgreSQL
2009-05-31 13:28:43
为了方便演示,我们先简单创建三个表
person_table:create table person_table
(id int(3) auto_increment not null primary key,
info varchar(500) not null
);
people_table:create table people_table
(id int(3) auto_increment not null primary key,
id_card int(3) not null,
name varchar(10)
);
phone_table:create table phone_table
(id int(3) auto_increment not null primary key,
id_card int(3) not null,
phone int(10)
);
接下来,我将简单地介绍如何在MySQL使用XML数据。
ChinaUnix-ITpub网站MySQL技术征文大赛
作者:IT168 upgnu