摘要:
想入门学习创建存储过程,先看 https://www.cnblogs.com/tlfe/p/18853918use EFDB go --添加学生存储过程--usp_AddStudents 自定义的存储过程name if exists(select * from sysobjects where na 阅读全文
摘要:
在这点我们需要使用到的sql语句 语法: update 表名 set 某个值=case when @你要修改的值 > 表中的某一个值 then 成立之后要设置的值 else 前面没有成立设置的值 end 举例: 我根据传入的年龄age来设置type为1还是0,1表示成年,0表示未成年 update 阅读全文
摘要:
1, 在winform项目中 Program.cs 文件里添加 using System; using System.Collections.Generic; using System.Diagnostics; using System.Linq; using System.Threading.Ta 阅读全文