SQL1
SQL1
--Use Database
Use Customer;
--Displaying the table with Condition(Select only the �first_name� & �last_name�
columns from the customer table & Select those records where �first_name� starts
with �G� and city is �San Jose)
Select * from Customer_Details;
Select Customer_First_Name,Customer_Last_Name from Customer_Details;
Select * from Customer_Details where Customer_First_Name like 'G%' and
Customer_City like 'San Jose';