hello i am trying to search ddw_0_op1 with mysql regex serach query
SELECT * FROM wp_postmeta WHERE meta_key RLIKE '(?=.*ddw_)(?=.*_op1)'
but in results its also displaying results from this field
_ddw_0_op1
but i want to display results only from this field ddw_0_op1 . how i can achieve that
in this picture i want results from http links field
i hope that makes sense now
.*ddw_matches_ddw_. Not exactly sure what you're looking for...WHERE meta_key LIKE 'ddw_%_op1'or if you need to narrow the wildcard down to digits with regexWHERE meta_key RLIKE '^ddw_[[:digit:]]+_op1$'