מבחן (31/1/2017)
המבחן:המבחן הוא על ה Northwind.bak שאנו עובדים עליו כל שנה.
פתרונות: (שלי - לא רשמי)
-- מוצרים - שאלה 1
select *
from Products
order by ProductName desc
-- מוצרים - שאלה 2
select *
from Products
where ProductName not like '%e%'
-- מוצרים - שאלה 3
select count (ProductName) as "How many e"
from Products
where ProductName like '%e%'
-- מוצרים - שאלה4
select distinct (CategoryID)
from Products
-- מוצרים - שאלה 5
select count(UnitPrice)
from Products
where UnitPrice > 25.01
-- עובדים - שאלה 1
select *
from Employees
where len (FirstName) != len (LastName)
-- עובדים - שאלה 2
select *
from Employees
where year(BirthDate) < 1970
-- עובדים - שאלה 3
select distinct (Country)
from Employees
-- עובדים - שאלה 4
select *
from Employees
where (year(getdate()) - year(BirthDate)) > 22
-- עובדים - שאלה 5
select *
from Employees
where city = 'London'
בהצלחה
אין תגובות:
הוסף רשומת תגובה