sathish

sathish

  • NA
  • 263
  • 0

Dynamic to static query conversion

Sep 11 2020 7:15 AM
Hi,
 
Can you please convert and tell me the static query of the below
  1. strSQL = " select t1.empId, t1.name , t1.updated, "  
  2. strSQL = strSQL & " t2.address, t2.description "  
  3. strSQL = strSQL & " from Test t1(nolock) "  
  4. strSQL = strSQL & " inner join Test2 t2(nolock) on t1.empId = t2.empId"  
  5. If IsValue(empId) Then strCond = strCond & " and t1.empId= " & CheckNull(empId, False)  
  6. If IsValue(name) Then strCond = strCond & " and t1.name= " & CheckNull(name, False)  
  7. If strCond <> "" Then  
  8. strCond = " where " & Replace(strCond, "and""", 1, 1, vbTextCompare)  
  9. End If  
  10. strSQL = strSQL & strCond  
Thanks
Sathish

Answers (2)