Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Where is the problem in this INSERT statement?
Hello Lists,
Should there a difference between the following two
INSERT statements?
1)INSERT INTO <table1>
SELECT DISTINCT * FROM <table2>
2)INSERT INTO <table1>
SELECT DISTINCT * FROM
(SELECT DISTINCT * FROM <table2>)
The first one inserts more records than the second. The second one seems to be correct. To me both should return same number of records, am I wrong somewhere?
Any help would be highly appreciated.
Thanks in advance.
Muru
A realtime example is given below:
INSERT INTO resale_psrc
{In the second query add SELECT DISTINCT * FROM here)
SELECT DISTINCT
b.market_area_id market_area_id, b.package_id ci_code, b.package_type_code ci_type, c.charge_code rate_code,
'W' charge_unit_type,
'Resale Generic' ps_name,
'$' increment_type,
'Resale Generic' rate_name,
c.amount amount, TO_DATE('01/01/1996','MM/DD/YYYY') date1 TO_DATE('01/01/2099','MM/DD/YYYY') date2
'L' ps_local_non_local,
'$' ps_applicator_type,
d.charge_type_code
b.market_area_id=c.market_area_id AND b.package_id=c.package_id AND c.charge_code = d.charge_code
![]() |
![]() |