mysql - How To Seperate the record values in sql -



mysql - How To Seperate the record values in sql -

i have sql table below

classids

2,3,4,5, 2,4,5,6, 5,9,6,8,

i want split comma separated values in sql

i want give status

select classids table name classids = 2

use regular expressions below

select classids table classids regexp '\b2\b'

mysql sql

Comments

Popular posts from this blog

c - Compilation of a code: unkown type name string -

java - Bypassing "final local variable defined in an enclosing type" -

json - Hibernate and Jackson (java.lang.IllegalStateException: Cannot call sendError() after the response has been committed) -