Context:
I have a Ms Sql Statement inside a xml file and I have a conditional with a "Greater Than" comparison, so because this within a XML File I can't use the regular syntax for "Greater Than" ( > ) then I use the (>)
Ms Sql Server Statement
<Query ID="some_query"> if ( DATEDIFF(day,@fechaVencimiento, getdate() ) > 0 OR @Consecutivo_Inicial > @Consecutivo) begin set @Consecutivo= @Consecutivo_Inicial set @seReinicio = 2 end</Query>
Question:
What would be the equivalent syntax for ( > ) in Hana?
Thanks in advance.
Message was edited by: Tom Flanagan