Skip to main content

Posts

Showing posts from December, 2010

GROUP_CONCAT(cat.name ORDER BY cat.term_id SEPARATOR

select p.id as pid,p.post_title,p.post_content,GROUP_CONCAT(cat.name ORDER BY cat.term_id SEPARATOR ',') as catname,cat.slug as catslug from wp_posts as p left join wp_term_relationships as r on  p.id = r.object_id  left join wp_term_taxonomy as t on r.term_taxonomy_id = t.term_taxonomy_id left join wp_terms as cat on t.term_id = cat.term_id where id in (select id from wp_posts) GROUP BY pid ORDER BY pid desc limit 0,10

MYSQL CURSOR

http://rpbouman.blogspot.com/2005/10/nesting-mysql-cursor-loops.html begin 01        declare no_more_rows boolean default false; 02        declare v_col1       int; 03        declare v_col2       int; 04        declare cursor1 cursor for 05            select col1 06            from   MyTable 07            ; 08        declare cursor2 cursor for 09            select col2 10            from   MyOtherTable 11        ...