sweet
2012-09-08 20:09:50 UTC
what I wanted to do is to code all the record in a single sql view what I did was this one and unfortunately It says "characters found after end of SQL statement" or "syntax error on INSERT INTO statement"
now I want this two statements to be coded in a single form I use UNION but doesn't work either ..
INSERT INTO SERVICE (PropertyID,Initials,Date,HoursWorked)
VALUES (1,'LA1','8/28/2012','89');
INSERT INTO SERVICE
VALUES (2,'LA1','8/28/2012','98');
what is the exact or best way to resolve this problem...