Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
簡単なクエリで drupal 7 db_like 関数を使用する方法を教えてください。
$result = db_select('person', 'p') ->fields('p') ->condition('name', db_like($prefix) . '%', 'LIKE') ->execute() ->fetchAll();
このページから取得。