I am looking for strings containing this string [management]
Here is an example script:
create table
insert into
values
('hello'),
('hello management'),
('hello [management]'),
('hello [management] blah'),
('hello [management rev] blah');
select * from
The above finds what I expect, but why doesn't the following find the same lines?
select * from
source
share