I'm trying to use a Query to create a table so that when the fields change, as they are doing regularly right now, I can just modify the script and re-execute.
I have a problem though.
Does not set the "Allow Zero Length" to Yes.
ALTER Table isn't any different.
Can anyone tell me how to do this in SQL?
Regards,
J.
I have a problem though.
Code:
CREATE TABLE [Table_Name]
(Field1 TEXT(18) NULL,
(Field2 TEXT(255) NULL);
Does not set the "Allow Zero Length" to Yes.
ALTER Table isn't any different.
Can anyone tell me how to do this in SQL?
Regards,
J.