Forum Replies Created

Viewing 3 posts - 1 through 3 (of 3 total)

  • RE: I need help with updating multiple columns in a table

    Hi,

    You can update you query in best way like below

    Update TableA set a.col3=b.colc,a.col4=ColD,a.col5=ColE from TableA a, TableB b

    Where b.ColA = a.Col1

    Its similar like the join Query. Try This and...

  • RE: Add space in data

    Yes.

    I did it for the Float Field.

    Thank you for your suggestion.

     

  • RE: How to Write Trigger in Sql Server 2005

    Hi,

    Trigger is mainly used for the situation when the db automeically trigger some events.

    DML Triggers are,

    Insert trigger,update trigger,delete trigger

    Assume u write the delete trigger for your table.

    whenever a row is...

Viewing 3 posts - 1 through 3 (of 3 total)