MySQL Forums
Forum List  »  General

Re: mysql insert into syntax
Posted by: Sean
Date: February 22, 2005 03:11AM

>insert into familyContactInfo, (familyId) values ("F00105")

The problem with the query is you have a comma in there you shouldnt have;
should be;

insert into familyContactInfo
(
familyId
)
values
(
"F00105"
);

Hope that helps

Options: ReplyQuote


Subject
Written By
Posted
January 10, 2005 02:37PM
February 21, 2005 10:29AM
February 22, 2005 12:03AM
Re: mysql insert into syntax
February 22, 2005 03:11AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.