You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I had similar error as @majiang213 but, what I observed, if you write sql file in following format we can see table created in UI but only the first table created from script. I am expecting to create two tables even though tables doesn't have relationship. correct me if I am wrong.
createtablestudent(
id intnot null,
name nvarchar(50)
)
go
createtablecollege(
id intnot null,
name nvarchar(50)
)
go
Describe the bug
As the title
To Reproduce
Steps to reproduce the behavior:
1.文件 -> 导入 SQL 源代码
2.Get an error
SyntaxError [Ln 4, Col 1]: Expected "#", "(", "--", "/*", or [ \t\n\r] but ")" found.
Expected behavior
import success
Desktop (please complete the following information):
Additional context
Because it does not support sql type files, I changed the suffix to txt bit_test.txt
The text was updated successfully, but these errors were encountered: