feat: 创建虚拟dual表,达梦脚本优化

This commit is contained in:
dhb52
2024-05-04 00:05:42 +08:00
parent 774082509b
commit 65651fb1ed
5 changed files with 75 additions and 5 deletions

View File

@ -5,10 +5,29 @@
Target Server Type : Microsoft SQL Server
Date: 2024-05-02 15:29:31
Date: 2024-05-03 23:36:38
*/
-- ----------------------------
-- Table structure for dual
-- ----------------------------
DROP TABLE IF EXISTS dual
GO
CREATE TABLE dual
(
id int NULL
)
GO
EXEC sp_addextendedproperty
'MS_Description', N'数据库连接的表',
'SCHEMA', N'dbo',
'TABLE', N'dual'
GO
-- ----------------------------
-- Table structure for infra_api_access_log
-- ----------------------------