Here is a tricky problem i am trying to solve, Having difficulty in solving it
Suppose there is a simple query::
String College="Harvard"
SELECT * FROM College
- Above Harvard is the name of the table
- College just has the value in it and is not the name of a table
Query will fail because system is assuming College as the name of the table and searching for it which is not there
How to solve this .... in terms of SQL statements
Hope i am clear
Thanks,