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 SUBSTR() Fungsi

Fungsi MySQL

Contoh

Ekstrak substring dari string (mulai dari posisi 5, ekstrak 3 karakter):

SELECT SUBSTR("SQL Tutorial", 5, 3) AS ExtractString;

Definisi dan Penggunaan

Fungsi SUBSTR() mengekstrak substring dari string (dimulai dari posisi apa pun).

Catatan: Fungsi SUBSTR() dan MID() sama dengan fungsi SUBSTRING() .

Sintaksis

SUBSTR(string, start, length)

ATAU:

SUBSTR(string FROM start FOR length)

Nilai Parameter

Parameter Description
string Required. The string to extract from
start Required. The start position. Can be both a positive or negative number. If it is a positive number, this function extracts from the beginning of the string. If it is a negative number, this function extracts from the end of the string
length Optional. The number of characters to extract. If omitted, the whole string will be returned (from the start position)

Detail Teknis

Bekerja di: Dari MySQL 4.0

Lebih Banyak Contoh

Contoh

Ekstrak substring dari teks dalam kolom (mulai dari posisi 2, ekstrak 5 karakter):

SELECT SUBSTR(CustomerName, 2, 5) AS ExtractString
FROM Customers;

Contoh

Ekstrak substring dari string (mulai dari akhir, pada posisi -5, ekstrak 5 karakter):

SELECT SUBSTR("SQL Tutorial", -5, 5) AS ExtractString;

Fungsi MySQL