我是DBEaver的新手,我正在尝试使用@include将一个.sql脚本包含在另一个脚本中。
我在以下相同的脚本文件夹中有两个.sql文件
script_header.sql
use my_database;
script_2.sql
@include script_header.sql;
select * from my_table
但是当我运行script_2.sql时,我收到消息:
SQL Error [137] [S0002]: Must declare the scalar variable "@include".
如果我删除@include语句并将其内容粘贴到文件中,则它可以正常工作。
基础数据库是SQL Server
我在做什么错了?
文档 https://github.com/dbeaver/dbeaver/wiki/Client-Side-Scripting