My table is called "asd"
I have this schema:
id | date | content |
AUTO_INC DATETIME LONGTEXT
now assuming content = 45,67,89,3,45,5
how do i search COUNT()
in this table WHERE content CONTAINS 89
for example ?
i tryed SELECT COUNT() FROM asd WHERE content IN(89);
but i got no results.