EagleTempest
Technical User
VB6 and Access.
I'm learning SQL and just realized with a simple append query such as
that all values must have a value. If I omit 3 as in
I get a syntax error. However I would prefer not to have to always have a value.
If I use the more exact approach as:
will this allow blank values? I have the Required property for each field in Access set to No.
I'm learning SQL and just realized with a simple append query such as
Code:
"INSERT INTO WindowComponents VALUES (2,1,'Awn',610,610,3,'Pencil','Yes')"
Code:
"INSERT INTO WindowComponents VALUES (2,1,'Awn',610,610,,'Pencil','Yes')"
If I use the more exact approach as:
Code:
"INSERT INTO WindowComponents (QuoteNum, WindowNum, Type, Width, Height, MuntinSqrs, MuntinType, FixedSash) VALUES (2,1,'Awn',610,610,,'Pencil','Yes')"