VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > 数据库 > MySQL >
  • MySQL教程之管理mysql数据的两条sql tips

Posted on 2018-04-14 01:04 龙翔天下 阅读(59) 评论(0) 编辑 收藏

当从B表数据更新到A表时:

update A inner join B on A.aid=B.aid 
set A.user_name=B.username,A.phone=B.tel
where A.aid=A.aid

 

当从B表数据插入到A表时:

insert A(`aid`,`typeid`,`channel) select `aid`,`typeid`,`channel` from B where aid>5960



相关教程