Skip to content
Advertisement

Tag: sql-insert

SQL navigator – “insert into” statement not working on multiple rows

One row works fine: But adding one more row does not work: Error: SQL command not properly ended Answer Your error message looks like Oracle’s ORA-00933 (whose message is SQL command not properly ended). Indeed, this database (unlike many others) does not support the syntax you are using to insert multiple rows at once. If you want to do this

How can I make this code work on SQL Server

I was wondering why my SQL code isn’t working properly on SQL Server while when I upload it on phpmyadmin it works perfectly. Is it some difference between those SQL’s? Is someone able to make this code working well on SQL Server? I’ve posted only part of database but with your help I’ll get done the rest. Answer As a

Advertisement