How to store MySQL query results in another Table?

前端 未结 4 1692
[愿得一人]
[愿得一人] 2020-12-23 02:45

How to store results from following query into another table. Considering there is an appropriate table already created.

SELECT labels.label,shortabstracts.         


        
4条回答
  •  甜味超标
    2020-12-23 03:18

    if your table dosen't exist then

    CREATE TABLE new_table SELECT //write your query here
    

    if your table exist then you can just insert query

    INSERT INTO new_table SELECT //write your query here
    

    For more check here and here

提交回复
热议问题