MySQL FIND_IN_SET() returns the position of a string if it is present (as a substring) within a list of strings.
I want to select some id's based on url string but with my code it displays only the first. If …
mysql sql select in-clause find-in-setI have 2 tables as below Notes Table ╔══════════╦═════════════════╗ ║ nid ║ forDepts ║ ╠══════════╬═════════════════╣ ║ 1 ║ 1,2,4 ║ ║ 2 ║ 4,5 ║ ╚══════════╩═════════════════╝ Positions Table ╔══════════╦═════════════════╗ ║ id ║ name ║ ╠══════════╬═════════════════╣ ║ 1 ║ Executive ║ ║ 2 ║ Corp Admin ║ ║ 3 ║ Sales ║ ║ 4 ║ Art ║ ║ 5 ║ Marketing ║ ╚══════════╩═════════════════╝ I …
php mysql left-join group-concat find-in-seti have several problems with my query from a catalogue of products. The query is as follows: SELECT DISTINCT (cc_…
mysql performance find-in-setI am writing a query in codeigniter with FIND_IN_SET() function. $this->db->where(FIND_IN_SET(…
codeigniter find-in-setselect * from folder f,uploads u where u.id=f.folderId and FIND_IN_SET('8', '15,9,13,27') Please …
postgresql equivalent find-in-setI have tables as follows : TABLE A +-----+---------------+-------------+ | ID | DNR_DETAIL_ID | DESCRIPTION | +-----+---------------+-------------+ | 1 | 1 | DESC A | +…
mysql join find-in-set