I use a WHERE
restriction for one specific Integer
column to do SELECT * FROM
query, but it always times out without returning any results. But when I use other columns, the query runs normally. I wonder why?
I not sure whether it is cause the specific column is Integer?
SELECT [REQUEST_ID], [SIGNUM], [MATNR], [TIMESTAMP]
FROM [TICKET_INFO]
WHERE [REQUEST_ID] = 0
This does not work and always time out, but this query works normally:
SELECT [REQUEST_ID], [SIGNUM], [MATNR], [TIMESTAMP]
FROM [TICKET_INFO]
WHERE [SIGNUM] = '#'