1

I would like to create the equivalent of this query (Oracle) in MySQL Can anyone help?

CREATE GLOBAL TEMPORARY TABLE TEMP_TEST
(
  id   VARCHAR2(50),
  id_age  NUMBER(38)
) ON COMMIT DELETE ROWS;
Brian Tompsett - 汤莱恩
  • 5,753
  • 72
  • 57
  • 129
akaliza
  • 3,641
  • 6
  • 24
  • 31
  • 3
    Is this any help? http://dba.stackexchange.com/questions/42766/creating-a-global-temp-table-in-mysql – Alex Szabo Dec 02 '14 at 12:44
  • Perhaps this is helpful, you can mention the TEMPORARY keyword in your create statement? http://stackoverflow.com/questions/5859391/create-a-temporary-table-in-a-select-statement-without-a-separate-create-table – Sirius Oct 31 '16 at 10:25

0 Answers0