lidavidm commented on issue #1018:
URL: https://github.com/apache/arrow-adbc/issues/1018#issuecomment-1716104793

   I'm working on this now, sorry - but you generally don't need to 
differentiate:
   
   ```
   sqlite> CREATE TEMP TABLE foo (bar);
   sqlite> INSERT INTO foo VALUES (1);
   sqlite> SELECT * FROM main.foo;
   Error: no such table: main.foo
   sqlite> SELECT * FROM temp.foo;
   1
   sqlite> SELECT * FROM foo;
   1
   ```
   
   [MSSQL does require you to refer to the table 
specially](https://learn.microsoft.com/en-us/sql/t-sql/statements/create-table-transact-sql?view=sql-server-ver16#temporary-tables),
 though.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to