Dbms
Dbms
--
--
('Beximco', 'Dhaka'),
('Beximco', 'Rangpur'),
('Opsonin', 'Chittagong'),
('Opsonin', 'Rangpur'),
('Square', 'Bogra'),
('Square', 'Chittagong');
-- --------------------------------------------------------
--
--
--
-- --------------------------------------------------------
--
--
--
--
INSERT INTO `emp_company` (`ename`, `caname`, `salary`) VALUES
-- --------------------------------------------------------
--
--
--
--
--
--
--
--
--
--
--
--
--
6.Find the number of companies whare the company name starts with S or O.
SELECT COUNT(*) AS CountOfCompanies
FROM `company`
WHERE cname LIKE 'S%' OR cname LIKE 'O%';