Hi
The following select query taking around 50ms and its too costly, in my application i will call the same select statement in many times.
SELECT COUNT(1) FROM INFORMATION.SCHEMA.COLUMNS WHERE TABLE_NAME = 'TABLE_NAME' AND COLUMN_NAME = 'COLUMN_NAME'
please help me to reduce the execution time of above query.
Thanks
Surendra