There has been a change at Skyvia where you seem to have changed that name of the 'Last Name' to 'Last name' (you sort of changed from Camel Case to Title case....). We now have a number of records in the database where either the one or the other field is filled:
select count (*) from hubspotv."Contacts" where "First Name" is null and "First name" is not null;
select count (*) from hubspotv."Contacts" where "First name" is null and "First Name" is not null;
select count (*) from hubspotv."Contacts" where "Last Name" is null and "Last name" is not null;
select count (*) from hubspotv."Contacts" where "Last name" is null and "Last Name" is not null;
select count (*) from hubspotv."Contacts" where "Phone Number" is null and "Phone number" is not null;
select count (*) from hubspotv."Contacts" where "Phone number" is null and "Phone Number" is not null;
this is annoying, can you change this?