Sql常用语句
Posted zhyue93
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sql常用语句相关的知识,希望对你有一定的参考价值。
--显示sql server现有的所有数据库 exec sp_helpdb
--查看数据表设置的约束
exec sp_helpconstraint SubjectType
--update select出来的结果集的字段 update QuestionToAnswer set IsDel=1,Marker=15,MarkingTime=getdate() where ID in (select QTA.ID from QuestionToAnswer QTA --QTA.ID,QTA.StudentID,QTA.IsDel,QTA.Score inner join TClassStudent TCS on QTA.StudentID=TCS.StudentID and QTA.IsDel=0 and TCS.IsDel=0 where QTA.QuestionID=52 and TClassID=9)
以上是关于Sql常用语句的主要内容,如果未能解决你的问题,请参考以下文章