I have created tables in SQL but the way the tables are laid out are not correct as they an in lines, as this screenshot shows:
i.e.:
name
-----------------------------------------------------------------------------------------------------------------------
city
---------------------------------------------------------------------------------------------
country
--------------------------------------------------
british airways
london
uk
As you can see the fields are displayed before the data. I have just showed you a representation of what it looks like, in SQL the lines after the field names i.e. "name " are dotted.
I am using the insert into statement to insert this data manually, i.e. insert into customer (carrier_id, name, city, country etc) into customer values ('Ba01', 'london','uk'); I have a feeling that its the field sizes as they are all pretty much varchar2 (100)?