摘要:
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 ... 阅读全文