i have a composite attribute, person_name, under table 1. person_name has first_name, last_name, middle_initial...etc.
how do i write a query to pull out just those names by first name? when i try to say:
select first_name from table 1;
it tells me that first_name is an invalid column name. is there some way to give it a path to first name?
how do i write a query to pull out just those names by first name? when i try to say:
select first_name from table 1;
it tells me that first_name is an invalid column name. is there some way to give it a path to first name?