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 列,但我需要其中之一。所以我应该得到一列。我怎么能用codeigniter做到这一点?
如果您只想返回一列,您将使用:
$this->db->select('column_name');
在使用您的 like() 语句之前。