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.
我正在尝试查询字符“th”是否在表 emp 的列 enames 中。
我使用命令
select ename from emp where ename like '%th';
但是 SQL 说没有选择行。
有什么建议么?
编辑:
解决了
这最终奏效了。
SELECT * FROM EMP WHERE ENAME LIKE '%TH%';
感谢帮助!
where ename like '%t%' or ename like '%h%';
或使用正则表达式:
where regexp_like(ename, '[th]');
尝试:
where UPPER(ename) like '%TH%';
我需要生成布尔复选框并提供不同的 ID 以跟踪单击了哪个复选框,如下所示:
这不会添加 Employeedid。
而不是这个,当我使用它时,它可以工作并动态生成 id。
有关如何使用迭代器和 selectbooleancheckbox