gpt4 book ai didi

SQL Server 找不到存储过程 'show'

转载 作者:行者123 更新时间:2023-12-05 00:18:19 30 4
gpt4 key购买 nike

我不能使用最基本的程序,show ,因为它会引发错误:

Msg 2812, Level 16, State 62, Line 1
Could not find stored procedure 'show'.



我用了:
SHOW DATABASES

请帮我找到这个问题的答案。

最佳答案

要列出 SQL Server 中的所有数据库,

Select * from sys.databases 

要排除内置数据库,
Select * from sys.databases WHERE name NOT IN ('master', 'tempdb', 'model', 'msdb'); 

关于SQL Server 找不到存储过程 'show',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38133960/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com