select * from CurrencyMaster where default=true
invalid syntax near keyword default.You cannot have a reserved word as a field name without enclosing it in brackets.
Therefore :
select * from CurrencyMaster where default=true
doesn't work, and
select * from CurrencyMaster where [default]=true
will probably work. (Haven't tested it myself tho...)
Showing posts with label default. Show all posts
Showing posts with label default. Show all posts
Subscribe to:
Posts (Atom)