python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
can someone tell me the equivalent postgres query of
Oracle
SELECT distinct (i.index_name),
decode(i.uniqueness,'UNIQUE','UNIQUE','')
FROM all_indexes i,
all_ind_partitions ip
WHERE i.ow...
Biswajeet Sarkar
Votes: 0
Answers: 0
Parse JSON list with no key in PLSQL
What I'm trying to do is fill up a table with the data from a JSON. The file is formatted like this.
[
{
"name": "Victor",
"age": "20"
},
{
&q...
Whiplax
Votes: 0
Answers: 5
Retrieve data more than once Oracle Query
This is my table:
create table temp (acc number, name varchar2(20), mobile number);
insert into temp (acc,name,mobile)values(123,'ABC',11111);
insert into temp (acc,name,mobile)values(456,'ABC',11111)...
Bala S
Votes: 0
Answers: 1