Create Table
-
Hello, If I want a table with decimal then what is te syntax I should use to create the table. I have doubt about the data type to be used "decimal(10,2)" Is the following right? Create Table Sales (Amt decimal(10,2)) Thanks Prithaa
-
Have you tried it?
Paul Marfleet "No, his mind is not for rent To any God or government" Tom Sawyer - Rush
-
Hello, Yes I have tried it and it gives me field definition error. I think the problem lies in declaring right kind of data type . decimal(10,2) or numeric(10,2) doesn't work. Pritha
-
Hello, Yes I have tried it and it gives me field definition error. I think the problem lies in declaring right kind of data type . decimal(10,2) or numeric(10,2) doesn't work. Pritha
When posting a question like this, you may want to include information such as the database you are using. It could be that you we try something on SQL Server that works, and you think we're looking at Access.
Deja View - the feeling that you've seen this post before.
-
Have you tried it?
Paul Marfleet "No, his mind is not for rent To any God or government" Tom Sawyer - Rush
try this
create table( , , , .................., .................., .................., )
-
try this
create table( , , , .................., .................., .................., )