Search Results

0
votes
2answers
1k views

Getting only one row in outer join using oracle

I've got a table and want to outer-join another table, getting only the first row (the one with lowest nr) of the second table using Oracle 10g. Edit: nr is unique within a …
1
vote

How can I confirm a database is Oracle & what version it is using SQL?

You can either use SELECT * FROM v$version; or SET SERVEROUTPUT ON EXEC dbms_output.put_line( dbms_db_version.version ); if you d …
3
votes

SQL query filtering

I guess that there is a better and more performant way, but this one seems to work: SELECT * FROM log WHERE log_id IN ( SELECT MIN(log_id) FROM log WHERE …
0
votes

How to select values from two tables that are not contained in the map table?

If you update only one customer at once, you might need to remember which products have been assigned automatically (in CustomerProducts) or have a counter how often a product has been assigned aut …
0
votes

How to select values from two tables that are not contained in the map table?

I tried this in oracle (hope it works for you too) UPDATE customers c SET unownedProduct = ( SELECT MIN( productid ) FROM products WHERE productid NOT …
0
votes

Transpose select results with Oracle

If you want to generate the query for each call or use a hardcoded max-column-count, then you can do something like that: WITH tab AS ( SELECT table_name, column_name FROM user_ta …