I want to create a temp table in my trigger to store some of the data. I did some research online and most people suggest that I create it by using the following query:
create #tempTableName (x datatype, y datatype..);
or
select * into #tempTableName from ...;
However, when I did it myself in oracle, it does not work and it seems to suggest me that I can name a table start with "#". What should I do in such circumstance? Also, what is the difference between a PL/SQL table and a temp table? Thanks.