I got the table, that containing the field filled digits (1-2 symbol each) like this (1|5|18|44|98|22), also field can contain only one digit (without divider |)
How can I search in this field certain digits?
For example – i need to select the rows, contains only 5. Or only 18 and 44?
I got the table, that containing the field filled digits (1-2 symbol each) like
Share
You can add pipes to the start and end of the field like this while querying.
will return your row.
will not find and no rows will return.
will return if 18 and 44 both in your field.