Skip to content
Advertisement

mysql update sequence into one table depending on another table

Below are the 2 tables:

classes

JavaScript

Here standard is not INT

student

JavaScript

What i want to do:

when teacher selects standard -> 10 and press a button “Assign Roll No”

i want all student of 10th standard to be given roll no sequentially order by name and which are approved by teacher that is teacher_approval = ‘1’

So my student table becomes as below:

student

JavaScript

I have so far tried below code:

JavaScript

But it gives me an error: incorrect usage of update and order by

Anyone with a similar experience? Any help would be appreciated. Thanks.

Advertisement

Answer

In MySql, you can’t have an ORDER BY as part of the UPDATE directly when using multiple tables (see this link). Try this instead :

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement