नेट पर जवाब मिला यहां ।
मूल रूप से, मान लीजिए कि हम इस क्वेरी को चलाना चाहते हैं:
Select c_id, c_first_name,c_last_name, c_address,last_modified_date
from customer
where last_modified_date >[email protected]_date and last_modified_date <= @end_date;
हम इस तरह 'start_date' और 'end_date' पास कर सकते हैं:
/usr/bin/mysql –uuser_id -ppassword –h mysql-host -A \
-e "set @start_date=${start_date}; set @end_date=${end_date};\
source ${sql_script};" > ${data_file}