MySQL- tutoriaal

MySQL TUIS MySQL-inleiding MySQL RDBMS

MySQL SQL

MySQL SQL MySQL KIES MySQL WAAR MySQL EN, OF, NIE MySQL BESTEL DEUR MySQL VOEG IN MySQL NULL-waardes MySQL-OPDATERING MySQL SKEE MySQL-LIMIET MySQL MIN en MAX MySQL COUNT, AVG, SUM MySQL LIKE MySQL Wildcards MySQL IN MySQL TUSSEN MySQL aliasse MySQL sluit aan MySQL BINNE SLUIT AAN MySQL LOS LINKS AAN MySQL REGS SLUIT AAN MySQL KRUIS SLUIT AAN MySQL Self Sluit aan MySQL UNIE MySQL GROEP DEUR MySQL HET MySQL BESTAAN MySQL ENIGE, ALMAL MySQL INSERT SELECT MySQL-GEVAL MySQL nul-funksies MySQL-kommentaar MySQL-operateurs

MySQL- databasis

MySQL Skep DB MySQL Drop DB MySQL Skep tabel MySQL Drop Table MySQL Verander Tabel MySQL-beperkings MySQL nie nul nie MySQL Uniek MySQL-primêre sleutel MySQL buitelandse sleutel MySQL-tjek MySQL verstek MySQL Skep indeks MySQL Outo-verhoging MySQL-datums MySQL-aansigte

MySQL- verwysings

MySQL-datatipes MySQL-funksies

MySQL voorbeelde

MySQL voorbeelde MySQL Vasvra MySQL-oefeninge

MySQL LOCATE() Funksie

❮ MySQL-funksies

Voorbeeld

Soek vir "3" in string "W3Schools.com", en keer terug posisie:

SELECT LOCATE("3", "W3Schools.com") AS MatchPosition;

Definisie en gebruik

Die LOCATE()-funksie gee die posisie van die eerste voorkoms van 'n substring in 'n string terug.

As die substring nie binne die oorspronklike string gevind word nie, gee hierdie funksie 0 terug.

Hierdie funksie voer 'n hoofletter-onsensitiewe soektog uit.

Let wel: Hierdie funksie is gelyk aan die POSITION() funksie.

Sintaksis

LOCATE(substring, string, start)

Parameterwaardes

Parameter Description
substring Required. The substring to search for in string
string Required. The string that will be searched
start Optional. The starting position for the search. Position 1 is default

Tegniese besonderhede

Werk in: Van MySQL 4.0

Meer voorbeelde

Voorbeeld

Soek vir "com" in string "W3Schools.com" (begin by posisie 3), en keer terug posisie:

SELECT LOCATE("com", "W3Schools.com", 3) AS MatchPosition;

Voorbeeld

Soek vir "a" in CustomerName-kolom, en gee posisie terug:

SELECT LOCATE("a", CustomerName)
FROM Customers;

❮ MySQL-funksies