I am new in MySQL.I was trying table search currently i am using like keyword... . but i like to implement Full Text search method..
CREATE TABLE art(
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
body TEXT,
FULLTEXT (body)
) ENGINE=MyISAM
INSERT INTO `art` (`id` , `body`) VALUES
(1, 'php coding and soluton'),
(2, 'java coding and soluton'),
(3, 'DBMS stands for DataBase ...'),
(4, 'After you went through a ...'),
(5, 'In this tutorial we will show ...'),
(6, '1. Never run mysqld as root. 2. ...'),
(7, 'In the following database comparison ...'),
(8, 'When configured properly, MySQL ...');
SELECT * FROM art
WHERE MATCH (body) AGAINST ('database');
i was using this code for implement the Mysqlfulltext serach .But i cannot get answer.I was using fulltext search only on Body.. is it possible to use please help me any one