Previous Topic Next topic Print topic


X007: Incomplete string. Check for missing quotes.

select * from employee where lname = 'O'Brien' and st = ''VA''

should be changed to:

select * from employee where lname = ''O'Brien'' and st = ''VA''
Previous Topic Next topic Print topic