मान लें कि आपकी श्रेणियां और उपयोगकर्ता तालिका पहले से मौजूद है और प्राथमिक कुंजी के रूप में क्रमशः सीआईडी और यूआईडी है, यह काम करना चाहिए:
CREATE TABLE `posts` (
`pID` bigint(20) NOT NULL auto_increment,
`content` text NOT NULL,
`time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`uID` bigint(20) NOT NULL,
`wikiptr` bigint(20) default NULL,
`cID` bigint(20) NOT NULL,
PRIMARY KEY (`pID`),
Foreign Key(`cID`) references categories(`cID`),
Foreign Key(`uID`) references users(`uID`)
) ENGINE=InnoDB;
references
में कॉलम नाम की आवश्यकता है खंड।