Or, embed this snippet using GenerateWP WordPress Plugin.

Download

Clone

state_tax_query

$tax_query = array(
	'relation' => 'OR',
	array(
		'taxonomy'         => 'state',
		'operator'         => 'NOT EXISTS',
	),
	array(
		'taxonomy'         => 'state',
		'terms'            => '100',
		'field'            => 'term_id',
		'operator'         => 'IN',
	),
);