热门标签
更多>
搜索结果
查询Tags标签: sysobjectsWHERE,共有 2条记录-
SQL server 清空数据库所有表
use [数据库名]GOdeclare @sql varchar(8000)while (select count(*) from sysobjects where type=U)>0beginSELECT @sql=drop table + nameFROM sysobjectsWHERE (type = U)ORDER BY drop table + nameexec(@sql) enduse [stk_min]GOdeclare @sql varchar(8000)whil…
2021/8/26 19:06:16 人评论 次浏览 -
SQL server 清空数据库所有表
use [数据库名]GOdeclare @sql varchar(8000)while (select count(*) from sysobjects where type=U)>0beginSELECT @sql=drop table + nameFROM sysobjectsWHERE (type = U)ORDER BY drop table + nameexec(@sql) enduse [stk_min]GOdeclare @sql varchar(8000)whil…
2021/8/26 19:06:16 人评论 次浏览