what are wild cards incase of sql

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • hardeep1
    New Member
    • Nov 2007
    • 1

    what are wild cards incase of sql

    hello everybody ..can anyone explain me what are wildcards and how they are used with stored procedures and why
  • debasisdas
    Recognized Expert Expert
    • Dec 2006
    • 8119

    #2
    Wild cards are used for pattern matching.
    In oracle 2 wild cards are used .
    %-----for zero or more characters
    _------for 1 character only.

    Comment

    • amitpatel66
      Recognized Expert Top Contributor
      • Mar 2007
      • 2358

      #3
      Hi avimel,

      Welcome to TDSN!!

      Please make sure you follow POSTING GUIDELINES every time you post in this forum.

      Thanks
      MODERATOR

      Comment

      • susarlasireesha
        New Member
        • Oct 2007
        • 5

        #4
        The LIKE condition allows you to use wildcards in the where clause of an SQL statement. This allows you to perform pattern matching. The LIKE condition can be used in any valid SQL statement - select, insert, update, or delete.

        The patterns that you can choose from are:

        % allows you to match any string of any length (including zero length)

        _ allows you to match on a single character

        Comment

        • amitpatel66
          Recognized Expert Top Contributor
          • Mar 2007
          • 2358

          #5
          For More on Pattern Matching and Regular Expressions 10g, you can refer our forum articles:

          REGEXP_LIKE
          REGEXP_INSTR
          REGEXP_REPLACE
          REGEXP_SUBSTR

          Comment

          Working...