* blah > Hi, > I want to use MySQL to store ESM (Symantec Enterprise > Security Manager) > data. The problem is that in one of their table, there is a field named > "FullText".
"FULLTEXT" is a reserved word in mysql. Use backticks: mysql> create table ESMMessage2 (`FullText` text NOT NULL); -- Roger --------------------------------------------------------------------- Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/ (the list archive) To request this thread, e-mail <[EMAIL PROTECTED]> To unsubscribe, e-mail <[EMAIL PROTECTED]> Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php