"""This file contains sql to fetch data from art_relations.""" # Get previously delivered store ids. GET_PREVIOUSLY_DELIVERED_STORES_SQL = """ SELECT DISTINCT dh.customer_master_master_id FROM delivery_history dh INNER JOIN customer_master_master cm ON dh.`customer_master_master_id` = cm.`customer_master_master_id` WHERE upc = :upc; """