SELECT *
FROM tasks
WHERE `dependency` REGEXP 's:[0-9]+:".*33.*".*'
Last active
August 12, 2021 22:27
-
-
Save mknparreira/0541d17f450627f6be553fc086f98f10 to your computer and use it in GitHub Desktop.
PostegreSQL | Just a simple REGEX
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
SELECT *
FROM tasks AS T1
WHERE T1.id NOT IN (
SELECT T2.id FROM tasks AS T2 WHERE T2.dependency REGEXP 's:[0-9]+:".33.".*'
)