We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When the sql is as follows:
begin drop table if exists temp_goods; create temp table temp_goods as select substring(md5(g.gid::varchar),9,16) id, g.gid,g.code,g.code2,g."name",g.shortname,g.ename eng_name, g.eshortname eng_shortname,g.spec,g.munit qpc_unit, g.qpc,g.qpcstr qpc_desc,g.vol,g.tm trademark,g.brand from goods g; end;
the response is:
data.sqlflow.dbobjs.servers[0].databases[0].schemas[0].tables[1]={ displayName: "temp_goods", id: "4", name: "temp_goods", subType: "temp_table", type: "table" }
declare v_time date := current_date; begin drop table if exists temp_goods; create temp table temp_goods as select substring(md5(g.gid::varchar),9,16) id, g.gid,g.code,g.code2,g."name",g.shortname,g.ename eng_name, g.eshortname eng_shortname,g.spec,g.munit qpc_unit, g.qpc,g.qpcstr qpc_desc,g.vol,g.tm trademark,g.brand from goods g; end;
data.sqlflow.dbobjs.servers[0].databases[0].schemas[0].tables[1]={ displayName: "temp_goods", id: "4", name: "temp_goods", type: "table", }
I need the subType attribute to determine whether the table is temporary
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
https://e.gitee.com/gudusoft/projects/151613/tasks/list?issue_type_category=task&issue=IB9TEC
cnfree
No branches or pull requests
When the sql is as follows:
the response is:
When the sql is as follows:
the response is:
I need the subType attribute to determine whether the table is temporary
The text was updated successfully, but these errors were encountered: