Just curious if you can create temp tables in sqlce. I tried but no luck. Some posts I have read elsewhere made me think it was possible - but I am wondering if those were true.
Just trying to do something like this:
CREATE TABLE #t1 (c1 int, c2 int, c3 char(5000));
Basically I want to get around nested select statements by using temp tables - maybe neither exist...