代码搜索结果
找到约 10,000 项符合
T 的代码
t_users.sql
if exists (select 1
from sysobjects
where id = object_id('users')
and type = 'U')
drop table users
go
/*==============================================
t_teacher.sql
if exists (select 1
from sysobjects
where id = object_id('teacher')
and type = 'U')
drop table teacher
go
*=============================================