Ask Your Question
1

Can you create an SQL/SQLlite query to SEARCH for a range and TRANSFER data from one table to another?

asked 2022-08-21 11:00:00 +0000

qstack gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-01-13 15:00:00 +0000

lakamha gravatar image

Yes, here is an example query:

INSERT INTO target_table (column1, column2, column3)
SELECT source_table.column1, source_table.column2, source_table.column3
FROM source_table
WHERE source_table.column3 BETWEEN 100 AND 200; 

This query transfers data from "sourcetable" to "targettable" only where the value in "column3" falls within the range of 100 to 200. Change the column names and table names as per your requirements.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2022-08-21 11:00:00 +0000

Seen: 8 times

Last updated: Jan 13 '23