Good Day,
I have a table that is labeled temp order_tbl.
I understand that sql reads the space so the correct way to get around the space is to use brackets: SELECT [temp order_tbl] which seems to work fine until I try the INSERT INTO function:
INSERT INTO temp order_tbl this gives me a syntax error
INSERT INTO [temp order_tbl] this gives me invalid use of brackets
any ideas?
Thanx
Farris
I have a table that is labeled temp order_tbl.
I understand that sql reads the space so the correct way to get around the space is to use brackets: SELECT [temp order_tbl] which seems to work fine until I try the INSERT INTO function:
INSERT INTO temp order_tbl this gives me a syntax error
INSERT INTO [temp order_tbl] this gives me invalid use of brackets
any ideas?
Thanx
Farris
Comment