Created
April 11, 2013 02:28
-
-
Save anonymous/5360177 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 test ( | |
name_id INT NOT NULL AUTO_INCREMENT, | |
forename VARCHAR(100) NOT NULL, | |
surename VARCHAR(100) NOT NULL, | |
PRIMARY KEY (name_id ) | |
); | |
INSERT INTO test VALUES ( 1, "Yan", "Syafri" ); | |
INSERT INTO test VALUES ( 2, "Syafri", "Hidayat" ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment