SQL Commands

İç içe sorgu

Select customer_ballet 
from Customers
where in (select price from Products where price>10) 
// price'i 10 dan büyük olan verileri çekicek üst sorguda kullanıcaz bunu

Joinsiz bağlama

Select a.first_name,a.last_name,b.tel,b.address,b.mail
from Customers a , Customers_Info b
where a.CustomerId = b.Customer_Id

Query Titles

Table Relationship

SqlTrigger