Write a query to get all details of customers whose name starts with an alphabet ‘A’?
SELECT * FROM customers WHERE name LIKE 'A%';
BY Best Interview Question ON 20 Sep 2022
SELECT * FROM customers WHERE name LIKE 'A%';