代码搜索结果
找到约 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
*=============================================
t_course.sql
if exists (select 1
from sysobjects
where id = object_id('course')
and type = 'U')
drop table course
go
/*============================================
t_class.sql
if exists (select 1
from sysobjects
where id = object_id('class')
and type = 'U')
drop table class
go
/*================================================
t_student.sql
if exis<mark>t</mark>s (selec<mark>t</mark> 1
from sysobjec<mark>t</mark>s
where id = objec<mark>t</mark>_id('s<mark>t</mark>uden<mark>t</mark>')
and <mark>t</mark>ype = 'U')
drop <mark>t</mark>able s<mark>t</mark>uden<mark>t</mark>
go
crea<mark>t</mark>e <mark>t</mark>able s<mark>t</mark>uden<mark>t</mark> (
S<mark>t</mark>uden<mark>t</mark>_id ...