cancel
Showing results for 
Search instead for 
Did you mean: 

Not greater than symbol in Data Services

former_member186894
Participant
0 Kudos

Hi, We can use symbol in SQL server called !>. Do we have any idea to use same in Data Services too.

Actually, I have a scenario where I have to check date and time that should not be between 10AM  and 12 PM.

Any help would be appreciated.

Thanks,

Imran

Accepted Solutions (1)

Accepted Solutions (1)

former_member186894
Participant
0 Kudos

I got the answer of my question.

if(not($var<='datetime' and $var>='datetime'))begin

end

Thanks,

Imran

Answers (1)

Answers (1)

former_member187605
Active Contributor
0 Kudos

Use <=. That's identical to !>.

former_member186894
Participant
0 Kudos

Hi Dirk, Can you please explain little more. I did not get your answer.

Thanks,

Imran

former_member187605
Active Contributor
0 Kudos

There's no difference between 1 <= 2 and 1 !> 2, is there?

This valid for all numeric, date, character... values.