SQL声明变量并赋值


1 declare @studentid  int  //声明一个int型变量
2 set @studentid=(select id from tclass where classid= 1);//设置变量值,tclass 为任意表,classid 为表中任一字段
3 if(@studentid is not null//如果值不为空,则执行插入语句,向表tstudent插入数据
4 INSERT INTO tstudent (studentid,phoneNo)VALUES (@studentid,@phoneNo);

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM