0

I'm trying to manipulate the contents of fields returned from application Insights logging and was wondering if there are KQL equivalents for the Oracle substr and instr functions?

atamata
  • 997
  • 3
  • 14
  • 32

1 Answers1

1

The equivalent of Oracle substr function in KQL is substring().

The equivalent of Oracle instr function in KQL is indexof().

Slavik N
  • 4,705
  • 17
  • 23