Skip to content

Instantly share code, notes, and snippets.

@raulingg
Created August 17, 2018 22:31
Show Gist options
  • Save raulingg/419276e4bc4c5f0d99f7f8e1e00fc505 to your computer and use it in GitHub Desktop.
Save raulingg/419276e4bc4c5f0d99f7f8e1e00fc505 to your computer and use it in GitHub Desktop.
select
id, name
from
courses
where
name like "%Gabriel%"
or (JSON_EXTRACT(lessons, "$[*].name") like "%Gabriel%")
or (JSON_EXTRACT(lessons, "$[*].subjects[*].name") like "%Gabriel%");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment