I created a SQL script to create a table. Can you please go through it and see if there are any error, or if there is missing something in that script? Or you can tell me any better idea to create table?
use nors
go
CREATE TABLE t_data_dnefrc
(
"RTN", adVarChar, 9
AccountNbr adVarChar(17) PRIMARY KEY,
FirstName adVarChar(50),
MiddleName adVarChar(1),
LastName adVarChar(50),
Amount dECIMAL(18,2)
)
go