mirror of
https://github.com/PostgreSQL-For-Wordpress/postgresql-for-wordpress.git
synced 2026-01-29 09:40:06 +01:00
1 line
928 B
Plaintext
1 line
928 B
Plaintext
{"mysql":"\n\t\t\t\t\tSELECT SQL_CALC_FOUND_ROWS wp_posts.ID\n\t\t\t\t\tFROM wp_posts \n\t\t\t\t\tWHERE 1=1 AND ((wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'dp-rewrite-republish' OR wp_posts.post_status = 'future' OR wp_posts.post_status = 'draft' OR wp_posts.post_status = 'pending' \nOR wp_posts.post_status = 'private')))\n\t\t\t\t\t\n\t\t\t\t\tORDER BY wp_posts.post_date DESC\n\t\t\t\t\tLIMIT 0, 20\n\t\t\t\t","postgresql":"SELECT wp_posts.\"ID\" , wp_posts.post_date\n\t\t\t\t\tFROM wp_posts \n\t\t\t\t\tWHERE 1=1 AND ((wp_posts.post_type = 'post' AND (wp_posts.post_status = 'publish' OR wp_posts.post_status = 'dp-rewrite-republish' OR wp_posts.post_status = 'future' OR wp_posts.post_status = 'draft' OR wp_posts.post_status = 'pending' \nOR wp_posts.post_status = 'private')))\n\t\t\t\t\t\n\t\t\t\t\tORDER BY wp_posts.post_date DESC\n\t\t\t\t\tLIMIT 20 OFFSET 0"} |