vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   mySQL intersect? (https://vborg.vbsupport.ru/showthread.php?t=82407)

Andreas 06-02-2005 05:12 PM

mySQL intersect?
 
Let's say i've got a table that has a column with comma separated IDs.
Example:

columname
---------------
1,2,5
4,7,8
3,6,11

Now I have a string with comma separated IDs: 2,8

Any ideas for a query to get rows that contain at least one ID from this string in column columnname?

Revan 06-02-2005 05:14 PM

This is me talking untested stuff again, but what I would do is split the string and use LIKE '$string,'. Dunno if this would fit your purpose as every 3rd number seems to be lacking their comma (and breaking the LIKE if those numbers will be searched for), else it might work.

Andreas 06-02-2005 05:19 PM

LIKE is a bad idea I think as
[sql]SELECT '23,24,25' LIKE '%2%' [/sql]
does match

What actually does work is
[sql]SELECT * FROM table WHERE FIND_IN_SET('2', columnname) OR FIND_IN_SET('8', columnname)[/sql]
but I feel that this is not a good way to do this.


All times are GMT. The time now is 10:46 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01028 seconds
  • Memory Usage 1,705KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (3)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete