Recent content by DRB

  1. D

    search a SET column?

    I have come to a solution (having posted as well at two other forums) The solution in FIND_IN_SET More information can be found at either of these two sites as well as in the MySQL Manual: http://dev.mysql.com/tech-resources/articles/mysql-set-datatype.html...
  2. D

    search a SET column?

    I have a table with two columns, the first column is of type VARCHAR and the second of type SET. column1(VARCHAR) column2(SET) person1 group1 person2 group2 person3 group1, group2 I want to retrieve everyone in "group1"... SELECT * FROM mytable WHERE column2 =...
Back
Top