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.
LIKE ユーティリティを使用してテーブルを検索しようとしています。テーブルには 8 つの列がありますが、そのうちの 1 つが必要です。そのため、1つの列を取得する必要があります。codeigniterでどうすればそれを行うことができますか?
If you only want one column returned, you would use:
$this->db->select('column_name');
Before using your like() statement.