By editor, 8 December, 2015 Question How to use LIKE condition in database query on Drupal 8 ? The like condition syntax is: $query->condition('field_name', "%" . $query->escapeLike("The string") . "%", 'LIKE'); Example: $con = \Drupal\Core\Database\Database::getConnection(); $query = $con->select('table_name', 't') ->fields('t', ['field_1', 'field_2']); $query->condition('field_1', "%" . $query->escapeLike($string) . "%", 'LIKE'); $result = $query->execute()->fetchAll(); Tags Drupal 8 Database Code Find Entity using Drupal EntityQuery Database Basic Examples (Select, Merge, Insert ...) Comments You must have JavaScript enabled to use this form. Your name Subject Comment About text formats Plain text No HTML tags allowed. Lines and paragraphs break automatically. Web page addresses and email addresses turn into links automatically.
Comments