Here is a problem I am having with a query.
I have a table with the following data
Fields: "date" "operator"
12/12/2007 American Airlines
01/14/2006 American Airlines / Private
06/30/1956 American Airllines / United Air Lines
01/02/1930 USAir
02/02/2020 United Air Lines
04/04/1940 Northwest Airlines
05/05/1950 Air France
I want to make a query that will make a new table. I want the query to recognize the "/" character in the operator field and break that record into two seperate records so the table will look like:
Fields: "date" "operator"
12/12/2007 American Airlines
01/14/2006 American Airlines
01/14/2006 Private
06/30/1956 American Airllines
06/30/1956 United Air Llines
01/02/1930 USAir
02/02/2020 United Air Lines
04/04/1940 Northwest Airlines
05/05/1950 Air France
Maybe there is no way to do this. But if there is, would appreciate any help.
Richard
I have a table with the following data
Fields: "date" "operator"
12/12/2007 American Airlines
01/14/2006 American Airlines / Private
06/30/1956 American Airllines / United Air Lines
01/02/1930 USAir
02/02/2020 United Air Lines
04/04/1940 Northwest Airlines
05/05/1950 Air France
I want to make a query that will make a new table. I want the query to recognize the "/" character in the operator field and break that record into two seperate records so the table will look like:
Fields: "date" "operator"
12/12/2007 American Airlines
01/14/2006 American Airlines
01/14/2006 Private
06/30/1956 American Airllines
06/30/1956 United Air Llines
01/02/1930 USAir
02/02/2020 United Air Lines
04/04/1940 Northwest Airlines
05/05/1950 Air France
Maybe there is no way to do this. But if there is, would appreciate any help.
Richard