标签:
1、创建sql脚本
drop database if exists myhibernate; create database myhibernate; use myhibernate; drop table if exists member; create table member( mid int not null auto_increment, password varchar(32) not null, birthday datetime, salary double, constraint pk_mid primary key(mid) );
2、
标签:
原文地址:http://www.cnblogs.com/denied/p/5536362.html