Insert Data Into Temp Table with Query

后端 未结 8 1967
春和景丽
春和景丽 2020-12-12 12:43

I have an existing query that outputs current data, and I would like to insert it into a Temp table, but am having some issues doing so. Would anybody have some insight on h

8条回答
  •  青春惊慌失措
    2020-12-12 13:24

    This is possible. Try this way:

    Create Global Temporary Table 
    BossaDoSamba 
    On Commit Preserve Rows 
    As 
    select ArtistName, sum(Songs) As NumberOfSongs 
     from Spotfy 
        where ArtistName = 'BossaDoSamba'
     group by ArtistName;
    

提交回复
热议问题