R
Roy Goldhammer
Hello there
I have table of citys with two fields
CityID autonumber, city text(20)
I've bilt the current query for adding new city:
PARAMETERS prmCity TEXT(20)
INSERT INTO Citys(City)
SELECT prmCity as expr1
But it don't work
It says that i tried to enter NULL to require field
What i need to do to fix it?
any help would be useful
I have table of citys with two fields
CityID autonumber, city text(20)
I've bilt the current query for adding new city:
PARAMETERS prmCity TEXT(20)
INSERT INTO Citys(City)
SELECT prmCity as expr1
But it don't work
It says that i tried to enter NULL to require field
What i need to do to fix it?
any help would be useful