Tutorial MySQL

RUMAH MySQL Pengenalan MySQL MySQL RDBMS

MySQL SQL

MySQL SQL MySQL PILIH MySQL DI MANA MySQL DAN, ATAU, BUKAN MySQL ORDER OLEH MySQL INSERT INTO Nilai MySQL NULL PEMBARUAN MySQL MySQL HAPUS BATAS MySQL MySQL MIN dan MAX MySQL COUNT, AVG, SUM MySQL SEPERTI Wildcard MySQL MySQL IN MySQL ANTARA MySQL Alias ​​​​ MySQL Bergabung MySQL INNER GABUNG MySQL KIRI GABUNG MySQL BENAR GABUNG MySQL CROSS JOIN Gabung Sendiri MySQL MySQL UNION MySQL GROUP OLEH MySQL MEMILIKI MySQL ADA MySQL APAPUN, SEMUA MySQL INSERT SELECT KASUS MySQL Fungsi Null MySQL Komentar MySQL Operator MySQL

Database MySQL

MySQL Buat DB MySQL Drop DB MySQL Buat Tabel Tabel Drop MySQL Tabel Ubah MySQL Batasan MySQL MySQL Bukan Null MySQL Unik Kunci Utama MySQL Kunci Asing MySQL Pemeriksaan MySQL Standar MySQL MySQL Buat Indeks Peningkatan Otomatis MySQL Tanggal MySQL Tampilan MySQL

Referensi MySQL

Tipe Data MySQL Fungsi MySQL

Contoh MySQL

Contoh MySQL Kuis MySQL Latihan MySQL

MySQL SUBSTRING_INDEX() Fungsi

Fungsi MySQL

Contoh

Kembalikan substring dari string sebelum jumlah pembatas yang ditentukan terjadi:

SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 1);

Definisi dan Penggunaan

Fungsi SUBSTRING_INDEX() mengembalikan substring dari string sebelum jumlah pembatas yang ditentukan terjadi.

Sintaksis

SUBSTRING_INDEX(string, delimiter, number)

Nilai Parameter

Parameter Description
string Required. The original string
delimiter Required. The delimiter to search for
number Required. The number of times to search for the delimiter. Can be both a positive or negative number. If it is a positive number, this function returns all to the left of the delimiter. If it is a negative number, this function returns all to the right of the delimiter.

Detail Teknis

Bekerja di: Dari MySQL 4.0

Lebih Banyak Contoh

Contoh

Kembalikan substring dari string sebelum jumlah pembatas yang ditentukan terjadi:

SELECT SUBSTRING_INDEX("www.w3schools.com", ".", 2);

Fungsi MySQL