Jump to content

Updating data using sql plus

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
2 replies to this topic

#1
mmhairulnizam

mmhairulnizam

    Newbie

  • Members
  • Pip
  • 1 posts
I got problem here ...i want to update data from two table which the field type is difference..anyone plz help me.....

example:

update data birthdate from

table a
-------
birthdate varchar2(8)

to

table b
-------
birthdate date

#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
You'll probably want to use CAST(a.birthdate as date)
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#3
relapse

relapse

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 476 posts
What exactly is your problem?