Skip to content
Advertisement

Get all matching records where IDs are joined to a comma separated list

I have two database table like below:

  1. Form
    • Id
    • Name
    • Fields(varchar-255)
  2. FormFields
    • Id
    • Name
    • InputType

Sample data for Form

Sample data for FormFields

Now I write query as below:

And I get only one record as below:

But I want all the records of FormFields table whose Id is present in the Fields columns of Form table. I want result like this:

Advertisement

Answer

You cannot use IN to search for specific value inside comma delimited “string”.
You can use FIND_IN_SET for this:

Result:

SQL Fiddle


Having said that, I would suggest creating a many-many table that joins Forms to Fields. Rough outline of table structure:

  • Form (id, name)
  • Field (id, name, type)
  • FormField (form_id, field_id)
User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement