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);

 

相关文章:

  • 2021-12-05
  • 2021-09-24
  • 2022-12-23
  • 2021-12-05
  • 2021-12-24
  • 2021-10-12
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-01-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-11
  • 2021-09-28
  • 2021-05-19
相关资源
相似解决方案