• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Which type of query should be use??

 
Ranch Hand
Posts: 47
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
Is it posible to insert single colume value from one DSN table to
another DSN table.
table: DSN1
Name Adrress City
aaa bbbb xxx
ccc sss yyy
table: DSN2
Phone Job City
eee ttt
qqq kkk
Finally the DSN2 table look like
table: DSN2
Phone Job City
eee ttt xxx
qqq kkk yyy
Any sql quely like inserting DSN1table City values into DSN2table
City.
I used this query but giving some problem
"insert into UserInfo (CITY) in 'C:\\User.mdb' select CITY from RateInfo";
its inserting the city value but remailning null, I mean not in a perticular row.
Help would be appriciated.
Thanks,
Ahamed.
 
With a little knowledge, a cast iron skillet is non-stick and lasts a lifetime.
reply
    Bookmark Topic Watch Topic
  • New Topic