SQL Module 2 Assignmnt
SQL Module 2 Assignmnt
--3.Select only the ‘first_name’ & ‘last_name’ columns from the customer table
select first_name, last_name from cus
--4.Select those records where ‘first_name’ starts with “G” and city is ‘San Jose’
select * from cus where first_name like 'G' and address ='San Jose'