“Buat Indeks FullText MySQL” Kode Jawaban

Buat Indeks FullText MySQL

-- examble to create fulltext index on posts table on blog

CREATE FULLTEXT INDEX IF NOT EXISTS idx_title_body ON
    posts(title, body);
    
SELECT
    *
FROM
    posts
WHERE
    MATCH(title, body) AGAINST("search words" IN BOOLEAN MODE);
FADL

Buat Indeks FullText MySQL

CREATE FULLTEXT INDEX IF NOT EXISTS idx_col1_col2 ON
    tableName(col1, col2);
    
SELECT
    *
FROM
    tableName
WHERE
    MATCH(col1, col2) AGAINST("search words");
FADL

Jawaban yang mirip dengan “Buat Indeks FullText MySQL”

Pertanyaan yang mirip dengan “Buat Indeks FullText MySQL”

Lebih banyak jawaban terkait untuk “Buat Indeks FullText MySQL” di Sql

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya