I have an insert in mysql database of dates,
I am using the date_sub command to add 4 days to the current date,
$fecha_actual = now();
INSERT INTO TABLA_FECHAS (preparar, llamar) VALUES
(' . $fecha_actual .',date_sub(' . $fecha_actual .',INTERVAL 2 DAY)),
I need that if the current $ date is Friday when doing the insert into, do not count the day Saturday or Sunday, that is to say when inserting the call field, you must add 2 days to Friday but without counting Saturday and Sunday. It should be on Tuesday.
what date_sub command I can add so it does not count on Saturday or Sunday.