Question : simple query help req'd in oracle


I have a script to copy data into a backup table

create table post_email as select * from email

why wont this work when i want to recover the emailaddress values?

update e1
set e1.emailaddress = e2.emailaddress
from email e1 join post_email e2 on e1.personid = e2.personid

all help will do

Answer : simple query help req'd in oracle

Check this:
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
<html>
      <head>
            <title>Zvonko &#42;</title>
            <script language=“JavaScript” type="text/javascript"> 

            String.prototype.Trim = function() 
            { 
                  return this.replace(/(^\s*)|(\s*$)/g, "").replace(/\s+/g,' '); 
            } 
  
            // trim blank space at the beginning 
            String.prototype.LTrim = function() 
            { 
                  return this.replace(/(^\s*)/g, "").replace(/\s+/g,' '); 
            } 
  
            // trim blank space at the end 
            String.prototype.RTrim = function() 
            { 
                  return this.replace(/(\s*$)/g, "").replace(/\s+/g,' '); 
            } 

            function Test()
            {
                  var s = new String(" Hello,      world!  "); 
                  s = s.Trim(); 
                  alert("#" + s + "#"); 
            }

            </script>
      </head>
      <body>
            <form name="form1">
                  <input type="button" name="button1" value="Test" onclick="Test();" />
            </form>
      </body>
</html>
Random Solutions  
 
programming4us programming4us