Apr 12, 2002 #1 Silvano Programmer Jul 16, 2001 386 US does someone knows what whould be the SQL if the table field have a blank space in it's name? e.g.: INSERT INTO TableName (First Name)... can I insert data without renaming the table field into First_Name? Sylvano dsylvano@hotmail.com
does someone knows what whould be the SQL if the table field have a blank space in it's name? e.g.: INSERT INTO TableName (First Name)... can I insert data without renaming the table field into First_Name? Sylvano dsylvano@hotmail.com
Apr 12, 2002 1 #2 Romanichine Programmer Apr 9, 2002 30 CA Put it into brackets: INSERT INTO TableName ([First Name])... -- Roman. Upvote 0 Downvote
Apr 12, 2002 Thread starter #3 Silvano Programmer Jul 16, 2001 386 US thx Sylvano dsylvano@hotmail.com Upvote 0 Downvote