Skip to content

Instantly share code, notes, and snippets.

@Rotceh
Last active March 14, 2017 10:24
Show Gist options
  • Select an option

  • Save Rotceh/e3d42e9860a2c463ef530839f77245a0 to your computer and use it in GitHub Desktop.

Select an option

Save Rotceh/e3d42e9860a2c463ef530839f77245a0 to your computer and use it in GitHub Desktop.
sql_create
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