I'm trying to use wpdb class to get the post id from the top-level site in a WP-MU environment from one of the sub-sites using a meta value from the sub site. The following code pulls from the wp_2_postmeta table.
$result = $wpdb->get_row("SELECT post_id FROM $wpdb->postmeta WHERE meta_value LIKE '%".$lname."%'");
BUT I want to pull from the wp_postmeta table in the same database. i tried with explicit prefix: $wpdb->wp_postmeta
That doesnt work.
How can you specify the wp_postmeta table explictly using wpdb with WP MU?