Presentasi sedang didownload. Silahkan tunggu

Presentasi sedang didownload. Silahkan tunggu

Konsep teknologi informasi b

Presentasi serupa


Presentasi berjudul: "Konsep teknologi informasi b"— Transcript presentasi:

1 Konsep teknologi informasi b
M3. SQL Query

2 Objectives Struktur SQL Query – Pertemuan M2 Operator Aritmatika
Penggunaan Kolom Alias Operator pembanding & Operasi Himpunan Operator Boolean Pencarian String Penggunaan Distinct Fungsi Agregat

3 SQL – OPERATOR ARITMATIKA

4 SQL – Operator Aritmatika
Pada ekspresi SQL dengan tipe data Number dan Date dapat digunakan operator aritmatika. Operator Precedence Deskripsi + Tambah - Kurang * Kali / Bagi

5 SQL – Operator Aritmatika
Contoh: (jika memiliki kolom pada tabel employees) seperti di bawah ini

6 SQL – Operator Aritmatika
Contoh: Jika menggunakan statement : SELECT LAST_NAME, SALARY, SALARY+300 FROM EMPLOYEES;

7 SQL – Operator Aritmatika
Contoh: (Hasil)

8 SQL – Operator Aritmatika
Contoh: (Hasil)

9 SQL – Operator Aritmatika
Contoh 2 : (Jika menggunakan dua operator sekaligus) SELECT LAST_NAME, SALARY, 12*SALARY+100 FROM EMPLOYEES; SELECT LAST_NAME, SALARY, 12*(SALARY+100) FROM EMPLOYEES;

10 SQL – Operator Aritmatika
Contoh 2 : Hasil Statement 1

11 SQL – Operator Aritmatika
Contoh 2 : Hasil Statement 2

12 SQL – Operator Aritmatika
Contoh 2 : Hasil Berbeda karena USING PARENTHESES

13 SQL ALIASES

14 SQL – ALIASES SQL aliases are used to temporarily rename a table or a column heading. SQL aliases are used to give a database table, or a column in a table, a temporary name. Basically aliases are created to make column names more readable.

15 SELECT column_name AS alias_name FROM table_name;
SQL – ALIASES SQL Alias Syntax for Columns SELECT column_name AS alias_name FROM table_name;

16 SQL – ALIASES Contoh: Kasus 1
(Jika ingin membuat last_name menjadi name, dan commission_pct menjadi comm)

17 SELECT last_name AS name, commission_pct AS comm FROM employees;
SQL – ALIASES Contoh: SELECT last_name AS name, commission_pct AS comm FROM employees;

18 SQL – ALIASES Contoh: Hasil (Jika ingin membuat last_name menjadi name, dan commission_pct menjadi comm)

19 SQL – ALIASES Contoh 2: Kasus 2
(Jika ingin membuat last_name menjadi name, dan kolom salary dikalikan 12 menjadi Annual Salary)

20 SELECT last_name “Name”, salary*12 “Annual Salary” FROM employees;
SQL – ALIASES Contoh 2: (Jika ingin membuat last_name menjadi name, dan kolom salary dikalikan 12 menjadi Annual Salary) SELECT last_name “Name”, salary*12 “Annual Salary” FROM employees;

21 SQL – ALIASES Contoh 2: Hasil (Jika ingin membuat last_name menjadi name, dan kolom salary dikalikan 12 menjadi Annual Salary)

22 SELECT column_name(s) FROM table_name AS alias_name;
SQL – ALIASES SQL Alias Syntax for Tables SELECT column_name(s) FROM table_name AS alias_name;

23 SQL – ALIASES Contoh for Table Columns:
The following SQL Statement selects all the orders from the Customer with CustomerID=4 (Around the Horn). We use the “Customers” and “Orders” tables, and give them tables aliases of “c” and “o” respectively (Here we have used aliases to make the SQL shorter).

24 SQL – ALIASES Tabel Customers CustomerID CustomerName ContactName
Address City PostalCode Country 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 05023 4 Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK

25 SQL – ALIASES Tabel Orders OrderID CustomerID EmployeeID OrderDate
ShipperID 10354 58 8 3 10355 4 6 1 10356 86 2

26 SQL – ALIASES Contoh Statement: (with aliases) SELECT o.OrderID, o.OrderDate, c.CustomerName FROM Customers AS c, Orders AS o WHERE c.CustomerName="Around the Horn" AND c.CustomerID=o.CustomerID;

27 SQL – ALIASES Contoh Statement: (without aliases) SELECT Orders.OrderID, Orders.OrderDate, Customers.CustomerName FROM Customers, Orders WHERE Customers.CustomerName="Around the Horn" AND Customers.CustomerID=Orders.CustomerID;

