Показать сообщение отдельно

  #3  
Старый 18.07.2022, 13:33
linmsqn
Постоянный
Регистрация: 29.05.2020
Сообщений: 331
С нами: 3136519

Репутация: 73
По умолчанию

Цитата:
Сообщение от McLore  

How to import data from one table to another table in sql

I have two database there is two table both databse how to import data from database table to another database table in sql2008 standard edition. I have tried to export/import function but no luck .

stackoverflow.com


Insert all values of a table into another table in SQL

I am trying to insert all values of one table into another. But the insert statement accepts values, but i would like it to accept a select * from the initial_Table. Is this possible?

stackoverflow.com

Не особо понял как пользоваться

SQL:





Код:
INSERT
INTO
new_table
(
Foo
,
Bar
,
Fizz
,
Buzz
)
SELECT
Foo
,
Bar
,
Fizz
,
Buzz
FROM
initial_table
-- optionally WHERE ...




все разобрался, спасибо!
 
Ответить с цитированием