Tutorial SQL ucase () function Terbaik Pada tahun 2024, Dalam tutorial ini Anda dapat mempelajari Ucase () function,Demo Database,SQL ucase () contoh,contoh,

SQL ucase () function

Ucase () function

() Fungsi ucase nilai lapangan dikonversi ke huruf besar.

SQL ucase () sintaks

SELECT UCASE(column_name) FROM table_name;

Sintaks untuk SQL Server

SELECT UPPER(column_name) FROM table_name;


Demo Database

Dalam tutorial ini, kita akan menggunakan database contoh w3big.

Berikut ini adalah yang dipilih "Website" data tabel:

+----+--------------+---------------------------+-------+---------+
| id | name         | url                       | alexa | country |
+----+--------------+---------------------------+-------+---------+
| 1  | Google       | https://www.google.cm/    | 1     | USA     |
| 2  | 淘宝          | https://www.taobao.com/   | 13    | CN      |
| 3  | 本教程      | http://www.w3write.com/    | 4689  | CN      |
| 4  | 微博          | http://weibo.com/         | 20    | CN      |
| 5  | Facebook     | https://www.facebook.com/ | 3     | USA     |
| 7  | stackoverflow | http://stackoverflow.com/ |   0 | IND     |
+----+---------------+---------------------------+-------+---------+


SQL ucase () contoh

Pernyataan SQL berikut dipilih dari "Website" tabel "nama" dan kolom "url", dan nilai konversi "nama" kolom ke huruf besar:

contoh

SELECT UCASE(name) AS site_title, url
FROM Websites;

Eksekusi SQL atas hasil output adalah sebagai berikut:

SQL ucase () function
10/30