-5

The table Book_Details is described here :-

This is the Category_Details Table :-

This is the Binding_Details Table :-

i dont understand what the syntax error is ?

Salman A
  • 262,204
  • 82
  • 430
  • 521
Manasa
  • 11
  • 7

2 Answers2

1

Please refer to the Mysql documentation: https://dev.mysql.com/doc/refman/8.0/en/insert.html

The syntax of your insert query is incorrect. You have insert into table SOMETABLE(column1, column2,...

This must be like insert into SOMETABLE (column1, column2...) VALUES (...

vrijdenker
  • 1,371
  • 1
  • 12
  • 25
0

Please remove the keyword TABLE in your insert query. Then it will work fine

Seena V P
  • 934
  • 3
  • 9
  • 26