How to modify an existing views join using hook_views_query_alter in Drupal, Alter the query before it is executed.
This will let you alter the query before you execute the query so you have a chance to request a different set of data than originally configured within the views.
First, check the tables that you have in your query, it could be a table alias or a table name. The following code will show you the list of tables.
Then you know what table you need to alter so do the following
Example 2 Add condition in query alter views
Api: hook_views_query_alter.