小的修正
This commit is contained in:
@ -1,18 +0,0 @@
|
||||
-- Dumping database structure for concretepage
|
||||
CREATE DATABASE IF NOT EXISTS `pos` default charset utf8 COLLATE utf8_general_ci;
|
||||
SET FOREIGN_KEY_CHECKS=0;
|
||||
USE `pos`;
|
||||
-- Dumping structure for table concretepage.articles
|
||||
CREATE TABLE IF NOT EXISTS `articles` (
|
||||
`article_id` int(5) NOT NULL AUTO_INCREMENT,
|
||||
`title` varchar(200) NOT NULL,
|
||||
`category` varchar(100) NOT NULL,
|
||||
PRIMARY KEY (`article_id`)
|
||||
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 COMMENT='文章表';
|
||||
|
||||
-- Dumping data for table concretepage.articles: ~3 rows (approximately)
|
||||
INSERT INTO `articles` (`article_id`, `title`, `category`) VALUES
|
||||
(1, 'Java Concurrency', 'Java'),
|
||||
(2, 'Hibernate HQL ', 'Hibernate'),
|
||||
(3, 'Spring MVC with Hibernate', 'Spring');
|
||||
|
||||
Reference in New Issue
Block a user