sql事例:select * from table1 where a1=221 and b2=33 and c3 in (1,2,3) and d5<44 and (e1=6 or f2=8)
正则: ([^()\s]+)(?:[=<>]{1,2}|\s*in\s*)(?<a>\()?([^()\s]+)(?(a)\))
或者: (\w+)(?:=|in\(|<)([\d,]+)
匹配等号左右两边有空格的情况: ([^()\s]+)\s*(?:[=<>]{1,2}|\s*in\s*)\s*(?<a>\()?([^()\s;]+)(?(a)\))
继续改进:([^()\s]+)\s*(?>[=<>]{1,2}|in|like)\s*(?<a>\()?((?(a)[^;.()]+|[^\s;.()]+)(?<b>\()?(?(b)[^;.()]*|[^\s;.()]*)(?(b)\)))(?(a)\))(?=[\s)])[\s)]*(and|or)?\b