अपने वर्तमान परिदृश्य के लिए आप FIND_IN_SET
. का उपयोग करके ऐसा कर सकते हैं हर बार आपको item_features
. से मिलान करना होगा
SELECT * FROM
table1
WHERE
item_types
IN (8) AND FIND_IN_SET(4,item_features)
AND FIND_IN_SET(5,item_features)
AND FIND_IN_SET(10,item_features)
Fiddle डेमो
संपादित करें @Ravinder की टिप्पणी के अनुसार
SELECT * FROM
table1
WHERE
FIND_IN_SET(8,item_types)
AND FIND_IN_SET(4,item_features)
AND FIND_IN_SET(5,item_features)
AND FIND_IN_SET(10,item_features)