Skip to content

Instantly share code, notes, and snippets.

@galihazizif
Created November 8, 2017 10:38
Show Gist options
  • Save galihazizif/26292d2f0f7f92449df57a704874765a to your computer and use it in GitHub Desktop.
Save galihazizif/26292d2f0f7f92449df57a704874765a to your computer and use it in GitHub Desktop.
tabel daftar_tamu
CREATE TABLE `daftar_tamu` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`nama` varchar(100) NOT NULL,
`alamat` varchar(100) NOT NULL,
`email` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment