I have a simple SQL query that look like this
select distinct v.col1, v.col2, v.col3
from table v
where v.col1 is not null
I would like to save the result set returned from this query into a completely new table called test.
How can I do that?
Thank you
SELECT .... INTO .... FROM.... But if you want up to date values try with views