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

Fungsi MySQL

Contoh

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

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

Definisi dan Penggunaan

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

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

Sintaksis

MID(string, start, 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 Required. The number of characters to extract

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 MID(CustomerName, 2, 5) AS ExtractString
FROM Customers;

Contoh

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

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

Fungsi MySQL