python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
update a record from a table with another table's data then return the result
As I said in the title, I need to "update a record from a table with another table's data then return the result". I want change multiple rows and I already accomplished that with this query...
murilo tegani
Votes: 0
Answers: 2
How to select the a field of an object being a field of a table?
to test the code: https://dbfiddle.uk/?rdbms=oracle_21&fiddle=8cf685ff21a69c5e83a9861a56a71cbb
I have a table. One of its fields is an object. I only want to select a field of this object.
create ...
Pierre-olivier Gendraud
Votes: 0
Answers: 1
Check oracle table for an expiry date and send mail
I have a table pro where I have following fields
id, product name, email and expiry
I am trying to send an email from oracle when expiry date match with system date.
Is it possible through oracle job...
Jeremy
Votes: 0
Answers: 1
Oracle PL/SQL. SELECT with AND condicionated
I want to do a Query like this:
v_name VARCHAR2(60); SELECT * FROM book WHERE name = v_name
But if "v_name" is NULL, the program must be:
SELECT * FROM book
I don't wan't to set the filter ...
Samuel
Votes: 0
Answers: 3