Pages
(Move to ...)
Home
Purchasing (PO)
▼
Showing posts with label
SQL
.
Show all posts
Showing posts with label
SQL
.
Show all posts
How to design a SQL project about tender management system?
›
Step 1: Tender Architecture Design Step 2: Create Table Script
Oracle default Aggregate Function Script
›
Concatenate string : LISTAGG Analytic Function in 11g Release 2 The LISTAGG analytic function was introduced in Oracle 11g Release 2, def...
Oracle User Defined Aggregate Function Script
›
The WM_CONCAT function and LISTAGG function if not supported then you can create your own user defined aggregate function as below: ...
Materialized views Example
›
SET DEFINE OFF; DROP SYNONYM APPSRO.EMP_SNAPSHOT; DROP MATERIALIZED VIEW SCOTT.EMP_SNAPSHOT; CREATE MATERIALIZED VIEW SCOTT.EMP_SNAPS...
How many Colummn in a table?
›
SELECT column_name, data_type, data_length, data_precision, nullable FROM all_tab_cols WHERE table_name ='RA_CUSTOMER_TRX_ALL';
YTD Opening Date Wise
›
SELECT CASE WHEN TO_DATE (:psdate) < TO_DATE ('01-APR-' || SUBSTR (:psdate, 8, 4)) ...
SQL statement of syntax or Basic SQL
›
What is a primary key? A primary key is a single field or combination of fields that uniquely defines a record. None of the fields that...
Fibbonacci Series
›
Declare x number; y number; z number; ctr number; q number; begin q:=&q; x:=0; y:=1; ctr :=2; dbms_output.put_line('........FIBBONAC...
›
Home
View web version