MS-SQL Server Mülakat Soru ve Cevapları
1) With SQL, how can you return all the records from a table named “Customer” where the “CompanyName” starts with “Te”? A) SELECT * FROM Customer WHERE CompanyName = 'Te%'B) SELECT * FROM Customer WHERE CompanyName LIKE 'Te%' C) SELECT * FROM Customer WHERE CompanyName LIKE '%Te'D) SELECT * FROM Customer…