Open liyinxin opened 5 months ago
Does it support "SELECT * FROM 11111.table1" ?
I get this erorr: SQL parsing error:syntax error at position 21 near '11111.'
I don't think that's a valid database/table identifier. Try wrapping it in backticks.
SELECT * FROM `11111`.table1
OK, I will try it
SELECT * FROM11111.table1
SELECT * FROM
.table1
Thanks it works.
Does it support "SELECT * FROM 11111.table1" ?
I get this erorr: SQL parsing error:syntax error at position 21 near '11111.'