Hello Tanmoy,
what error message do you get? Is the error that column "ROUTE" does not exist? Maybe in your table definition the column name uses upper/lower case style. Because Route in your select statement is not enclosed in quotes this would to the error because Route will be translated to upper case. So Route != ROUTE.
If that is the case enclose Route in quotes in your select statement.
Regards, Florian