摘要: CREATE DATABASE TB ;USE TB ;SET FOREIGN_KEY_CHECKS=0;DROP TABLE IF EXISTS `tb1` ;drop table if exists `tb2` ;create table tb1( tid int PRIMARY KEY , name varchar(20) not null , age int );create table tb2( tid int PRIMARY KEY , name ... 阅读全文
posted @ 2012-10-25 17:02 一布 阅读(605) 评论(0) 推荐(0) 编辑