In SQL, you can add days to a date using the DATEADD function. Here's an example: SELECT DATEADD(day, 7, '2021-05-15') as new_date;. This query ...
確定! 回上一頁