Heim >Datenbank >MySQL-Tutorial >Rankings with InnoDB Full-Text Search_MySQL

Rankings with InnoDB Full-Text Search_MySQL

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-06-01 13:15:57949Durchsuche

mysql>CREATETABLEarticles

    ->        idINTUNSIGNEDAUTO_INCREMENTNOT NULLPRIMARY KEY,

    ->        titleVARCHAR(200),

    ->        bodyTEXT,

    ->        FULLTEXT(title,body)

    ->        )ENGINE=InnoDB;

QueryOK,0rowsaffected

mysql>INSERTINTOarticles(title,body)VALUES('Test Article','blah blah blah'),("Matt's Noise",'this is noisy'),('February Weather','It was terrible this year.'),('Peter Pan','Tis a kids story.'),('Test1','nada'),('Database database database','foo database database database'),('Database article title','body with lots of words.'),('myfulltext database','my test fulltext database');                    

QueryOK,8rowsaffected

Records:8  Duplicates:0  Warnings:

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn