flaviooooo
Programmer
Hi,
I'm trying to insert a new record into a table, using the INSERT INTO... statement.
The problem is that one of the values in the records is a number with a comma, and thus SQl thinks I have 1 column to many in my values-string.
Here is the statement:
insert into tblstock(material,Stock,) values(10000025, 106,4)
As you can see I want to add 10000025 to material, and 106,4 to stock.
How can I tell SQl that 106,4 is a number and not 2 separate values?
Thanks in advance!
I'm trying to insert a new record into a table, using the INSERT INTO... statement.
The problem is that one of the values in the records is a number with a comma, and thus SQl thinks I have 1 column to many in my values-string.
Here is the statement:
insert into tblstock(material,Stock,) values(10000025, 106,4)
As you can see I want to add 10000025 to material, and 106,4 to stock.
How can I tell SQl that 106,4 is a number and not 2 separate values?
Thanks in advance!