PGoCareerGoCareer prep tools
LoginSign up
  • Java
  • Python
  • AI
  • React
  • Angular
  • PHP
  • Node.js
  • SQL
  • DSA
  • HTML
  • CSS
  • JS
  • Spring
  • ML
  • MongoDB

SQL · Theory

Boolean Fulltext Search

← All stacks

Theory

100/439

Boolean Fulltext Search

FULLTEXT index lets MATCH (title, body) AGAINST ('exam prep') search words, not LIKE '%exam%'. Needs a FULLTEXT index on those columns (InnoDB in 5.6+).

Natural language mode is default. BOOLEAN MODE uses +must -mustnot. Query expansion is a follow-up search — mention only if asked.

Trap: FULLTEXT on InnoDB with tiny tables (minimum token length, stopwords). Trap: MATCH on columns that are not in the index together.

On the example next to this theory: Boolean Fulltext Search — wHERE combines predicates with AND/OR; LIKE does pattern match.

Exam tip

MATCH (col) AGAINST ('words') needs a FULLTEXT index.

Boolean Fulltext Search — sample query

CREATE TABLE products (id INTEGER PRIMARY KEY, name TEXT, price REAL);
INSERT INTO products VALUES (1, 'Pen', 10), (2, 'Book', 200), (3, 'Bag', 50);
SELECT * FROM products
WHERE price BETWEEN 20 AND 150 AND name LIKE 'B%';

Boolean Fulltext Search — wHERE combines predicates with AND/OR; LIKE does pattern match.

Short notes

  • DefFULLTEXT + MATCH … AGAINST for word search.
  • RuleIndex those columns. InnoDB supported.
  • TrapLIKE '%word%' instead of MATCH when you already have FULLTEXT.

Questions

1

How do you search words in MySQL?

100 / 439

P

GoCareerGo

Utilities · Preparation Hub · Resume · CV · Tools — one workspace.

Workspace

DashboardProfilePreparation HubResume builderCV builderCareer planning

PDF Tools

Merge PDFSplit PDFCompress PDFImage to PDFAll toolsJobs

Image & QR

Compress ImageResize ImageQR ScannerQR GeneratorBlogIT interview prep

Company

FAQFeedbackContactPrivacyTermsSitemap

© 2026 GoCareerGo. Keep moving forward.