SQL Server Transact Basic to Expert - Incrementing a date value by Quarter

This blog shows how to do an date increment to a quarter in the output using SQL Query

Example:

SELECT DATEADD(q, 1, '2/2/2011')

The expected result would be 2011-05-02 00:00:00.000