Simple select for data based on a date

Hi all

I wrote data to a table and having problems try doing a select and obtain these data based on the query.

I want to filter on a column called: TIMESTAMP based provided that the data has been written to the DB on the following date:

OCTOBER 1 09 10.47.35.597914000

I thought that would be enough:

Select * from tableX
where current_value = 999
and TIMESTAMP = 1 October 2009"

I know that the 999 exists because if I take the last line I get the data I want.

A basic question I know, but any help much appreciated.

Give the correct points then ;)

No, I don't know how dangerous it is. The format is specified, the output should be straight (?) and he does not have the building fire the many times I've used it so far.

Mike

Tags: Database

Similar Questions

  • I use Photos to make a schedule, and when I add national holidays and have a personal calendar already selected for the import, national holidays replace a personal date when the two entries in conflict.  Any suggestions?

    I use Photos to make a schedule, and when I import two calendars of Mac, I can't play well together.  By example, if I add the national holiday calendar to a personal calendar already selected for the import, national holidays replacement a date personal when the two entries in conflict.  Users are allowed to several elements to show on a given date (I can add an article manually; and if I have two elements in a personal calendar, they both matter very well).  Does not seem serious if I import successively or simultaneously, the holidays always seem to prevail on personal items.  I am proud of my country, but want to avoid adding those who back in manually (and avoid having to check everything so closely).

    Any suggestions?  Thank you

    John

    (running Yosemite on a mini 2015)

    There is no way to have both separate schedules added and share a date.  Tell Apple what missing features you want restored or new features added in Photos via https://www.apple.com/feedback/photos.html.

    You could create a new calendar with personal anniversaries and holidays.  I think that would be the case with the exception of those holidays that might change the date to when if fell, which is Memorial Day for one.

  • How to set up a timetable to VI for date selection?

    Hi all

    I need to implement a calendar in my VI for date selection to view historical data like we find on the Web sites of travel agencies?

    & also guide me how to get this kind of calendar...

    Please guide me...

    Thanking you,

    See the other thread I posted...

  • How to write a simple select query to get the data of the table as an XML.

    How to write a simple select query to get the data of the table as an XML. In the query, I'm just adding items below which i need be there in the XML document
    select '<test_tag>'||EMP_NAME||'</test_tag>','<date>'||sysdate||'</date>' 
    from temp_table where id_num BETWEEN 1 AND 10;
    I have need to add the root tag as well in the beginning and the end of < root > < / root > this xml file. Please advice if this is possible with the select query
    without using XMLGEN, XMLQUERY or any other packages built and function?

    I need to URL escapes with the UTF-8 code points that we have already achieved using the utl_http package. Please help how to do that without using the utl_http package.

    What is wrong with him?

    At present, the only way I can think of to avoid a call to UTL_HTTP. SET_BODY_CHARSET is to write your own little wrapper.
    In this way, you can specify the Boolean parameter or omit it if you choose to use named parameters:

    SQL> create or replace function my_url_escape (url in varchar2)
      2  return varchar2
      3  deterministic
      4  is
      5  begin
      6   return utl_url.escape(url, false, 'AL32UTF8');
      7  end;
      8  /
    
    Function created
    
    SQL> select my_url_escape('http://some.uri.com/param?lang=fr&text=contrôle') from dual;
    
    MY_URL_ESCAPE('HTTP://SOME.URI
    --------------------------------------------------------------------------------
    http://some.uri.com/param?lang=fr&text=contr%C3%B4le
     
    
  • -Pop-up calendar for Date selection

    Hello

    Someone at - it had advice on how to implement the pop-up calendar for date selection?

    This seems to be the most commonly asked-for customization of OPA on my current project.

    -Patrick

    Hello
    You can create a custom control and in the virtual machine of this custom control, you can use javascript code to display the calendar.

    Kind regards
    Fox

  • Select quarterly data using SQL

    All-

    The database version that I use is 10.2.0.4.0

    This is probably simple, but for the life of me, I can't understand it. I have a table of approximately 200 Codes and a table that contains millions of records that are obliterated (data are from 1995 to sysdate). I need a query for a view to be used in a report that will show you the different codes used by the employee for specific areas based on a date parameter. If they have no data for this quarter I want to still show the quarter show 0 for the number.

    I created this simple example. If I see someone how I can integrate this logic in what I do.

    SQL for the test data:
    create the table bunch_of_codes
    (id_code number (12) primary key,)
    Description varchar2 (10));

    insert into bunch_of_codes
    values (1, 'APPLE');

    insert into bunch_of_codes
    values (2, 'ORANGE');

    insert into bunch_of_codes
    values (3, 'GRAPE');

    create the table bunch_of_data
    (id_code, number (12),)
    date of activity_date,
    CONSTRAINT data_id_code
    FOREIGN KEY (id_code) REFERENCES bunch_of_codes (id_code));

    INSERT INTO bunch_of_data
    VALUES (1, to_date('4/12/2011','MM/DD/YYYY'));

    INSERT INTO bunch_of_data
    VALUES (1, to_date('6/1/2011','MM/DD/YYYY'));

    INSERT INTO bunch_of_data
    VALUES (3, to_date('1/15/2011','MM/DD/YYYY'));

    INSERT INTO bunch_of_data
    VALUES (3, to_date('4/17/2011','MM/DD/YYYY'));

    INSERT INTO bunch_of_data
    VALUES (3, to_date('11/11/2011','MM/DD/YYYY'));

    COMMIT;

    What I see when I run the SQL statement is:
    DESCRIPTION QUARTER COUNTY
    ----------- ------- -----
    APPLE 1 0
    2 2 APPLE
    APPLE 3 0
    APPLE 4 0
    1 1 GRAPE
    1 2 GRAPES
    GRAPES 3 0
    4 1 GRAPE
    ORANGE 1 0
    ORANGE 2-0
    ORANGE 3 0
    ORANGE 4 0

    I need each printed code without worrying if it was not used. If it has not been used, I want to still see each quarter but show 0 for count.

    For this example, I can run this SQL to join the data:
    Select c.description,
    to_char(d.activity_date,'Q') quarter,
    Count County (d.id_code)
    of bunch_of_codes c,.
    bunch_of_data d
    where c.id_code = d.id_code
    C.description group, to_char(d.activity_date,'Q')
    order of description, quarter

    But if it is not no matter how much detail for the quarter then I don't get a row of data. I tried all sorts of things, but nothing seems to work.

    Please help if you have any ideas.

    Hi MLBrown,

    Here's a query that gives what you asked.
    Note: My table bunch_of_data has three lines that you have published, more a fourth line (the activity_date of this row is April 12, 2010, in the format DD-MON-YYYY).
    To account for the response you gave to the question of Etbin, a column Y (for data year) is included in the output. In this output, there is for the year, Q for the quarter and the total for the count.

    SQL> select * from bunch_of_codes;
    
       ID_CODE DESCRIPTION
    ---------- -----------
             1 APPLE
             2 ORANGE
             3 GRAPE
    
    SQL> select * from bunch_of_data;
    
       ID_CODE ACTIVITY_DATE
    ---------- ---------------
             1 12-APR-2010
             1 12-APR-2011
             1 01-JUN-2011
             3 15-JAN-2011
             3 17-APR-2011
             3 11-NOV-2011
    
    6 rows selected.
    
    SQL> with a as(select mi + level - 1 as y
      2            from (select min(extract(year from activity_date)) mi,
      3                         max(extract(year from activity_date)) ma
      4                         from bunch_of_data
      5                 )
      6           connect by level <= ma - mi + 1
      7            ),
      8       qt as(select '1' q from   dual
      9            union all
     10            select '2' from dual
     11            union all
     12            select '3' from dual
     13            union all
     14            select '4' from dual),
     15       allt as(select b.id_code,b.description,a.y, qt.q  as q
     16              from   bunch_of_codes b,a,qt
     17              ),
     18       temp as(select id_code,y,q,count(1) co
     19      from (select bd.id_code,extract(year from bd.activity_date) y,
     20                   to_char(bd.activity_date,'Q') q
     21      from   bunch_of_data bd)
     22      group by id_code, y,q)
     23      select allt.id_code,allt.description,allt.y,allt.q,nvl(co,0) total
     24      from allt,temp
     25      where allt.id_code =temp.id_code(+)
     26            and  allt.y=temp.y(+)
     27            and allt.q=temp.q(+)
     28      order by allt.id_code, allt.y, allt.q;
    
       ID_CODE DESCRIPTION          Y Q      TOTAL
    ---------- ----------- ---------- - ----------
             1 APPLE             2010 1          0
             1 APPLE             2010 2          1
             1 APPLE             2010 3          0
             1 APPLE             2010 4          0
             1 APPLE             2011 1          0
             1 APPLE             2011 2          2
             1 APPLE             2011 3          0
             1 APPLE             2011 4          0
             2 ORANGE            2010 1          0
             2 ORANGE            2010 2          0
             2 ORANGE            2010 3          0
    
       ID_CODE DESCRIPTION          Y Q      TOTAL
    ---------- ----------- ---------- - ----------
             2 ORANGE            2010 4          0
             2 ORANGE            2011 1          0
             2 ORANGE            2011 2          0
             2 ORANGE            2011 3          0
             2 ORANGE            2011 4          0
             3 GRAPE             2010 1          0
             3 GRAPE             2010 2          0
             3 GRAPE             2010 3          0
             3 GRAPE             2010 4          0
             3 GRAPE             2011 1          1
             3 GRAPE             2011 2          1
    
       ID_CODE DESCRIPTION          Y Q      TOTAL
    ---------- ----------- ---------- - ----------
             3 GRAPE             2011 3          0
             3 GRAPE             2011 4          1
    
    24 rows selected.
    
    SQL>
    

    Edited by: Manguilibe Jan 28 KAO. 2012 01:06

  • If then the clause for a simple select statement.

    Good afternoon

    I'm sure this will be really simple for a person: I have three paintings that I need to access it in a simple select statement. However, I need to make two separate petitions by a field has an entry or not. Here is the code I wrote so far. It is only to retune the ELSE part, which means that I know I'm close, but I know I'm missing something incredibly simple and boring for me right now.

    IF common_event.efeanme IS NULL
    THEN
      SELECT a.num_1 AS "EVENT NUMBER", CONCAT(CONCAT(CONCAT(CONCAT(SUBSTR(a.cdts,5,2), '/'), SUBSTR(a.cdts,7,2)), '/'), SUBSTR(a.cdts,1,4)) AS "EVENT DATE", CONCAT(CONCAT(c.xstreet1, ' / '), c.xstreet2) AS "EVENT LOCATION"
      FROM common_event c JOIN agency_event a ON c.eid=a.eid JOIN disposition_type d ON a.ag_id=d.ag_id
      WHERE a.ag_id='JCSO'
      AND a.lev3='JC3'
      AND a.cdts BETWEEN '20140701' AND '20141001'
      AND d.tycod='CIT'
      ORDER BY a.num_1;
    ELSE
      SELECT a.num_1 AS "EVENT NUMBER", CONCAT(CONCAT(CONCAT(CONCAT(SUBSTR(a.cdts,5,2), '/'), SUBSTR(a.cdts,7,2)), '/'), SUBSTR(a.cdts,1,4)) AS "EVENT DATE", CONCAT(CONCAT(CONCAT(CONCAT(CONCAT(CONCAT(c.estnum, ' '), c.edirpre), ' '), c.efeanme), ' '), c.efeatyp) AS "EVENT LOCATION"
      FROM common_event c JOIN agency_event a ON c.eid=a.eid JOIN disposition_type d ON a.ag_id=d.ag_id
      WHERE a.ag_id='JCSO'
      AND a.lev3='JC3'
      AND a.cdts BETWEEN '20140701' AND '20141001'
      AND d.tycod='CIT'
      ORDER BY a.num_1;
    END IF;
    

    If I run a query on its own, it works as expected. Which means that I don't get something right (in my opinion) in my CASE SO the ELSE clause. As I said, it's probably something so simple I forget only she, but I better ask for a direction somewhat see where I'm going to do it right.

    Thanks in advance for any guidance.

    Tony

    Cant you just do:

    SELECT a.num_1 'EVENT NUMBER. "

    Concat (Concat (Concat (Concat (substr (a.CDTS, 5, 2), ' / '), SUBSTR (a.cdts, 7, 2)), ' / '), SUBSTR (a.cdts, 1, 4)) AS 'EVENT DATE ',.

    -case when c.efeanme IS NULL

    then CONCAT (CONCAT (c.xstreet1, ' /'), c.xstreet2)

    of another CONCAT (CONCAT (CONCAT (CONCAT (CONCAT (CONCAT (c.estnum, ' '), c.edirpre), ' '), c.efeanme), ' '), c.efeatyp)

    end AS 'EVENT ADDRESS'

    OF common_event c

    JOIN THE

    agency_event one

    WE c.eid = a.eid

    JOIN the disposition_type d

    ON a.ag_id = d.ag_id

    WHERE a.ag_id = 'JCSO.

    AND a.lev3 = 'JC3.

    AND a.cdts BETWEEN '20140701' AND '20141001'

    AND d.tycod = 'CIT '.

    ORDER BY a.num_1

    Concerning

    Etbin

    Deleted AND c.efeanme IS NULL

  • Unable to connect to the selected Mobile Data Service, please try again later.

    Dear all,

    I downloaded Blackberry email and MDS Services 4.1.4 and the Blackberry 9630 Simulator Simulator. I'm testing a blackberry asp.net application I have running on a test server using the blackberry Simulator.

    I have windows XP box. When I try to run the SDM Service, it runs without error, but acquire it on the site - http://www.blackberry.com/go/mobile - error saying above message - unable to connect to the selected Mobile Data Service, please try again later. How can I solve this problem, I tried to use full qualified names in the config file.

    Any ideas?

    NAV.

    Hi Nav, thanks for your message.

    When you use the BlackBerry 9630 Smartphone Simulator, you may need to change its default connection settings in order to provide network connectivity.  The reason why because the 9630, being a world phone, supports different types of network technologies and a configuration change may be needed to make it work with the MDS Simulator - CS.

    1. from the home screen, click the 'manage connections '.

    2. a popup window opens, select "Mobile Network Options '.

    3. in the options screen, ensure that the following field values are defined:

    • Data services = 'On '.
    • Network selection mode = "auto".
    • Technology network = "1XEV".

    4. close the 'mobile network options' screen to save the changes

    9630 smartphone Simulator should now have network connectivity.

    Sincerely,

    Adam

  • Select the data in a table and update in another table

    Dear experts,

    create the table TB_ENCRYPT

    (

    Identification number,

    Varchar2 (200) KEY

    );

    INSERT INTO TB_ENCRYPT VALUES(1,'HJUVHDUIFBSDGVU');

    SELECT * FROM TB_ENCRYPT;

    1 HJUVHDUIFBSDGVU

    create TABLE users)

    username, NUMBER of

    password VARCHAR2 (200)

    );

    Insert users

    values (1, 123 # "")

    Insert users

    values (2, 456 #')

    Select * from users;

    1 123 #.

    # 2 456

    I want to select the data KEY for table TB_ENCRYPT column and update in the column of tables for the respective key user password

    TB_ENCRYPT table contains only a single key value. Comparing this key, I want to update the old value of the key to the new value.

    For encryption and decryption I followed the java class method.no is worried about that.

    create or replace

    PACKAGE PCK_ENC AUTHID CURRENT_USER AS

    FUNCTION DECRYPT (VARCHAR arg0, arg1 VARCHAR) AS VARCHAR BACK LANGUAGE JAVA NAME 'Encrclass.decrypt (java.lang.String, java.lang.String) return java.lang.String ';

    FUNCTION ENCRYPT (VARCHAR arg0, arg1 VARCHAR) AS VARCHAR BACK LANGUAGE JAVA NAME 'Encrclass.encrypt (java.lang.String, java.lang.String) return java.lang.String ';

    END;

    SELECT PCK_ENC. ENCRYPT('1234','HJUVHDUIFBSDGVU') FROM DUAL;

    HERE,

    1234 - is the password of the users table column data

    HJUVHDUIFBSDGVU - represents the key of table TB_ENCRYPT column data.

    Comparing this key, I want to update the old value of the key to the new value.

    I tried with this method

    declare

    cursor c1 is

    Select the key

    of TB_ENCRYPT

    where id = 1

    update the id;

    Start

    for c1_rec looping c1

    update users

    password is PCK_ENC. Encrypt (Password, Key)

    the location being c1;

    commit;

    end loop;

    end;

    /

    Help, please

    You can use the MERGE statement.

    merge into users
    using tb_encrypt
       on (id = userid)
      when matched then
          update set password = PCK_ENC.ENCRYPT(password,key);
    

    And why you encrypt your password. This isn't a good idea. Just password hash.

  • Database is configured for Data Guard

    I'm lance a UTF8 conversion on a development database, which has been cloned from Data Guard. There is a warning in the Migration status: "database is configured for Data Guard" which is looking at DMU to determine this? The database is opened in read-write mode and it behaves like a primary database (I have the MISP scanner and run updates to address representations not valid). I would like to know what I need to update the settings.

    This prevent me to convert tables using DEC? When I try to select this option for all tables I get the message, "CDS does not support conversion method"Copy data using CREATE TABLE AS SELECT"for tables that are involved in a process like capture Oracle Streams, or apply.". Another method of conversion available for the table.

    Thank you

    Ben

    CDS checks if the DG_BROKER_START parameter is set to true.

    The problem with the ETG is independent of the Data Guard. The CDS is true for tables which:

    -are asynchronous stream capture source, or

    -update conflict managers have, or

    -DML managers have, or

    -conflict resolution settings have

    The above tables are considered to be configured for Oracle Streams and are not supported by the method of conversion of DEC. This is because the DEC method creates a copy converted the table and falls from the original. The CDS is not able to move the configuration information from the old table to the new flow.

    Thank you

    Sergiusz

  • Connection verification failed for data source - mysql.jdbc.Driver

    I get this message when you try to add a mySQL (don't ask) database in CF Admin checking the connection failed for data source: shownets java.sql.SQLException: no suitable driver available for shownets, please don't check the configuration in the file resources, pilot error: com.mysql.jdbc.Driver


    The root cause was that: java.sql.SQLException: no suitable driver available for shownets, please don't check the configuration in the file resources, pilot error: com.mysql.jdbc.Driver I tried all sorts of messages instructions and nothing seems to work.  It's on my 32-bit platform. Tryng to get out all the bugs before I installed the 64-bit version.

    TNX a

    It seems that you have recently installed Coldfusion. I say this because recent versions of Coldfusion no longer ships with JDBC to MySQL driver. You must therefore download and install it yourself.

    To do this, go to the download page of the MySQL JDBC driver. Select the platform independent as a platform connector. Download the ZIP file independent of the platform mysql-connector-java - x.x.xx.zip. (x.x.xx represents the version number)

    Extract the ZIP file. Open the folder that results and search for the driver. It is a JAR file called mysql-connector-java - x.x.xx - bin.jar (x.x.xx represents the version number). Copy the file in the directory lib to Coldfusion.

    Restart Coldfusion. Voila - you're ready to go.

  • Select all dates between two fields txt. How?

    In a slider form 6i, I need to select all dates between two dates provided. I have two fields text Fld1 and Chp2 with the data type date. There is no table behind the two fields.
    For example
    ': FLD1: = MARCH 1, 2013;
    ': CHP2: = MARCH 10, 2013;

    Now I have to choose all dates between 01-mar-2013 and 2013-mar-10 '. How to do?

    Gul says:
    In a slider form 6i, I need to select all dates between two dates provided. I have two fields text Fld1 and Chp2 with the data type date. There is no table behind the two fields.
    For example
    ': FLD1: = MARCH 1, 2013;
    ': CHP2: = MARCH 10, 2013;

    Now I have to choose all dates between 01-mar-2013 and 2013-mar-10 '. How to do?

    As'salamualikum Gul

    Try this

    SELECT TO_DATE('01-MAR-2013', 'DD-MON-RRRR') - 1 + rownum AS d
    FROM ALL_OBJECTS
    WHERE TO_DATE('01-MAR-2013', 'DD-MON-RRRR') - 1 + rownum BETWEEN TO_DATE('01-MAR-2013', 'DD-MON-RRRR') AND TO_DATE('10-MAR-2013', 'DD-MON-RRRR')
    

    Hope this helps

  • How can I activate Smart Lists on or off for data forms?

    How can I activate Smart Lists on or off for data forms?

    Thank you
    A

    Hi AEK.

    1. create a smart list, (http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/enum_ed.html)
    2. modify the Member properties of the Member that you want to assign a smart list, select the type of data like "Smart lists" and the next set of Smart List, select the name of the smart list you want to attach, (http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/ch05s02s04s02.html)
    3. set the order of evaluation. (http://download.oracle.com/docs/cd/E12825_01/epm.111/hp_admin/enum_od.html)

    And you might want to take a look at:
    http://blogs.Oracle.com/HyperionPlanning/entry/evaluation_order

    See you soon... !!

  • Default value is evident in textbox for data entry

    Hello everyone.  I am building a form of contract farming for a customer.  Here is a picture of high level of form for discussion:

    Operating agreement (object label for the title of the form)

    By signing this document, you agree to all of the language indicated on the following pages. etc. etc. etc. (label object for the static text)

    Name of the customer (text object for data entry)

    Address (text object for data entry)

    City (text object for data entry)

    State (text object for data entry)

    Article 1 - this agreement is between the customer, as indicated above and the company providing, etc. etc. etc. (object label of static text)

    Question 1

    By the request of the customer, I removed the label from the name text box of the Client (as well as all the other text boxes).  Want me to set the default value of this to say 'Customer name' indicating that the customer name text box must be typed here.  I've added the phrase name of the customer to bristle reversal as well help.  So we do not weigh those filling out the form, I added a line of JavaScript on the Enter event , so the default text in this text box is removed when the user clicks the text box to enter data.  The code I used is: this.rawvalue = "";  

    This solution works very well because we do not want those filling in the form of having to select and delete the default of 'Customer name' when they want to enter data.  Thus, with the JavaScript in place by default is removed after clicking in the textbox control.  The only problem I have with this solution is that if a person would click in this text box after entering the data or tabs in the text box after you enter the data, the data that has been entered is deleted (for the code).  Does anyone know how to set a default value that clears when the user enters in the text box for entering data, but does not erase what the user types in if they want to add to the data they entered or accidentally click in the text box.

    I thought to make the textbox to read after a user of other data and leaves the text box BUT if they want to change what they got they can't because it is read-only.

    Any thoughts on a solution that would meet my needs?  I prefer not to have a button on the form that a user clicks to erase the contect of a specific text box, but it's the only other thing I can think of that would work.

    Question 2

    For label objects as Article 1, I need to add a large amount of data (more than 1 page of text in the paragraph format) in a label/text box.  I suppose that the best object to copy and paste this data into is a label and not a text box (which I could remove the formatting and reading only).  My one major requirement for this is that I develop text fields before this Article 1, which should push (wrap) Article 1 contained on a second or third page.  I can set the property object to break up, but I don't know if that will lead the content of Article 1 partly wrap to a second page.  It will be (is that the right solution)?  I prefer not to enter this long content of many objects of label for each paragraph, but I did it in the past and it works.

    If it's important, my design of the shape has a subform (with the property set to cast) and each object embedded in this subform in the hierarchy list (additional subforms, text boxes, labels).  I implement it effectively and function I wanted me?  I know it's hard to image.

    Thank you all for reading my post and I expect all your comments and suggestions.

    Jeff

    Hi Jeff,

    Here is an example, where the textfield object has a null type. This allows to have the legend inside the textfield object. As soon as the user clicks inside the textfield object, the 'legend' disappears and the textfield object is available for the user to type in.

    https://Acrobat.com/#d=uqcNdyoPayTa2MbPb8F88A

    The form has two options. The second replicates the 'legend' at the end in parentheses if the field is NOT null.

    I will come back to q2 after a bite... Army market on her belly

    Niall

  • Select if date &gt; current_date

    Hi all

    I just tried to play with this selection where I need to pick up the records with TRADEDATE < CURRENT-DATE, and really impressed how is intuituve Oracle.
    tradedate date;

    SELECT * FROM TRADEMIX WHERE TRADEDATE < = (SELECT CURRENT_DATE OF DOUBLE); works very well, I see that same month displayed as char 'MS' treated right, collating order. Wow!
    Looks so much like that I don't need to do anything special? This is my first experience with Oracle, so I just want to confirm that this is really the case.

    Also, what will be the best way to only select for TRADEDATE = ' 2010' (all records to give year)? I do all to_char for whom? Not sure about the correct syntax, all samples in manual noted the entire string date "DD-MON-YY."


    Thank you
    Trent

    Try this
    SELECT * FROM tablename
    where TRIM (TO_CHAR (TRUNC (TRADEDATE), 'YEAR')) = '2010'

    or

    SELECT * FROM tablename
    where TRIM (TO_CHAR (TO_DATE (HIRE_DATE), 'YEAR')) = '2010'

    check the link and try all the options
    http://www.allinterview.com/showanswers/108575.html

Maybe you are looking for

  • new power supply for a6319fh

    im going to be upgrading my diet so I can update my graphics card. the vehicle currently has a 250w power supply and I want to go between 450-600w. I need to know what brands will certainly adapt to my case. I have a processor intel dual core and im

  • Connectivity WiFi problem

    Hello My features detailed on this machine are:

  • How can I turn on the family on my windows xp system restore?

    I tried to download WMP 11 and he told me the system restore was turned off and to recommend as I turn it before downloading. I tried to go to the Computerthen my properties and system restore was not an option

  • Reminder: Region coding?

    Greetings Forum,Simple questions? Is there a default setting for what area code is used when I burn a Blu - Ray disc in still CS6? If so, what is it? I'm in the United States, but he had to burn a project which will be screened in Europe (United King

  • How can I assign brush Angle of Rotation to a keyboard shortcut?

    I have a Wacom Intous4 Tablet and what to put in place where the touch ring controls the angle rotation of a brush.I went and combed through the forums here and a few others, better I can't hardly find subjects or the answer is more recent than a yea