pyiron=# SELECT * FROM jobs_cmmc WHERE jobs_cmmc.project LIKE 'test%';
Time: 0.481 ms
pyiron=# SELECT * FROM jobs_cmmc WHERE jobs_cmmc.project LIKE 'te_st%';
Time: 394.972 ms
pyiron=# SELECT * FROM jobs_cmmc WHERE jobs_cmmc.project LIKE 'te\_st%';
Time: 0.607 ms
_stands for any single character inLIKEstatements. https://www.postgresql.org/docs/current/functions-matching.html#FUNCTIONS-LIKETo counter this we need to escape any unwanted
%and_characters.