摘要:
-- 交叉关联查询条件是,两个表中,需要have must 相同的字段,然后进行查询 select * from [dbo].[classStu] a inner join [dbo].[Student] b on a.NJID = b.NJID --关联条件的写入。这里根据班级表和学生表里面共同有 阅读全文
摘要:
无参数的存储过程创建 USE [Learn] GO /****** Object: StoredProcedure [dbo].[SCO_bav] Script Date: 2021/12/24 星期五 11:53:49 ******/ SET ANSI_NULLS ON GO SET QUOTED 阅读全文
摘要:
select * from do_web_bxd; --修改报销单表中的创建人字段数据 update do_web_bxd set Creator='张三' where BXD_NM='ee8bd386-d80a-41b2-8020-410b8d1177e2'; --修改单据日期字段值内容 upda 阅读全文
摘要:
using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Web.Services; namespace MyWebService { /// <summary> 阅读全文