I want to learn about Usage of SQL Where Clause
Select * From ActnsTbl where Code = '0001'
Is there anyway to call SQL statement for the following
Select * From ActnsTbl where inlist(Code,'0001','0098','0044',....)
Problem
want to get 10 Accounts e.g. for this used inlist But any other way for where clause can be shorten for above condition in SQL statement
Select * From ActnsTbl where Code = '0001'
Is there anyway to call SQL statement for the following
Select * From ActnsTbl where inlist(Code,'0001','0098','0044',....)
Problem
want to get 10 Accounts e.g. for this used inlist But any other way for where clause can be shorten for above condition in SQL statement