Ask a Question related to ASP Database, Design and Development.
-
Jacob #1
Reading from one table directly into another
Is there a way to get a row from one table and write it directly into
another table? Most of the columns are named the same, but their are a few
that need to be ignored in the source table and a few which must be filled
in through user-entered values in the second table. Any links or code
examples would be great.
Thanks in advance,
Jacob
Jacob Guest
-
PDF directly to the printer
Hi guys. How can I send a PDF document directly to the printer without displaying the Print dialog window? It's a Xerox 8500 printer with... -
phpMyAdmin not reading table contents
I'm running phpMyAdmin 2.5.3 / MySQL 4.0.14 / PHP 4.3.3 / Apache 1.3.20 phpMyAdmin is installed and appears ok at first, I can login, select... -
Reading Foreign Keys From an Access Table with ADO
I try to analyse and synchronize two databases with an asp script. my problem is: i have to get all columns from a table, which are foreign keys... -
Could not load type VTFixup Table from assembly Invalid token in v-table fix-up table.
We are getting this error after clearing the web.config of database infomation - even after using the wizard to re-enter the information. I could... -
Reading Textbox values from table and validating entry
I have 2 things that I'm stuck on and would appreciate some assistance. 1. How can I read a value from a table and use it to populate a textbox... -
Ray at #2
Re: Reading from one table directly into another
select into
Here's the first link that comes up in Google.
[url]http://www.devguru.com/Technologies/jetsql/quickref/select_into.html[/url]
Ray at work
"Jacob" <yak2016@comcast.net> wrote in message
news:u3LKqE$PDHA.4024@tk2msftngp13.phx.gbl...few> Is there a way to get a row from one table and write it directly into
> another table? Most of the columns are named the same, but their are a> that need to be ignored in the source table and a few which must be filled
> in through user-entered values in the second table. Any links or code
> examples would be great.
>
> Thanks in advance,
> Jacob
>
>
Ray at Guest
-
Bob Barrows #3
Re: Reading from one table directly into another
Jacob wrote:
Well, this will vary from database to database in minor ways, but basically:> Is there a way to get a row from one table and write it directly into
> another table? Most of the columns are named the same, but their are
> a few that need to be ignored in the source table and a few which
> must be filled in through user-entered values in the second table.
> Any links or code examples would be great.
>
> Thanks in advance,
> Jacob
insert into table1(col1,col2, ... colN)
select col1,col2, ... colN FROM table2
WHERE <filter criteria>
Bob Barrows
Bob Barrows Guest



Reply With Quote

