MySQL Error 1582: Incorrect Parameter Count for FIND_IN_SET Function
This error message indicates that there's a problem with the number of parameters you're supplying to the MySQL native function 'FIND_IN_SET'.
The 'FIND_IN_SET' function is used to locate a specific value within a comma-separated list. It requires two parameters:
- The value you want to search for.
- The comma-separated list you'll be searching within.
The error suggests that your function call isn't providing the right number of arguments. Double-check that you are passing two parameters to 'FIND_IN_SET' and that they are in the correct order. For example:
FIND_IN_SET(value_to_search, comma_separated_list)
If you're still encountering the error, please share more details about your specific query or code snippet so we can provide further help.
原文地址: https://www.cveoy.top/t/topic/pk5s 著作权归作者所有。请勿转载和采集!