I have a data frame of with a column of large numbers
A | B |
---|---|
1202089618 | value1 |
12020896188572046212 | value2 |
Assuming we have a data frame df
of the above table,
df.query('A==1202089618')
works to filter out the first row.
but
df.query('A==12020896188572046212')
can not filter out the second row.
I am suspecting the numeric value is too large to be embedded into a query string. In this case, how to query by large numeric value?