0
SQL syntax
mysql> INSERT INTO Persons VALUES ( -> 1, -> 'Ma...', -> 'De..., '> 'Zi...', '> 'V...' '> ); '> ); '> , '> ); '> \c '> DESC Persons '> '> '> '> What's wrong? How to get out from this "loop"?
2 Respuestas
+ 1
> 'De..., Here you forgot to close the '. Therefore, the script will consider everything you type after still part of the input.
0
Thanks