Search results

  1. M

    Catalog table

    Hi members is there any way to list all the tables through sql statement in MS Access.... like in oracle we can use select * from all_tables ?? or select * form cat
  2. M

    parameter with IN clause

    in simple my query looks like SELECT Field1, Field2 from table1 where table1.Field2 in (1,2,3) and now i need to parameterize this query.... I tried with SELECT Field1, Field2 from table1 where table1.Field2 in ([Parameter]) Now the problem is... it is working fine with only one value For...
Back
Top Bottom