http://itscom.org/archives/6729



http://www.everdevel.com/open-source/naver-smart-editor.php




CREATE TABLE `board` (
  `no` int(11) NOT NULL AUTO_INCREMENT PRIMARY KEY,
  `post_date` date NOT NULL,
  `post_time` time NOT NULL,
  `post_author` varchar(20) NOT NULL,
  `post_title` varchar(80) NOT NULL,
  `post_content` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE utf8_unicode_ci;


  1. create table nse_tb(
  2. no int not null auto_increment,
  3. content mediumtext,
  4. primary key(no));