The sysdate tag has no wiki summary.
2
votes
2answers
68 views
Oracle UNPIVOT and SYSDATE giving weird results
I am trying to transpose columns to rows using query similar to the following...
WITH
query AS
(
SELECT SYSDATE AS SomeDate,
'One' AS One,
'Two' AS Two,
...
1
vote
3answers
50 views
Comaparing date with sysdate in oracle
I have a column which is of "DATE" type and I want to run a query on it comparing it with sysdate.
But I am getting following error, Can someone please let me know what I am missing here?
SQL> ...
0
votes
0answers
52 views
How to insert `sysdate` with Entity Framework?
Using Entity Framework and Oracle DB, I would like to
insert into tablename (datetimefield, numericfield) VALUES (sysdate, 545)
How to do that without using SQL code directly?