/* * Ex:- Selecting name from customer table */ SELECT name FROM customer; /* * Ex:- Selecting customer i.d and name from customer table */ SELECT id, name FROM customer;