Search
 
SCRIPT & CODE EXAMPLE
 

SQL

ORACLE multiset union distinct

DECLARE
   TYPE limbs_t IS TABLE OF limbs%ROWTYPE;

   l_limbs   limbs_t;
BEGIN
     SELECT l.nm, l.avg_len
       BULK COLLECT INTO l_limbs
       FROM limbs l
   ORDER BY l.nm;

   l_limbs := l_limbs MULTISET UNION l_limbs;
   DBMS_OUTPUT.put_line ('Lots of limbs! ' || l_limbs.COUNT);
END;
Comment

PREVIOUS NEXT
Code Example
Sql :: t-sql cheat sheet 
Sql :: postgres type equivalent to timespan c# 
Sql :: changer un mot de passe mysql 
Sql :: sqlalchemy how to use sequence 
Sql :: mysql group by derived column 
Sql :: mysql command line top 10 
Sql :: db connection using sql client in dot net 
Sql :: contraint default SQL 
Sql :: sort by 
Sql :: how to update date in oracle 
Sql :: oracle single row functions 
Sql :: get the previous column of a table in mysql 
Sql :: mysql add 24 hours to datetime 
Sql :: Template MySQL Zabbix agent 
Sql :: code to move ietms from one table to another myswl 
Sql :: how to create a new shema using query languaage 
Sql :: plsql check how much space all databases are consuming 
Sql :: db: vertex.nedb() 
Sql :: sql xampp gabungan nama awal dan akhir 
Sql :: mariadb current date plus 1 day 
Sql :: mysql get last character of string 
Sql :: data table footer customize 
Sql :: mysql set user password for a range of ips 
Sql :: expose db in virtualbox 
Sql :: create-table-with-index-organization 
Sql :: MySQL Min And As 
Sql :: see here: https://mode.com/sql-tutorial/sql-window-functions/ 
Sql :: sql file md5 
Sql :: get rows from 1 table with other table empty mysql 
Sql :: sql out file formate 
ADD CONTENT
Topic
Content
Source link
Name
2+2 =