My PSQL table:
student(id, name, ic, iccolor)
ic_color(code,desc)
|desc | code |
|blue | B |
|red | R |
Example: current value for iccolor field for user x in student table is R that represents red.
What i want: when other user need to modify x iccolor record, the drop down menu
should display RED, but still have BLUE for others to choose.
how to do it? please help.