mysql> desc mysqlforums; +------------------+--------------+------+-----+---------+----------------+ | Field | Type | Null | Key | Default | Extra | +------------------+--------------+------+-----+---------+----------------+ | id | mediumint(9) | NO | PRI | NULL | auto_increment | | forumactive | tinyint(1) | YES | | 0 | | | forumname | varchar(100) | YES | | NULL | | | forummarkread | varchar(500) | YES | | NULL | | | forumdatelast | varchar(500) | YES | | NULL | | | forumdatecurrent | varchar(500) | YES | | NULL | | | forumurl | varchar(500) | YES | | NULL | | +------------------+--------------+------+-----+---------+----------------+ 7 rows in set (0.00 sec) mysql> select forumname, forumdatelast from mysqlforums order by id asc limit 10; +--------------------------+---------------------------------------------------------------------------------+ | forumname | forumdatelast | +--------------------------+---------------------------------------------------------------------------------+ | Announcements | <span class="forum-last-post" nowrap="nowrap">August 24, 2009 11:41PM</span> | | Newbie | <span class="forum-last-post" nowrap="nowrap">September 02, 2009 02:24PM</span> | | Install | <span class="forum-last-post" nowrap="nowrap">September 02, 2009 02:36AM</span> | | Source, Builds, Binaries | <span class="forum-last-post" nowrap="nowrap">September 01, 2009 11:54AM</span> | | Docs | <span class="forum-last-post" nowrap="nowrap">September 01, 2009 12:00PM</span> | | QA | <span class="forum-last-post" nowrap="nowrap">September 01, 2009 11:59AM</span> | | Sample Database (Sakila) | <span class="forum-last-post" nowrap="nowrap">September 01, 2009 11:59AM</span> | | MySQL Migration Toolkit | <span class="forum-last-post" nowrap="nowrap">August 31, 2009 12:46PM</span> | | Microsoft SQL Server | <span class="forum-last-post" nowrap="nowrap">September 02, 2009 08:40AM</span> | | Oracle | <span class="forum-last-post" nowrap="nowrap">September 02, 2009 05:03AM</span> | +--------------------------+---------------------------------------------------------------------------------+ 10 rows in set (0.00 sec) mysql> notee
| Subject | Written By | Posted |
|---|---|---|
| Store WYSIWYG SourceCode in MySQL Cells | Sven Peper | 09/02/2009 08:09AM |
| Re: Store WYSIWYG SourceCode in MySQL Cells | Peter Brawley | 09/02/2009 08:20PM |
| Re: Store WYSIWYG SourceCode in MySQL Cells | Jay Alverson | 09/02/2009 08:31PM |
Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.