小编use*_*296的帖子

这两个查询之间是否会有任何性能差异?

1)

select * from student_tbl A ,result_tbl B where
A.student_name = B.student_name and
A.student_name = "xyz" ;
Run Code Online (Sandbox Code Playgroud)

2)

select * from student_tbl A ,result_tbl B where
A.student_name = "xyz" and
A.student_name = B.student_name ;
Run Code Online (Sandbox Code Playgroud)

我知道这些查询的结果是一样的.有任何性能差异吗?如果是这样,请解释原因.

sql database-performance

2
推荐指数
1
解决办法
101
查看次数

通过JCL将SYSUID和JOB ID作为参数传递给COBOL程序

我需要将SYSUID和JOBID传递给cobol程序以进行日志记录,这怎么可能?

可以将相同的内容作为JCL中查询的输入传递.

提前致谢.

cobol jcl

2
推荐指数
1
解决办法
2562
查看次数

标签 统计

cobol ×1

database-performance ×1

jcl ×1

sql ×1