28 SQL SELECT DISTINCT

29 SQL SELECT Distinct The SELECT DISTINCT statement is used to return only distinct (diferent) values. In a table, a column may contain many duplicate values; and sometimes you only want to list the different (distinct) values. The DISTINCT keyword can be used to return only distinct (different) values.

30 SELECT DISTINCT column_name, column_name FROM table_name;
SQL SELECT Distinct SQL SELECT DISTINCT Syntax SELECT DISTINCT column_name, column_name FROM table_name;

31 SQL SELECT Distinct Contoh : (Kasus 1)

32 SQL SELECT Distinct Contoh : (Kasus 2)
The following SQL statement selects only the distinct values from the "City" columns from the "Customers" table

33 SQL SELECT Distinct Contoh : (Kasus 2) Tabel Customer 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 05023 4 Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK 5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S Sweden

34 SELECT DISTINCT City FROM Customers;
SQL SELECT Distinct Contoh : (Kasus 2) SELECT DISTINCT City FROM Customers;

35 SQL – Operasi Pembanding

36 SQL – Operator Pembanding
Berikut ini Operator pembanding dalam SQL Operator Meaning = Equal to > Greater than >= Greater than or Equal to < Less than <= Less than or equal to <> Not Equal to

37 SQL – Operator Pembanding
Contoh: (Jika ingin menampilkan salary kurang dari sama dengan 3000 Last_name salary Matos 2600 Vargas 2500 Jose 3100 Santos 3500 Marquez

38 SQL – Operator Pembanding
Contoh: Statement SELECT last_name, salary FROM employees WHERE salary <= 3000;

39 SQL – Operator Pembanding
Contoh: Hasil

40 SQL – Operator Pembanding
Operator Pembanding Kondisi lainnya (Other Comparison Conditions) Operator Meaning BETWEEN … AND …. Between two values (inclusive) IN (set) Match any of a list of values LIKE Match a character pattern IS NULL Is a null value

41 SQL BETWEEN

42 SQL – Operator Pembanding
The SQL BETWEEN Operator The BETWEEN operator selects values within a range. The values can be numbers, text, or dates.

43 SQL – Operator Pembanding
The SQL BETWEEN Syntax SELECT column_name(s) FROM table_name WHERE column_name BETWEEN value1 AND value2;

44 SQL – Operator Pembanding
Example of The SQL BETWEEN Below is a selection from the ‘Products’ table ProductID ProductName SupplierID CategoryID Unit Price 1 Chais 10 boxes x 20BAGS 18 2 Chang oz bottles 19 3 Aniseed Syrup ml bottles 10 4 Chef Anton's Cajun Seasoning oz jars 22 5 Chef Anton's Gumbo Mix 36 boxes 21.35

45 SQL – Operator Pembanding
Example of The SQL BETWEEN Kasus : The following SQL statement selects all products with a price BETWEEN 10 and 20

46 SQL – Operator Pembanding
Example of The SQL BETWEEN Answer: SELECT * FROM Products WHERE Price BETWEEN 10 AND 20;

47 SQL – Operator Pembanding
Example of The SQL BETWEEN Kasus : Bagaimana untuk menampilkan products diluar dari range 10 dan 20 ??

48 SQL – Operator Pembanding
Example of The SQL BETWEEN Answer: SELECT * FROM Products WHERE Price NOT BETWEEN 10 AND 20;

49 SQL – Operator Pembanding
Example of The SQL BETWEEN Kasus : The following SQL statement selects all products with a price BETWEEN 10 and 20, but products with a CategoryID of 1,2, or 3 should not be displayed?

50 SQL – Operator Pembanding
Example of The SQL BETWEEN Answer: SELECT * FROM Products WHERE (Price BETWEEN 10 AND 20) AND NOT CategoryID IN (1,2,3);

51 SQL – Operator Pembanding
Example of The SQL BETWEEN Kasus: The following SQL statement selects all products with a ProductName beginning with any of the letter BETWEEN ‘C’ and ‘M’?

52 SQL – Operator Pembanding
Example of The SQL BETWEEN Answer: SELECT * FROM Products WHERE ProductName BETWEEN 'C' AND 'M';

53 SQL IN

54 SQL IN The IN operator allows you to specify multiple values in a WHERE clause. SQL IN Syntax SELECT column_name(s) FROM table_name WHERE column_name IN (value1,value2,...);

55 SQL IN Example : Below is a selection from the ‘Customers’ table
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 05023 4 Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK 5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S Sweden

56 SQL IN Case: The Following SQL Statement selects all customers with a City of ‘London’ or ‘Berlin’?

57 SELECT * FROM Customers WHERE City IN ('London‘, ‘Berlin’);
SQL IN Answer: SELECT * FROM Customers WHERE City IN ('London‘, ‘Berlin’);

58 SQL LIKE Operator

59 SQL Like The LIKE operator is used in a WHERE clause to search for a specified patern in a column. Gunakan kondisi LIKE untuk melakukan pencarian sebagian nilai string. Kondisi pencarian dapat menggunakan symbol karakter berikut: % : Menunjukkan nol/kosong atau sembarang beberapa karakter. _ : menunjukkan sembarang 1 karakter

60 SELECT column_name(s) FROM table_name WHERE column_name LIKE pattern;
SQL Like The SQL LIKE Syntax SELECT column_name(s) FROM table_name WHERE column_name LIKE pattern;

61 SQL Like Example:

62 SQL Like Example: Kasus 1:
Bagaimana menampilkan first_nama yang memiliki huruf depan S?

63 SQL Like Example: Answer:

64 SQL Like Example: Kasus 2
Bagaimana menampilkan nama terakhir yang huruf keduanya mengandung huruf o?

65 SQL Like Example: Answer:

66 SQL Like Exercise: 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 05023 4 Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK 5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S Sweden

67 SQL Like Exercise: How to selects all customers with a City starting with the letter “s”? How to selects all customers with a City ending with the letter “s”? How to selects all customers with a Country containing the pattern “land”? How to selects all customers with Country NOT containing the pattern “land’?

68 SQL – Using the Null conditions
Example:

69 SQL Logical Conditions

70 Logical Conditions The AND, OR, & NOT operators are used to filter records based on more than one condition. Operator Arti AND Returns TRUE, jika kedua kondisi adalah TRUE OR Returns TRUE, jika salah satu kondisi adalah TRUE NOT Returns TRUE, jika kondisi tersebut adalah False

71 Logical Conditions The SQL AND & OR Operators
The AND operator display a record if both the first condition AND the second condition are true. The OR operator displays a record if either the first condition OR the second condition is true.

72 Logical Conditions Example : Below is a selection from the “Customers” table 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 05023 4 Around the Horn Thomas Hardy 120 Hanover Sq. London WA1 1DP UK 5 Berglunds snabbköp Christina Berglund Berguvsvägen 8 Luleå S Sweden

73 Logical Conditions Example : Kasus 1
How to Selects all customers from country “Germany” AND the city “Berlin”, in the Customers table?

74 SELECT * FROM Customers WHERE Country='Germany' AND City='Berlin';
Logical Conditions Example : Answer 1 SELECT * FROM Customers WHERE Country='Germany' AND City='Berlin';

75 Logical Conditions Example : Kasus 2
How to selects all customers from the city ‘Berlin” OR “Munchen”, in the Customers table?

76 SELECT * FROM Customers WHERE City='Berlin' OR City='München';
Logical Conditions Example : Answer 2 SELECT * FROM Customers WHERE City='Berlin' OR City='München';

77 Logical Conditions Example 3: Kasus 3
How to selects all customers from the country “Germany” AND the city must be equal to “Berlin” OR “Munchen”, in the Customers table?

78 Logical Conditions Example 3: Answer 3 SELECT * FROM Customers WHERE Country='Germany' AND (City='Berlin' OR City='München');

79 Logical Conditions Using the NOT Operator

80 Logical Conditions Hasil:

81 SQL – Operasi Pembanding
Rules of Precedence Order Evaluated Operators 1 Arithmetic Operators 2 Concatenation operator 3 Comparison conditions 4 IS [NOT] NULL, LIKE, [NOT] IN 5 [NOT] BETWEEN 6 NOT logical condition 7 AND logical condition 8 OR logical condition

82 SQL – Operasi Pembanding
Example of Rules of Precedence 1

83 SQL – Operasi Pembanding
Example of Rules of Precedence 2

84 FUNGSI AGREGAT

85 Fungsi agregat Fungsi Agregat dalam SQL adalah fungsi yang menerima kumpulan atau koleksi dan mengembalikan nilai tunggal sebagai hasilnya, seperti: Jumlah data, nilai minimum, nilai maximum dan nilai rata- rata. Fungsi ini digunakan bersama dengan pernyataan SELECT.

86 Jenis Fungsi agregat Standar ISO mendefinisikan lima jenis fungsi agregat, yaitu: Fungsi Penjelasan SUM Digunakan untuk menghitung total nilai dari kolom tertentu COUNT Digunakan untuk menghitung jumlah record AVG Digunakan untuk menampilkan nilai rata-rata dari suatu kolom MAX Digunakan untuk menampilkan nilai tertinggi dari suatu kolom MIN Digunakan untuk menampilkan nilai terendah dari suatu kolom

87 Jenis Fungsi agregat Example :
Berikut ini adalah latihan dalam menggunakan fungsi agregat. Buatlah tabel buku dengan struktur tabel sebagai berikut : -> Next Slide

88 Jenis Fungsi agregat Example :

89 Jenis Fungsi agregat Example : Kita lihat deskripsi dari tabel buku.

90 Jenis Fungsi agregat Example : Masukkan data sebagai berikut

91 Jenis Fungsi agregat Example : Jika ditampilkan dari tabel buku
mysql> SELECT * FROM buku; | kode_buku | judul_buku             | pengarang        | penerbit      | tahun | kategori  | harga| tgl_inventaris | | B0001     | Harry Potter           | JK Rowling       | British Press |  2013 | Fiksi     | 50000|      | | B0002     | Sistem Basis Data      | Abdul Kadir      | Andi Offset   |  2013 | Buku Teks | 40000|      | | B0003     | Sistem Basis Data      | Fathansyah       | ITB Press     |  2013 | Buku Teks | 30000|      | | B0004     | Prophet Muhammad       | Amir Abdullah    | Madina Press  |  2014 | Biografi  | 45000|      | | B0005     | Ketika Cinta Bertasbih | Habiburahaman ES | Madina Press  |  2014 | Fiksi     | 75000|      | | B0006     | Pemrograman Basis Data | Abdul Kadir      | Andi Offset   |  2015 | Buku Teks | 67000|      |

92 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
Fungsi COUNT Digunakan untuk menghitung jumlah record. Example: Bagaimana menghitung jumlah jenis buku di dalam tabel buku?

93 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
Fungsi COUNT

94 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
Fungsi COUNT Bagaimana cara menghitung jumlah record tabel buku dengan nama kolom jum_rec?

95 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
Fungsi COUNT

96 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
Fungsi COUNT Bagaimana menghitung jumlah record untuh tahun 2013 yang diberi nama jum_rec?

97 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
Fungsi COUNT

98 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
2. Fungsi Agregat SUM Fungsi SUM digunakan untuk menghitung total nilai dari kolom tertentu.

99 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
2. Fungsi Agregat SUM Bagaiamana untuk menghitung total harga dari kolom harga dengan nama kolom menjadi total_harga?

100 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
2. Fungsi Agregat SUM

101 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
2. Fungsi Agregat SUM Bagaimana untuk menghitung total harga untuk tahun 2013 dari kolom kolom harga dengan nama kolom menjadi total_harga?

102 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
2. Fungsi Agregat SUM

103 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
3. Fungsi Agregat MAX Digunakan untuk menampilkan nilai tertinggi dari suatu kolom.

104 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
3. Fungsi Agregat MAX Example: Bagaimana cara menampilkan harga tertinggi dari kolom harga dan ditampilkan dengan nama kolom harga_tertinggi?

105 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
3. Fungsi Agregat MAX

106 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
3. Fungsi Agregat MAX Bagaimana untuk menampilkan harga tertinggi untuk tahun 2013?

107 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
3. Fungsi Agregat MAX Bagaimana untuk menampilkan harga tertinggi untuk tahun 2013 dan ditampilkan dengan nama harga_tertinggi?

108 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
3. Fungsi Agregat MAX

109 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
4. Fungsi Agregat MIN Digunakan untuk menampilkan nilai terendah dari suatu kolom Example: Bagaimana untuk menampilkan nilai terendah dengan nama kolom harga_terendah?

110 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
4. Fungsi Agregat MIN

111 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
4. Fungsi Agregat MIN Bagaimana menampilkan harga terendah pad atahun 2013?

112 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
4. Fungsi Agregat MIN

113 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
5. Fungsi Agregat AVG Digunakan untuk menampilkan nilai rata-rata dari suatu kolom. Bagaimana untuk menampilkan nilai rata rata dari harga dalam tabel buku dengan nama kolom harga_rerata?

114 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
5. Fungsi Agregat AVG

115 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
5. Fungsi Agregat AVG Bagaimana menampilkan rata rata harga pada tahun 2013 dengan nama kolom harga_rerata dari tabel buku?

116 Jenis Fungsi agregat Example : Implementasi Fungsi Agregat
5. Fungsi Agregat AVG

117 Sumber Solichin, Achmad. MySQL 5 : Dari Pemula Hingga Akhir. Buku Komputer Gratis SQL, Basis Data 1, Chapter 2, PENS ITS [URL] : [URL] :

118


Download ppt "Konsep teknologi informasi b"

Presentasi serupa


Iklan oleh Google