In SAP Datasphere, you can filter data using a SQL-like syntax. If you want to filter out records that are not in a specific list, you can use the `NOT IN` operator in your query.
Here is the general syntax for using `NOT IN` to filter results in SAP Datasphere:
```sql
SELECT *
FROM your_table_name
WHERE your_column_name NOT IN (value1, value2, value3, ...);
```
### Example
Suppose you have a table named `Employees` and you want to select all