I'm going to assume that both the database column and the age variable hold date/time data rather than strings. I'm also going to assume that the [DOB] values are guaranteed not to have a time component.
You're missing one datum from your specification: the reference date. In other words, given the age 23, and a bunch of birthdays, you want to know which people are 23 on a given date. You might assume that this would be the current date, but here we'll generalize this to a variable.
Those born on Feb 24 1989 are 23 today; anyone born later is younger. Those born on Feb 24 1988 or earlier are 24 or older today. The desired range is therefore Feb 25, 1988 to Feb 24 1989.
DECLARE @age int
DECLARE @referenceDate date
DECLARE @rangeEnd date
DECLARE @rangeBegin date
SELECT @age = 23
SELECT @referenceDate = GETDATE()
--2012-02-24
SELECT @rangeBegin = DATEADD(day, 1, DATEADD(year, -@age-1, @referenceDate))
--1988-02-25
SELECT @rangeEnd = DATEADD(year, -@age, @referenceDate)
--1989-02-24
-- EDIT: this expression is incorrect; thanks to ypercube for catching the bug
-- SELECT @rangeBegin = DATEADD(day, 1, DATEADD(year, -1, @rangeEnd))
SELECT * FROM <table>
WHERE DOB BETWEEN @rangeBegin AND @rangeEnd
24-Feb-1989? Born in1989? Born before24-Feb-1989but after24-Feb-1988? – ypercube Feb 24 at 21:08