lsSQL = "Provider=Microsoft.jet.oledb.4.0;Data Source=" & GetOrderPath & "\ordreprt.mdb"
    
    Set cn = New ADODB.Connection
  
    cn.Open lsSQL
    
    If cn.State = adStateOpen Then
       lsSQL = "select PACK_CLASS_CODE,PACK_CLASS_NAME,PACK_CODE,PACK_NAME,L1_QNT,L2_QNT from  SP_IN where csCRRKey like '" & csKey & "#'"
       Set rs = New ADODB.Recordset
       rs.CursorLocation = adUseClient
       rs.CursorType = adOpenKeyset
       rs.Open lsSQL, cn
    End If
    其中
lsSQL = "select PACK_CLASS_CODE,PACK_CLASS_NAME,PACK_CODE,PACK_NAME,L1_QNT,L2_QNT from  SP_IN where csCRRKey like '" & csKey & "#'"
是要查询Access 2000表中的csCRRKEY 字段的值,字段是文本型的,比如csCRRKEY字段值为:345,csKey的值一定是34;为2456时,csKey的值一定是245,这个应该怎么查询,
我不知道用#,*,还是%?