MySQL如何查已建好表的创建语句

use world
show tables
select * from city
show create table city
CREATE TABLE `city` (
  `ID` int(11) NOT NULL AUTO_INCREMENT,
  `Name` char(35) NOT NULL DEFAULT '''',
  `CountryCode` char(3) NOT NULL DEFAULT '''',
  `District` char(20) NOT NULL DEFAULT '''',
  `Population` int(11) NOT NULL DEFAULT ''0'',
  PRIMARY KEY (`ID`),
  KEY `CountryCode` (`CountryCode`),
  CONSTRAINT `city_ibfk_1` FOREIGN KEY (`CountryCode`) REFERENCES `country` (`Code`)
) ENGINE=InnoDB AUTO_INCREMENT=4080 DEFAULT CHARSET=latin1

你可能感兴趣的:(MySQL)