Skip to content

Instantly share code, notes, and snippets.

@claudinec
Created November 5, 2012 03:41
Show Gist options
  • Save claudinec/4015195 to your computer and use it in GitHub Desktop.
Save claudinec/4015195 to your computer and use it in GitHub Desktop.
select top-level terms in vocabulary 4
-- select top-level terms in vocabulary 4
-- Drupal 6
select d.tid, d.name from term_data as d join term_hierarchy as h
where d.tid = h.tid
and h.parent = 0
and d.vid = 4;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment