各位大侠请问 如下sql语句(从三个表的连接中查询所有数据)
SELECT * FROM customer, address, country 
WHERE customer.c_addr_id = address.addr_id AND address.addr_co_id = country.co_id AND customer.c_uname = '1000' 
如果改写成如下sql
SELECT * FROM (customer  JOIN  address ON(customer.c_addr_id = address.addr_id))  JOIN country ON(address.addr_co_id = country.co_id)
 WHERE  customer.c_uname = '1000'
是否可以有效提高性能,如果将第二种写法大量应用于在ORACLE环境下执行的程序,是否可以大大提高程序性能?