memsql 不支持临时 table 或 table 变量?
memsql does not support temporary table or table variable?
试图在 Memsql 中创建临时 table:
Create temporary table ppl_in_grp as
select pid from h_groupings where dt= '2014-10-05' and location = 'Seattle'
收到此错误:MemSQL 不支持功能 'TEMPORARY tables'。
有没有我可以使用的等价物?谢谢!
temp tables 肯定在路线图上。现在,使用 MemSQL 4,您可以创建一个常规 table 并在会话结束时清理它,或者使用子查询。
试图在 Memsql 中创建临时 table:
Create temporary table ppl_in_grp as
select pid from h_groupings where dt= '2014-10-05' and location = 'Seattle'
收到此错误:MemSQL 不支持功能 'TEMPORARY tables'。
有没有我可以使用的等价物?谢谢!
temp tables 肯定在路线图上。现在,使用 MemSQL 4,您可以创建一个常规 table 并在会话结束时清理它,或者使用子查询。