My problem is that I want to add a date column in this format 2016-08-13 Exactly in this Order I achieve this:
DATE_FORMAT(NOW(),'%y-%m-%d')
but now I need the same format but adding 30 days something like that but I have no idea
DATE_FORMAT(NOW(),'%y-%m-%d')+30
the detail is that when I make the +30 symbol I get this Subject how can I solve that?