Skip to main content
November 7, 2023
Question

In and equal operator not working in query record type

  • November 7, 2023
  • 2 replies
  • 0 views

i am having a record with the data 2million rows. And in our db table we don't have primary key so we created a custom primary key using multiple fields in the table

when i am trying to fetch the data from records i am getting the value when i am using includes operator in filter

but when i am trying to fetch the data from records i am not getting the value when i am using equal to operator in filter.

    2 replies

    sriramk5349
    November 7, 2023

    Hi [mention:91cee2d1a2724753a574345e4fc7a6bb:e9ed411860ed4f2ba0265705b8793d05],

    The value in plnrcd is "4T ". which is 3 characters. So if you test with "4T" in equal to operator, it wont work as "4T " is not equal to "4T".

    Since its a text, includes worked in this scenario.

    November 7, 2023

    thanks