Home : General : Databases and SQL :

General: Databases and SQL: Creating table with a TEXT column.: Edit Log

Here is the list of edits for this post
Creating table with a TEXT column.
This always gives me trouble.

Can anyone see the problem with this?

CREATE TABLE Posts(
post_id INT(10) NOT NULL ,
post_ticket_id INT(6) NOT NULL ,
post_subject VARCHAR(255) NULL ,
post_body TEXT(1000) NOT NULL ,
post_timestamp INT(15) NOT NULL ,
PRIMARY KEY (post_id),
UNIQUE (post_id)
)

Last edited by:

Paul: May 28, 2002, 12:30 PM

Edit Log: