Access Tables with number prefix

When in multisite, the wpdb prefix is always the prefix required to access the tables for the current site. This includes the site ID

so this should work:

$wpdb->get_results($wpdb->prepare("SELECT * FROM ".$wpdb->prefix."options WHERE ....."));

There should be no difference at all when using multisite, just make your queries as if it were single site.