I figured it out.
I had to use a query, which I laid out to be in a HEREDOC string:
$technology_query = <<<SQL
SELECT name, slug FROM {$wpdb->prefix}terms
INNER JOIN {$wpdb->prefix}term_taxonomy ON {$wpdb->prefix}terms.term_id = {$wpdb->prefix}term_taxonomy.term_id
WHERE {$wpdb->prefix}term_taxonomy.taxonomy = 'portfolio_technologies';
SQL;