When modifying the date of a column on python with sqlite3 I receive the None value.
datetime(Date, '+4 months')
works, but
datetime(Date, '+' || Test || 'months')
does not and sends me back None value. Test is an integer datatype column.
Any idea?