|
Excuse me, the id field of the table person holds multiple data separated by semicolons in the content, which is "123; 234; 345".
select * from person where id .....
The variable corresponding to id is 123, which is a part of the content of id.
How to write the query? |
|