Copy table structure: Revision history

From D3xt3r01.tk
Jump to navigationJump to search

Diff selection: Mark the radio buttons of the revisions to compare and hit enter or the button at the bottom.
Legend: (cur) = difference with latest revision, (prev) = difference with preceding revision, m = minor edit.

25 June 2009

  • curprev 22:4622:46, 25 June 2009Admin talk contribs 220 bytes +220 New page: ==CODE== To copy the structure <source lang="mysql"> CREATE TABLE `newtable` LIKE `oldtable`; </source> To also copy the rows in the newtable.. <source lang="mysql"> INSERT `newtable` SEL...