Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

trying to learn and need some syntax help

Status
Not open for further replies.

DougDown

IS-IT--Management
Sep 21, 2000
2
US
I am trying to learn and am having a syntax problem in the following statement:

INSERT INTO * "EMP EMP_No,Password,Email"
VALUES ('::EMP_No::', '::password::','::Email::')

The error is pointing to the ' after the ( in the VALUES line.

Can anyone help me out with the correct syntax and an explanation?

Thanks [sig][/sig]
 
I'm not sure what the colons are for, but try this:

[tt]INSERT EMP (EMP_No,Password,Email)
VALUES ('::EMP_No::', '::password::','::Email::')[/tt] [sig]<p>Robert Bradley<br><a href=mailto: > </a><br><a href= - Visual FoxPro Development</a><br> [/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top