I am using WP Data Tables to create a table from the SQL DB. In the wordpress backend the example code to use looked like this:
SELECT post_id, post_date
FROM wp_posts
WHERE post_type = 'custom_post_type'
AND post_status = 'publish'
Im trying to get custom field values from the post meta. Here is what I have so far…
SELECT post_id, post_date
FROM wp_posts
WHERE post_type = 'custom_post_type'
AND post_status = 'publish'
AND SELECT custom_field_key_1, custom_field_key_2, custom_field_key_3
FROM wp_postmeta
WHERE post_id = post_id
UPDATE:
I found that p.ID was needed instead of post_id and that I need search for the meta_key. Something like…
SELECT p.post_title,
p.post_date,
pm.meta_key = 'custom_field_key'
FROM wp_posts p
INNER JOIN wp_postmeta pm
ON p.ID = pm.post_id
WHERE p.post_type = 'custom_post_type'
AND p.post_status = 'publish'
Use an
INNER JOIN
:Assuming that standard SQL is supported you will need something like this (untested):
You can try this.
Ok even though you updated an answer. I took your example and I worked this out:
So here I am using alias
AS
for values hosted in the same table,INNER JOIN
forwp_postmeta
andpost_id
and that’s all.References:
Multiple Inner join same table
By doing this you will get an array with posts and your selected custom fields:
You can add as many alias and meta_key as you need. Hope this help!