mysql如何把select以后的结果表与基本表连接查询_百度知道
最佳答案: MYSQL 数据库 ------------------------- select A.* from db A inner join (select B.Db as Db from db B) C on(A.Db=C.Db)...更多关于想请问下MySQL能不能把select关联表的结果存储到主表中?的问题>>
mysql在select中加入一个查询其他表后的结果_百度知道
最佳答案: select w.id,w.time,w.gender,(select case when w.id=wl.id and wl.account=@account then 1 else 0 end from wish_like wl) like from ...更多关于想请问下MySQL能不能把select关联表的结果存储到主表中?的问题>>
mysql将一张表的查询结果存到另一张表中_百度知道
最佳答案: 网上说mysql不支持select into 找了两个方法 answer 01: create table dust select * from student;//用于复制前未创建新表dust的情况下 answer 02: ...更多关于想请问下MySQL能不能把select关联表的结果存储到主表中?的问题>>