I have a table of projects with two of it's columns as 'language' and 'tag'.
After the user gives an input
, I want to output all the projects whose language
is input
or tag
is input
.
Sql query for above would be this,
Sql query:
Select * from TableName where language='input' OR tag='input'
I tried to execute the same in Gql but in vain. What should be the query in Gql to output the data in the above mentioned way.