How can i solve this problem?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • parmiss
    New Member
    • Nov 2006
    • 1

    How can i solve this problem?

    Increment with 5% the salary of one of records
  • Anu139
    New Member
    • Nov 2006
    • 8

    #2
    Originally posted by parmiss
    Increment with 5% the salary of one of records
    Hi,
    your question is not very clear to me. i have assumed the problem in a following way, and i hope it is correct. If not please get back with a correct problem statement.
    if u have any other column in ur table like emp_ID, emp_name.. etc,,, with reference to tat column u can update the salary column of a particular record.

    for example:
    update tab_name set salary= salary+(0.05*sa lary) where emp_ID=123445

    then try to display the record by "select * from tab_name" statemt.

    Comment

    Working...