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.
私は列を持っていますemployee_no varchar2(6)。、、employee_noなどを含むすべてのレコードを取得したいのですが、このパターンに基づいて検索するにはどうすればよいですか?010101121212232323
employee_no varchar2(6)
employee_no
010101
121212
232323
select * from yourtable where emp_no like '%010101%' OR emp_no like '%121212%' OR emp_no like '%232323%'