That actually depends on the table structure. If there is a "Last Order Date" column in the users table, then:
SELECT UserID
FROM Users
WHERE LastOrderDate > 'predefined date'
If you need to find it in an "orders" table, this might be correct
SELECT DISTINCT UserID
FROM Orders
WHERE OrderDate > 'predefined date'
Or maybe if you need to take an user status into account, then...
SELECT DISTINCT O.UserID
FROM Orders O
INNER JOIN Users U ON U.UserID = O.UserID
WHERE O.OrderDate > 'predefined date'
AND U.UserStatus = 1