以下两段sql有性能区别吗?
时间:2011-12-12
来源:互联网
以下两段sql有性能区别吗?
1、嵌套子查询
select asn.bl_no,max(file.id) as bl_file_id
from (select asnpo.bl_no
from cp_order_asn_po asnpo
where asnpo.bl_file_id is null and asnpo.bl_no is not null and asnpo.bl_no <> '') as asn,
(select id,filename from cp_flow_fileupload
where cp_flow_fileupload.modeltype=8
and cp_flow_fileupload.pageflag=13
and cp_flow_fileupload.filetype=1 ) as file
where file.filename like '%'|| asn.bl_no ||'%'
group by asn.bl_no
2、全联结查询
select asnpo.bl_no,max(file.id) as bl_file_id
from cp_order_asn_po asnpo,cp_flow_fileupload file
where file.filename like '%'|| asnpo.bl_no ||'%'
and asnpo.bl_file_id is null and asnpo.bl_no is not null and asnpo.bl_no <> ''
and file.modeltype=8
and file.pageflag=13
and file.filetype=1
group by asnpo.bl_no
sql中cp_order_asn_po和cp_flow_fileupload都有几万条数据,以后还会更多,用哪个sql更好点?
1、嵌套子查询
select asn.bl_no,max(file.id) as bl_file_id
from (select asnpo.bl_no
from cp_order_asn_po asnpo
where asnpo.bl_file_id is null and asnpo.bl_no is not null and asnpo.bl_no <> '') as asn,
(select id,filename from cp_flow_fileupload
where cp_flow_fileupload.modeltype=8
and cp_flow_fileupload.pageflag=13
and cp_flow_fileupload.filetype=1 ) as file
where file.filename like '%'|| asn.bl_no ||'%'
group by asn.bl_no
2、全联结查询
select asnpo.bl_no,max(file.id) as bl_file_id
from cp_order_asn_po asnpo,cp_flow_fileupload file
where file.filename like '%'|| asnpo.bl_no ||'%'
and asnpo.bl_file_id is null and asnpo.bl_no is not null and asnpo.bl_no <> ''
and file.modeltype=8
and file.pageflag=13
and file.filetype=1
group by asnpo.bl_no
sql中cp_order_asn_po和cp_flow_fileupload都有几万条数据,以后还会更多,用哪个sql更好点?
作者: chishan911 发布时间: 2011-12-12
where file.filename like '%'|| asn.bl_no ||'%'这个是什么意思
两个表没有连接条件吗 自然连接 笛卡尔积?
两个表没有连接条件吗 自然连接 笛卡尔积?
作者: rucypli 发布时间: 2011-12-12
相关阅读 更多
热门阅读
-
office 2019专业增强版最新2021版激活秘钥/序列号/激活码推荐 附激活工具
阅读:74
-
如何安装mysql8.0
阅读:31
-
Word快速设置标题样式步骤详解
阅读:28
-
20+道必知必会的Vue面试题(附答案解析)
阅读:37
-
HTML如何制作表单
阅读:22
-
百词斩可以改天数吗?当然可以,4个步骤轻松修改天数!
阅读:31
-
ET文件格式和XLS格式文件之间如何转化?
阅读:24
-
react和vue的区别及优缺点是什么
阅读:121
-
支付宝人脸识别如何关闭?
阅读:21
-
腾讯微云怎么修改照片或视频备份路径?
阅读:28