Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Update PD Proposal Status

Code Block
languagesql
titleView proposal status values

...

select * from proposal_state;
Code Block
languagesql
titleView status of selected proposal status values
select *proposal_number, status_code from eps_proposal where proposal_statenumber='1234';

...

Code Block
languagesql
titleUpdate status of selected proposal

...

update eps_proposal set status_code='6' where proposal_number='1234';