I have two tables
Orders - having following columns
order_id, order_date, order_customer_id, order_status
customers - having following columns
customer_id, customer_fname, customer_lname
I want to write a code using dataframe which is equivalent to following sql query without creating table
SELECT customer_fname, customer_lname
FROM customer
WHERE customer_id NOT IN (SELECT order_customer_id
from order)
How can i achieve this.