Выберите и условия в SQL
//ex-List addresses of all branch offices in London or
Glasgow.//
SELECT *
FROM Branch
WHERE city = ‘London’ OR city = ‘Glasgow’;
naly moslih
//ex-List addresses of all branch offices in London or
Glasgow.//
SELECT *
FROM Branch
WHERE city = ‘London’ OR city = ‘Glasgow’;