hellow Experts,
I have created a table:Temptbl
with this code,
Now,the first 5 fields are same(by name,value) as my existing table"All_Table ".
6th field"Net_Login " is in string:"strvalu e".
I need to insert all records from my existing table"all_Table " and also from "strvalue" to the field"Net_Login ".
Please suggest me with some sample code.
Thank you
I have created a table:Temptbl
with this code,
Code:
strCreatetbl = "CREATE TABLE TempTbl " & _ "(Login TEXT(64), " & _ "Email TEXT(64), " & _ "Department TEXT(64), " & _ "[First name] TEXT(64), " & _ "[Last name] TEXT(64), " & _ "Net_Login Text(64) ) "
6th field"Net_Login " is in string:"strvalu e".
I need to insert all records from my existing table"all_Table " and also from "strvalue" to the field"Net_Login ".
Please suggest me with some sample code.
Thank you
Comment