Dec 8, 2010

Update Statement

Update your records using that commands:

SYNTAX:

Update <Table_name>
set <column_name>=<value>
where <column_name>=<value>


Example:


Update Flight_Master
set Airlines_name='Air India'
where Airlines_code='AI'

Execute that command

Result:

Command(s) completed successfully.

No comments:

Post a Comment