Znalazłem odpowiedź w sieci tu .
Załóżmy, że chcemy uruchomić to zapytanie:
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;
Możemy przekazać „data_początkowa” i „data_końcowa” w ten sposób:
/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}