比如做一个学生选课系统 数据库有3张表 students(ID,Name,Age) ,courses(ID,Name),selectedcourses(studentID,courseID)括号里是字段. 下面是存储过程 根据传来的学生姓名以及选课构成的字符串,保存数据 @name nvarchar(), @age int, @text nvarchar(),-- 比如@text='1|4|15|' AS begin declare @tmp nvarchar() declare @stuid…
MySQL将一张表的某些列数据,复制到另外一张表 INSERT INTO t_topic_content(content,topicId) SELECT content,id FROM t_topic; 注意:给某一列数据赋值,自增长,那么就不应该插入数据了 MySQL将一张表的某些列数据,复制到另外一张表,并且修改某些内容.方法同上, 只是查询的时候使用REPLACE(str,from_str,to_str) 函数 INSERT INTO t_topic_content(content,t…
  1. 新增一个表,通过另一个表的结构和数据 create table XTHAME.tab1 as select * from DSKNOW.COMBDVERSION 2. 如果表存在: insert into tab1 select * from tab2; 3.同一个表中,将A字段的指赋给B字段: update table_name set B =  A; 4. 将一个表的字段数据插入到另一个表的字段数据中 insert into XTHAME.tab1(pk_bdversion,vbd…
二张表的代码(我用的插件,大家可以去网上直接下载http://issues.wenzhixin.net.cn/bootstrap-table/): <div class="container" style="float: left;width:500px;height: 341px"> <div id="toolbar"> <button id="remove" class="btn b…
1. 多个实体映射到一张表 Code First允许将多个实体映射到同一张表上,实体必须遵循如下规则: 实体必须是一对一关系 实体必须共享一个公共键 我们通常有这样的需求,如:同一基类派生出的不同数据模型,想方便管理便放到一张表中. 如下: AssayAction为基类 AddSampleAction 为派生类 DilutionAction 为派生类 最张生成到一张表中.   系统在默认情况下生成同一张表. 代码示例如下: //==================================…
添加字段:alter table matInformation add facid varchar(99)  default ''; 导入数据:update matInformation m set facid=(select facid from material_register v where m.partNumber=v.partNumber);(参考:https://blog.csdn.net/mar_fuck/article/details/79460571) 遇到问题:ERROR…
先开启 exec sp_configure 'show advanced options',1 reconfigure exec sp_configure 'Ad Hoc Distributed Queries',1 reconfigure 然后调用 INSERT INTO SoyErpBasicData.dbo.Base_Datadictionary ( Type , Code , Name , SeqNO , State , Notes , ParentID , IsLeaf_YN , Co…
两张表的字段一样 create table 目标表 as  select * from 原表;…
利用Excel以及word文档进行操作 将表的字段以及数据全部放入Excel表中并保存. 在word表中将写好的sql语句放入文档,利用邮件--选择收件人--使用现有列表--(选择之前做好的Excel表)--插入合并域(添加在sql语句中的条件中)---完成并合并(编辑单个文档选择全部)--完成(不过为了在使用中更加方便,在保存时应当保存为文本文档模式,既是纯文本模式)…
create table sto (id int not null, -- 主键字段 de datetime -- 被跟踪的字段 constraint pk_sto primary key(id)) select * from sto -- 建日志表create table log_sto(logid int not null identity(1,1), -- 日志序号(日志主键) operate varchar(10), -- 操作类型 如Insert,Update,Delete. id i…