i want to add one month in current date with this format "YYYY-MM-DD"
i want function which return date type thanks
Example
2020-04-13 will be 2020-05-13
if there is no way please how can i use STR_TO_DATE here
String requeteInsert = "INSERT INTO `jardin`.`abonnement` (`id`,`enf_id`, `data_debut`, `date_fin`, `type`,`description`, `statu`, `statu_paiment`) VALUES ( '" + A.getId()+ "','" + A.getEnf_id()+ " ','" + A.getData_debut()+ "','" + A.getDate_fin()+ "','" + A.getType()+ "','" + A.getDescription()+"','" + A.getStatu()+"','" + A.getStatu_paiment()+"');";
i'm already use LocalDate and other most of them return String after add a month .
thanks so much