```[sql]
CREATE TABLE `c_scenic` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`scenic_name` varchar(50) NOT NULL DEFAULT '' COMMENT '景區名稱',
`scenic_no` varchar(30) NOT NULL DEFAULT '' COMMENT '景區編號',
`status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '景區狀態 0上線 1下線',
`delete_status` tinyint(1) NOT NULL DEFAULT '0' COMMENT '刪除狀態0未刪除1刪除',
`address` varchar(30) NOT NULL DEFAULT '' COMMENT '景區地址',
`grade` tinyint(1) NOT NULL DEFAULT '4' COMMENT '景區等級',
`image_path` varchar(100) NOT NULL DEFAULT '' COMMENT '景區圖片地址(絕對路徑)',
`hot` tinyint(1) NOT NULL DEFAULT '0' COMMENT '熱賣 倒序',
`look_num` int(10) NOT NULL DEFAULT '0' COMMENT '瀏覽量',
`sales_num` int(10) NOT NULL DEFAULT '0' COMMENT '銷量',
`prompt` text COMMENT '預定須知',
`create_time` int(10) NOT NULL DEFAULT '0' COMMENT '創建時間',
`note` text COMMENT '景點介紹',
`region` varchar(50) NOT NULL DEFAULT '0' COMMENT '景區所屬地區',
`city_code` int(10) DEFAULT '0' COMMENT '景區所屬城市編號',
`b_province_code` int(10) NOT NULL DEFAULT '0' COMMENT '省代碼',
`b_province_name` varchar(30) NOT NULL DEFAULT '' COMMENT '省名稱',
`b_city_code` int(10) NOT NULL DEFAULT '0' COMMENT '城市代碼',
`b_city_name` varchar(30) NOT NULL DEFAULT '' COMMENT '城市名稱',
`b_county_code` int(10) NOT NULL DEFAULT '0' COMMENT '區縣代碼',
`b_county_name` varchar(30) NOT NULL DEFAULT '' COMMENT '區縣名稱',
PRIMARY KEY (`id`),
UNIQUE KEY `scenic_no` (`scenic_no`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8;
```