Latest web development tutorials

SQL FIRST () Fungsi

FIRST () Fungsi

FIRST () fungsi mengembalikan nilai dari kolom yang ditentukan dalam catatan pertama.

SQL FIRST () sintaks

SELECT FIRST(column_name) FROM table_name;

Catatan: Hanya dukungan MS Access FIRST () fungsi.


SQL Server, MySQL dan Oracle di SQL FIRST () ruang kerja

sintaks SQL Server

SELECT TOP 1 column_name FROM table_name
ORDER BY column_name ASC;

contoh

SELECT TOP 1 nama DARI Website
ORDER BY id ASC;

sintaks MySQL

SELECT column_name FROM table_name
ORDER BY column_name ASC
LIMIT 1;

contoh

SELECT name FROM Websites
ORDER BY id ASC
LIMIT 1;

Oracle Sintaks

SELECT column_name FROM table_name
ORDER BY column_name ASC
WHERE ROWNUM <=1;

contoh

SELECT name FROM Websites
ORDER BY id ASC
WHERE ROWNUM <=1;


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.w3big.com/    | 4689  | CN      |
| 4  | 微博          | http://weibo.com/         | 20    | CN      |
| 5  | Facebook     | https://www.facebook.com/ | 3     | USA     |
|  6 | 百度         | https://www.baidu.com/    |     4 | CN      |
|  7 | stackoverflow | http://stackoverflow.com/ |     0 | IND     |
+----+---------------+---------------------------+-------+---------+


SQL FIRST () contoh

Berikut pernyataan SQL pilih "Website" tabel "nama" kolom nilai record pertama:

contoh

SELECT name AS FirstSite FROM Websites LIMIT 1;

pelaksanaan SQL dari hasil di atas adalah sebagai berikut: