1. We have moved to a new forum! There may be a few things not working properly so please let us know if you find a bug. Remember to use the bbCode [ sql ] tag for SQL statements.

Write a SQL statement to change the name of a record?

Discussion in 'SQL - Questions and Answers' started by KMF, Sep 21, 2006.

  1. KMF Guest

    Dialect: SQL 92
  2. pcdinh Guest

    Dialect: OTHER
    I am a bit confused. What do you mean by "name of a record"? At my best understanding, you can give a database, a table space, a table, a column/field a name but it can not apply to a record which is as known as a row.
  3. Dialect: Oracle
    SQL:

    update employee set status='manager' where empsalary=10000;

Share This Page