79286866

Date: 2024-12-17 06:44:50
Score: 0.5
Natty:
Report link

This Regex will match anything Starting with CREATE, using negative lookahead to not match the OR REPLACE, picking up anything till the next semicolon.

CREATE(?! OR REPLACE)[\S\n\s]*?;
Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Bending Rodriguez