Saltar al contenido principal

Búsqueda

Búsqueda

Access 2007

Comentarios

1 comentario

  • Avatar
    Shotaro Ito
    Use ANSI92 style wildcard (%_[a-z]).

    %: match any string
    _: match single character
    [ABC]:match A or B or C
    [0-9]:match 0 to 9(digits)

    try query like..
    [sql]
    Fields | Operator | Criteria
    -----------------------------
    F1 | Like | [0-9][0-9]_A[0-9][0-9]
    [/sql]

    It looks you need to follow it when use OLEDB connection to Access DB.
    office.microsoft.com/en-us/access-help/comparison-of-microsoft-jet-sql-and-ansi-sql-HP001032250.aspx
    0

Iniciar sesión para dejar un comentario.