I have this query in Drupal 6

SELECT term_data.tid AS tid,
   term_data.name AS term_data_name,
   term_data.vid AS term_data_vid,
   term_data.weight AS term_data_weight
 FROM term_data term_data 
 LEFT JOIN term_node term_node ON term_data.tid = term_node.tid
 INNER JOIN node node_term_node ON term_node.vid = node_term_node.vid

how can I migrate that one to Drupal 7 schema? I have something like this, but it's not working

SELECT
taxonomy_term_data.tid,
taxonomy_term_data.vid,
taxonomy_term_data.name
FROM
taxonomy_term_data
LEFT JOIN taxonomy_index ON taxonomy_term_data.tid = taxonomy_index.tid
Inner Join node ON taxonomy_index.vid = node.vid

The problem is that taxonomy_index.vid doesn't exist.

I haven't found drupal 7 database schema documentation, any idea? please Thanks

link|improve this question

38% accept rate
Can't you look into the database and check the tables on how to construct the query? – DrColossos Jul 22 '11 at 16:24
The the column you're looking for may be in taxonomy_vocabulary.vid. What exactly are you trying to accomplish? – Matthijs Bierman Jul 22 '11 at 16:38
I want to accomplish what it is being done in the Drupal 6 query showed above: it is a list of taxonomies. – Mecalito Jul 25 '11 at 14:46
feedback

1 Answer

$terms = db_select('term_data', 'td')
  ->fields('td', array('tid', 'name', 'vid', 'weight'))
  ->leftJoin('term_node', 'tn', 'td.tid = tn.tid')
  ->join('node', 'n', 'tn.vid = n.vid')
  ->execute();

foreach ($terms as $term) {
  // do something with $term
}

Tip: sometimes errors will be difficult to find when stringing all those together. Optionally, you can set each one row at a time and errors seem to report better.

$query = db_select('term_data', 'td');
$query->fields('td', array('tid', 'name', 'vid', 'weight'));
$query->leftJoin('term_node', 'tn', 'td.tid = tn.tid');
$query->join('node', 'n', 'tn.vid = n.vid');
$terms = $query->execute();
link|improve this answer
Coder1 thank you so much for your time, I appreciated. Indeed your code works fine in Drupal 6, but I think you didn't understand my question because I was asking how to migrate that Druapal 6 query to Drupal 7. Table term_node does not exist in Drupal 7 schema anymore. Thanks anyway – Mecalito Jul 29 '11 at 17:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.