惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

量子位
Vercel News
Vercel News
Microsoft Azure Blog
Microsoft Azure Blog
爱范儿
爱范儿
N
Netflix TechBlog - Medium
Google DeepMind News
Google DeepMind News
H
Help Net Security
罗磊的独立博客
The Cloudflare Blog
J
Java Code Geeks
博客园 - 叶小钗
I
InfoQ
B
Blog
Blog — PlanetScale
Blog — PlanetScale
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
腾讯CDC
月光博客
月光博客
博客园_首页
雷峰网
雷峰网
M
MIT News - Artificial intelligence
博客园 - 【当耐特】
美团技术团队
T
The Blog of Author Tim Ferriss
博客园 - 司徒正美

博客园 - 生活无限

倪昇阳,软考中高项讲师 视频网站 阻止迅雷劫持下载 WebBrowser控件默认使用IE9,IE10的方法 Windows Server 2008 R2 WEB 服务器安全设置指南 VS2008注册码 电源 找不到类型或命名空间 datarowview 123 专门查看阻塞和死锁情况以及引起的SQL语句,你可以创建后,直接运行之。 监控SQL 图片防盗链 123123 计算数据库中各个表的数据量和每行记录所占用空间 IIS6.0禁止用户下载txt文件 <a href="javascript:void(0);" id='test' onclick="javascript:alert('即将上线,敬请期待!');"><em class="rmwd"></em>征稿平台</a> IP访问SQL数据库设置 SQL大数据查询分页存储过程 access 还原数据库方法
根据另外一个表来更新,增加字段
生活无限 · 2016-01-21 · via 博客园 - 生活无限
update table1 
set field1=table2.field1,
field2=table2.field2
from table2
where table1.id=table2.id

添加字段:
alter table 表名 add 字段名 类型
删除字段:
alter table 表名 drop column 字段名