You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From this code my regexp string is "'^(AA)(0000)(AA)$'"
But in Command Line Tools Console in PhpStorm I see this query
SELECT `id`, `number` FROM `sumeModel` `s` WHERE s.number REGEXP '''^(AA)(1234)(II)$''' GROUP BY `s`.`id` ORDER BY `s`.`id` DESC LIMIT 1
And I can find Nothing from my db because of unnecessary characters
REGEXP '''^(AA)(1234)(II)$''' will be REGEXP '^(AA)(1234)(II)$'
How to solve this problem?
The text was updated successfully, but these errors were encountered:
I try get some model by some regexp
From this code my
regexp string
is "'^(AA)(0000)(AA)$'"But in Command Line Tools Console in PhpStorm I see this query
And I can find Nothing from my db because of unnecessary characters
REGEXP '''^(AA)(1234)(II)$''' will be REGEXP '^(AA)(1234)(II)$'
How to solve this problem?
The text was updated successfully, but these errors were encountered: