Tutorial SQL

SQL RUMAH Pengenalan SQL Sintaks SQL Pilih SQL SQL Pilih Berbeda SQL Dimana SQL Dan, Atau, Tidak Perintah SQL Oleh SQL Sisipkan Ke Nilai Null SQL Pembaruan SQL Hapus SQL SQL Pilih Atas SQL Min dan Maks Hitung SQL, Rata-Rata, Jumlah SQL Suka SQL Wildcard SQL In SQL Antara SQL Alias SQL Bergabung Gabung Dalam SQL SQL Kiri Gabung SQL Benar Bergabung Gabung Penuh SQL SQL Self Gabung SQL Union Grup SQL Oleh SQL Memiliki SQL Ada SQL Apa saja, Semua SQL Pilih Ke Sisipkan SQL Ke Pilih Kasus SQL Fungsi SQL Null Prosedur Tersimpan SQL Komentar SQL Operator SQL

Basis Data SQL

SQL Buat DB SQL Drop DB SQL Cadangan DB SQL Buat Tabel Tabel Jatuhkan SQL Tabel Ubah SQL Batasan SQL SQL Bukan Null SQL Unik Kunci Utama SQL Kunci Asing SQL Pemeriksaan SQL SQL Default Indeks SQL Peningkatan Otomatis SQL Tanggal SQL Tampilan SQL Injeksi SQL SQL Hosting Tipe Data SQL

Referensi SQL

Kata Kunci SQL Fungsi MySQL Fungsi SQL Server Fungsi Akses MS Referensi Cepat SQL

Contoh SQL

Contoh SQL Kuis SQL Latihan SQL Sertifikat SQL

Fungsi MS Access StrConv()

Fungsi Akses MS

Contoh

Mengonversi string:

SELECT StrConv("SQL Tutorial is cool", 1) AS ConvertedString;

Definisi dan Penggunaan

Fungsi StrConv() mengembalikan string yang dikonversi. 

Sintaksis

StrConv(string1, conversion, LCID)

Nilai Parameter

Parameter Description
string1 Required. The string to be converted
conversion Required. The type of conversion to perform.

Possible values:
1: Convert to upper-case
2: Convert to lower-case
3: Convert the first letter of every word to upper-case
4: Convert narrow characters to wide
16: Converts Hiragana into Katakana (Japan only)
32: Converts Katakane into Hiragana (Japan only)
64: Converts to unicode
128: Converts from Unicode to default page code
LCID Optional. The LocaleID. If omitted, this function uses the system LocaleID

Detail Teknis

Bekerja di: Dari Akses 2000

Lebih Banyak Contoh

Contoh

Mengonversi string:

SELECT StrConv("SQL Tutorial is cool", 2) AS ConvertedString;

Contoh

Mengonversi string:

SELECT StrConv("SQL Tutorial is cool", 3) AS ConvertedString;

Fungsi Akses MS