SELECT SQL_CALC_FOUND_ROWS wp_posts.ID
FROM wp_posts LEFT JOIN wp_term_relationships ON (wp_posts.ID = wp_term_relationships.object_id) INNER JOIN wp_postmeta ON ( wp_posts.ID = wp_postmeta.post_id ) INNER JOIN wp_postmeta AS mt1 ON ( wp_posts.ID = mt1.post_id )
WHERE 1=1 AND (
(
wp_term_relationships.term_taxonomy_id IN (6878)
)
) AND (
wp_postmeta.meta_key = 'anio_ejecucion'
AND
mt1.meta_key = 'mes_ejecucion'
) AND wp_posts.post_type = 'lista_publicaciones' AND ((wp_posts.post_status = 'publish'))
GROUP BY wp_posts.ID
ORDER BY CAST(wp_postmeta.meta_value AS SIGNED) DESC, CAST(mt1.meta_value AS SIGNED) DESC
LIMIT 0, 8