LARiot
Programmer
- Feb 7, 2007
- 232
Hi,
What's the syntax for using an INSERT INTO statement for a numeric field that is sometimes blank? With the text fields it's no problem because it's surrounded with quotes. Currently the statement looks like:
The problem is with the ... [License Fee] = , ...
Thanks for looking at this.
What's the syntax for using an INSERT INTO statement for a numeric field that is sometimes blank? With the text fields it's no problem because it's surrounded with quotes. Currently the statement looks like:
Code:
UPDATE tblCanada SET [ProductSource] = 'E!', [Series Title] = 'Celebrity Profile', [Ep #] = 'CPRO-0027', [Episode Title] = 'Sharon Stone', [Genre] = 'E! Clip Shows', [Type] = '2nd Run', [CommercialRunTime] = 60, [License Term Start Date] = '9/1/2007', [License Term Expiration Date] = '8/31/2008', [First Available Date] = '10/28/1998', [Rights Expiration Date] = '10/27/2008', [License Fee] = , [Selected] = '', [Delivered] = '', [Quantity] = WHERE [Series Title] = 'Celebrity Profile' AND [Episode Title] = 'Sharon Stone' AND [Ep #] = 'CPRO-0027'
The problem is with the ... [License Fee] = , ...
Thanks for looking at this.