Skip to content

Instantly share code, notes, and snippets.

@yakutozcan
Created October 12, 2017 18:54
Show Gist options
  • Save yakutozcan/040ab532ac78229b8d6f9d62aeb15a56 to your computer and use it in GitHub Desktop.
Save yakutozcan/040ab532ac78229b8d6f9d62aeb15a56 to your computer and use it in GitHub Desktop.
CREATE TABLE `TBL_Veriler` (
`id` int(11) NOT NULL,
`veriler` varchar(255) NOT NULL,
`tarih` datetime NOT NULL
);
ALTER TABLE `TBL_Veriler`
ADD PRIMARY KEY (`id`);
ALTER TABLE `TBL_Veriler`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=40;
COMMIT;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment