SQL Tutorial
BERANDA SQLPengantar SQLSintaks SQLPilih SQLSQL Pilih BerbedaSQL DimanaSQL dan, atau, tidakSQL Order OlehSQL Sisipkan Ke DalamNilai SQL NullPembaruan SQLHapus SQLSQL Pilih AtasSQL Min dan MaksJumlah SQL, Rata-rata, JumlahSQL SepertiKartu Liar SQLSQL DalamSQL AntaraAlias SQLSQL BergabungGabung Dalam SQLSQL Kiri GabungSQL Right JoinSQL Bergabung PenuhSQL Bergabung sendiriPenyatuan SQLSQL Group OlehSQL MemilikiSQL AdaSQL Apa Saja, SemuaSQL Pilih Ke DalamSQL Insert Ke Dalam PilihKasus SQLFungsi SQL NullProsedur Tersimpan SQLKomentar SQLOperator SQLSQL Basis data
SQL Membuat DBSQL Drop DBSQL Backup DBSQL Membuat TabelTabel Drop SQLSQL Mengubah TabelKendala SQLSQL Tidak NullSQL UnikKunci Utama SQLKunci Asing SQLPemeriksaan SQLSQL DefaultIndeks SQLPeningkatan Otomatis SQLTanggal SQLTampilan SQLInjeksi SQLSQL HostingTipe Data SQLSQL Referensi
Kata Kunci SQLFungsi MySQLFungsi SQL ServerFungsi Ms AccessSQL Ref CepatSQL Contoh
Contoh SQLKuis SQLLatihan SQLSertifikat SQLSintaks SQL
Tabel Database
Database paling sering berisi satu atau beberapa tabel. Setiap tabel diidentifikasi dengan nama (misalnya "Pelanggan" atau "Pesanan"). Tabel berisi rekaman (baris) dengan data.
Dalam tutorial ini kita akan menggunakan database sampel Northwind yang terkenal (termasuk dalam MS Access dan MS SQL Server).
Di bawah ini adalah pilihan dari tabel "Pelanggan":
CustomerID | CustomerName | ContactName | Address | City | PostalCode | Country |
---|---|---|---|---|---|---|
1 | Alfreds Futterkiste | Maria Anders | Obere Str. 57 | Berlin | 12209 | Germany |
2 | Ana Trujillo Emparedados y helados | Ana Trujillo | Avda. de la Constitución 2222 | México D.F. | 05021 | Mexico |
3 | Antonio Moreno Taquería | Antonio Moreno | Mataderos 2312 | México D.F. | 05023 | Mexico |
4 | Around the Horn | Thomas Hardy | 120 Hanover Sq. | London | WA1 1DP | UK |
5 | Berglunds snabbköp | Christina Berglund | Berguvsvägen 8 | Luleå | S-958 22 | Sweden |
Tabel di atas berisi lima catatan (satu untuk setiap pelanggan) dan tujuh kolom (CustomerID, CustomerName, ContactName, Address, City, PostalCode, dan Country).
Pernyataan SQL
Sebagian besar tindakan yang perlu Anda lakukan pada database dilakukan dengan pernyataan SQL.
Pernyataan SQL berikut memilih semua rekaman dalam tabel "Pelanggan":
Dalam tutorial ini kami akan mengajari Anda semua tentang pernyataan SQL yang berbeda.
Keep in Mind That...
- SQL keywords are NOT case sensitive: is the same as
select
SELECT
In this tutorial we will write all SQL keywords in upper-case.
Semicolon after SQL Statements?
Some database systems require a semicolon at the end of each SQL statement.
Semicolon is the standard way to separate each SQL statement in database systems that allow more than one SQL statement to be executed in the same call to the server.
In this tutorial, we will use semicolon at the end of each SQL statement.
Some of The Most Important SQL Commands
SELECT
- extracts data from a databaseUPDATE
- updates data in a databaseDELETE
- deletes data from a databaseINSERT INTO
- inserts new data into a databaseCREATE DATABASE
- creates a new databaseALTER DATABASE
- modifies a databaseCREATE TABLE
- creates a new tableALTER TABLE
- modifies a tableDROP TABLE
- deletes a tableCREATE INDEX
- creates an index (search key)DROP INDEX
- deletes an index
Copyright 1999-2022 by Refsnes Data. All Rights Reserved.
W3Schools is Powered by W3.CSS.
Tidak ada komentar:
Posting Komentar