17.Oracle数据库SQL开发之 使用SELECT查询两个表
欢迎转载,转载请标明出处:http://blog.csdn.net/notbaron/article/details/49107193
数据库模式有多个表,经常需要多从个表中检索信息。
例如
SQL>select products.name,product_types.name from products,product_types whereproducts.product_type_id=product_types.product_type_id andproducts.product_id=3;
NAME NAME
------------------------------ ----------
Supernova Video
从两个表中获取product_id=3的产品名字和产品类型。