About 76,000 results
Open links in new tab
  1. InStr Function - Microsoft Support

    The InStr function examines each value in the IPAddress field and returns the position of the first period. Hence, if the first portion of the IP address is 10., the function returns the value 3.

  2. MySQL INSTR () Function - W3Schools

    Definition and Usage The INSTR () function returns the position of the first occurrence of a string in another string. This function performs a case-insensitive search. Syntax INSTR (string1, …

  3. INSTR - Oracle Help Center

    The INSTR functions search string for substring. The search operation is defined as comparing the substring argument with substrings of string of the same length for equality until a match is …

  4. How to Use INSTR in SQL? Find Substrings Easily with Examples

    Feb 9, 2024 · Among such tools, the INSTR function stands out as a powerhouse in string searching. INSTR, short for “INSTRing”, allows us to locate the position of a substring within a …

  5. Oracle / PLSQL: INSTR Function - TechOnTheNet

    This Oracle tutorial explains how to use the Oracle / PLSQL INSTR function with syntax and examples. The Oracle / PLSQL INSTR function returns the location of a substring in a string.

  6. Oracle INSTR Function

    The INSTR() function returns a positive integer that is the position of a substring within a string. If the string does not contain the substring, the INSTR() function returns 0 (zero).

  7. A Complete Guide to the MySQL INSTR () Function - sqliz.com

    Jun 25, 2025 · Learn how the INSTR () function works in MySQL, including syntax, usage, and examples.

  8. SQL QUERY EXAMPLES

    SQL INSTR function is used to search a character or string of characters in a specific set of characters and report the position of those characters. You can specify a starting positionfor …

  9. MySQL INSTR () Function Explained - phoenixNAP

    Jun 5, 2025 · The function simplifies string search and helps locate substrings in larger text fields. This guide explains what the INSTR() function is and shows example usage.

  10. MySQL INSTR () Function

    This tutorial shows you how to use the MySQL INSTR function to return the position of the first occurrence of a substring.