Access DateAdd("d", -30, Date)

Having trouble making a query to show posts that are 30 days and older. What might the SQL look like for this?

ā€¦ WHERE x.datecolumn <= DateAdd(ā€œdā€, -30, Date())

Ah there we go. Thank you.