Last active
March 14, 2017 10:24
-
-
Save Rotceh/e3d42e9860a2c463ef530839f77245a0 to your computer and use it in GitHub Desktop.
sql_create
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 DATABASE IBATIS_DEMO; | |
| USE IBATIS_DEMO; | |
| CREATE TABLE EMPLOYEE ( | |
| id INT NOT NULL auto_increment, | |
| first_name VARCHAR(20) default NULL, | |
| last_name VARCHAR(20) default NULL, | |
| salary INT default NULL, | |
| PRIMARY KEY (id) | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment