Chaitanya K
Chaitanya K

Reputation: 1847

SQL query to get recently created users in OIM

Is there a SQL query for users created in OIM. There are no dates provided while creating users in OIM, But we need to find the users on the basis of their creation date.

Upvotes: 0

Views: 790

Answers (1)

Chaitanya K
Chaitanya K

Reputation: 1847

Select * from usr where to_date(usr_create)>to_date('01-Jun-2016', 'DD-MON-YYYY');

Upvotes: 1

Related Questions