Hi, I’m writing Oracle SQL articles and sharing with you. You can learn SQL by following my articles and trying example SQL’s. Here are the SQL Tutorials, I highly recommend …
Read More »Tag Archives: SQL
PL/SQL Programing -1 Introduction to PL/SQL
Hi, we are starting a new tutorial. In this tutorial we’ll look PL/SQL programing, examples and much more. PL / SQL is a programming language created by adding the …
Read More »Oracle SQL Tutorials – Chapter 5
Chapter 5 – Selecting Data From Multiple Tables Usage of multiple tables in one query Combining tables – JOIN Different Types of SQL Join Left Outer Join Right Outer Join …
Read More »Oracle SQL Tutorials – Chapter 4
Chapter 4 – Group Functions AVG Function SUM Function MIN Function MAX Function COUNT Function DISTINCT Function GROUP BY Statement HAVING Statement One row functions can be applied to …
Read More »PL/SQL Programlama -11 Trigger Kullanımı
Merhaba, bu yazıda Trigger konusuna bakacağız bir önceki yazıda fonksiyonları incelemiştik bu yazıya geçmeden önce incelemenizi tavsiye ederiz. https://ittutorial.org/pl-sql-programlama-10/ Trigger’ın türkçe karşılığı tetikleyci demektir veritabanında bir insert, update vb gibi …
Read More »Oracle SQL Tutorials – Chapter 3 (Part 3 of 3)
CONVERSION FUNCTIONS TO_CHAR (DATE) TO_CHAR(date, ‘format’) It’s case-sensitive and must be written between quotes. It must contain a valid date format. Let’s list the hire dates of employees like below. …
Read More »Oracle SQL Tutorials – Chapter 3 (Part 2 of 3)
NUMERIC FUNCTIONS ROUND Let’s try some different usages of the ROUND function. SELECT ROUND (45.923), ROUND (45.943, 1), ROUND (45.924, 2), ROUND (44.923, -1), ROUND (55.923, -2) FROM DUAL; …
Read More »Oracle SQL Tutorials – Chapter 3 (Part 1 of 3)
Chapter 3 – Single Row Functions Charcter Functions Numeric Functions Date Functions Converting Functions NVL Function Decode Function CASE Statement SQL FUNCTIONS SQL Functions can be classiifed under 2 …
Read More »PL/SQL Programlama – 10
Merhaba, PL/SQL yazılarına devam ediyoruz, bir önceki yazıya göz atmadıysanız şuradan bakabilirsiniz. Bu yazıda Fonksiyonlar’a başlıyoruz. Prosedürler ile benzer işleri yapan ancak farklı olarak geriye değer döndüren bir yapıdır. Fonksiyon …
Read More »PL/SQL Programlama – 9
Merhaba, PL/SQL yazılarına devam ediyoruz. Bu yazıda Prosedür ‘lere başlıyoruz. PROSEDÜRLER: Prosedürler bir veritabanı objesidir. Yapacağı işleme dair yazdığımız kodu bir defa derlenip veritabanına kayıt edildikten sonra kod içerisinde çağırışığ …
Read More »