Created
October 12, 2017 18:54
-
-
Save yakutozcan/040ab532ac78229b8d6f9d62aeb15a56 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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