Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
here @12:n is field in one table and after loading the table i am writing condition like this
where index (@12:n,'\gmaop')<1 or index (@12:n,'*_new_yesuse*') <>1
index function tells the position of substring.
index (@12:n,'\gmaop')<1 or index (@12:n,'*_new_yesuse*') <>1
index (@12:n,'\gmaop')<1 :
this condition will return the records if field @12:n contains value'\gmaop' at first place means all records starting with value'\gmaop'
index (@12:n,'*_new_yesuse*') <>1
this condition will return records which are not started with value '*_new_yesuse*'.
index function tells the position of substring.
index (@12:n,'\gmaop')<1 or index (@12:n,'*_new_yesuse*') <>1
index (@12:n,'\gmaop')<1 :
this condition will return the records if field @12:n contains value'\gmaop' at first place means all records starting with value'\gmaop'
index (@12:n,'*_new_yesuse*') <>1
this condition will return records which are not started with value '*_new_yesuse*'.
Sorry first condition result should
index (@12:n,'\gmaop')<1 :
this condition will return the records if field @12:n contains value'\gmaop' at first place means all records starting with value'\gmaop' -- this one wrong
this condition will return records which do not contain value '\gmaop'.
ok
Pls explain me with proper answer once again i am confused?