How extracted records where the "COUNT (Col1) > 1.

Hi guys

I have this table

TAB1

ACC_ID NUM_TRANS

----------           ----------

55892569 0

55892569 1

55892569 1

44420080 1

168865070 0

168865070 1

168865070 1

I need to get all the account_id with a count (num_trans) > 1

When I write

Select acc_id, count (num_trans)

of TAB1

ACC_ID group

But how to get only the ACC_ID who have a COUNT (NUM_TRANS) > 1

without creating a temporary Table?

This should be the result

ACC_ID NUM_TRANS

----------           ----------

55892569 2

168865070 2

SELECT acc_id, COUNT (num_trans)

OF tab1

GROUP BY acc_id

After HAVING COUNT (num_trans) > 1;

Tags: Database

Similar Questions

  • Drawing from records where the number of records of unique ID > = 6

    I have a table that contains the address information for everyone in the system. It has many areas, although I have included only a few in the create table query below for brevity. The PIDM uniquely identifies each record as belonging to a person especially in the database. A person can have multiple addresses in the table, although normally, we do not allow them to have more than one active address of a particular ATYP_CODE. Yet once again, I do it here for brevity. What I have to do is to shoot all the records for each PIDM, but only when there are > = 6 records by PIDM. The user does not care if the data is rotated (I can do this part if necessary). Pulling on the actual data is not the issue. I just need a little help to find how to get only the records of PIDMs with six or more records in the table. So, according to the sample data below, records for PIDM 12345 and 34567 are those which should be in the output, but those of PIDM 23456 should not.
    DROP TABLE SPRADDR;
    
    CREATE TABLE SPRADDR
    (PIDM              NUMBER(8),
     ATYP_CODE     VARCHAR2(2 CHAR),
     STREETLINE1   VARCHAR2(60 CHAR),
     CITY              VARCHAR2(60 CHAR),
     STATE              VARCHAR2(2 CHAR),
     ZIP              VARCHAR2(10));
    
    INSERT INTO SPRADDR VALUES (12345,'PR','1 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (12345,'MA','1 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (12345,'BU','1 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (12345,'PR','2 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (12345,'MA','3 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (12345,'PR','4 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (23456,'PR','1 MAIN','KENT','OH','44240');
    INSERT INTO SPRADDR VALUES (23456,'MA','1 MAIN','KENT','OH','44240');
    INSERT INTO SPRADDR VALUES (23456,'BU','1 MAIN','KENT','OH','44240');
    INSERT INTO SPRADDR VALUES (34567,'PR','1 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (34567,'MA','1 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (34567,'BU','1 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (34567,'PR','2 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (34567,'MA','3 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (34567,'PR','4 MAIN','CANFIELD','OH','44406');
    INSERT INTO SPRADDR VALUES (34567,'PR','6 MAIN','CANFIELD','OH','44406');
    
    COMMIT;
    I would be very happy any help you might be able to provide. I'm sure it's easy, but I've done so far has not worked, and I'm not including the code, I've tried because it is quite fishy and not working do not at all.

    Thank you
    Michelle Craig
    Data Coordinator
    Admissions and transfer systems
    Kent State University

    PIDM 12345 and 34567 are those who should.

    Why 12345? It is repeated 6 times where you asked > 6. In any case:

    SQL> select  *
      2    from  (
      3           select  s.*,
      4                   count(*) over(partition by pidm) cnt
      5             from  spraddr s
      6          )
      7    where cnt > 6
      8    order by pidm
      9  /
    
          PIDM AT STREETLINE1     CITY                 ST ZIP               CNT
    ---------- -- --------------- -------------------- -- ---------- ----------
         34567 PR 1 MAIN          CANFIELD             OH 44406               7
         34567 MA 1 MAIN          CANFIELD             OH 44406               7
         34567 BU 1 MAIN          CANFIELD             OH 44406               7
         34567 PR 2 MAIN          CANFIELD             OH 44406               7
         34567 MA 3 MAIN          CANFIELD             OH 44406               7
         34567 PR 4 MAIN          CANFIELD             OH 44406               7
         34567 PR 6 MAIN          CANFIELD             OH 44406               7
    
    7 rows selected.
    
    SQL> select  *
      2    from  (
      3           select  s.*,
      4                   count(*) over(partition by pidm) cnt
      5             from  spraddr s
      6          )
      7    where cnt >= 6
      8    order by pidm
      9  /
    
          PIDM AT STREETLINE1     CITY                 ST ZIP               CNT
    ---------- -- --------------- -------------------- -- ---------- ----------
         12345 PR 1 MAIN          CANFIELD             OH 44406               6
         12345 MA 1 MAIN          CANFIELD             OH 44406               6
         12345 BU 1 MAIN          CANFIELD             OH 44406               6
         12345 PR 2 MAIN          CANFIELD             OH 44406               6
         12345 MA 3 MAIN          CANFIELD             OH 44406               6
         12345 PR 4 MAIN          CANFIELD             OH 44406               6
         34567 PR 1 MAIN          CANFIELD             OH 44406               7
         34567 MA 1 MAIN          CANFIELD             OH 44406               7
    
          PIDM AT STREETLINE1     CITY                 ST ZIP               CNT
    ---------- -- --------------- -------------------- -- ---------- ----------
         34567 BU 1 MAIN          CANFIELD             OH 44406               7
         34567 PR 2 MAIN          CANFIELD             OH 44406               7
         34567 MA 3 MAIN          CANFIELD             OH 44406               7
         34567 PR 4 MAIN          CANFIELD             OH 44406               7
         34567 PR 6 MAIN          CANFIELD             OH 44406               7
    
    13 rows selected.
    
    SQL>  
    

    SY.

    Published by: Solomon Yakobson on 10 may 2012 10:02

  • How to locate where the shared Variables are used in the project.

    I'm looking everywhere where a shared Variable is used in my project. Right-clicking does not provide a find. The display hierarchy does not help. In the Project Explorer, the appellants find displays only the names of the screw called, not the many places where the call is made.

    Does anyone know how to find the location where a shared Variable is used?

    Edit-> find and replace. For "Select object" click and access features-> Structures-> shared Variable.

  • Select only records where the column values are not all equal to zero

    Hi everyone, it seems so easy, but it has left me speechless on the research in a way that is clean, easy to achieve. I know when someone replies, I'm going to kick me. So, let's assume this is what I have:
    with mytable as (
    select 'Type 1' as itemtype, 'JAN' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'FEB' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'MAR' as monthname, 5 as theval from dual union all
    select 'Type 1' as itemtype, 'APR' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'MAY' as monthname, 4 as theval from dual union all
    select 'Type 1' as itemtype, 'JUL' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'AUG' as monthname, 0 as theval from dual union all
    select 'Type 1' as itemtype, 'SEP' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'OCT' as monthname, 7 as theval from dual union all
    select 'Type 1' as itemtype, 'NOV' as monthname, 1 as theval from dual union all
    select 'Type 1' as itemtype, 'DEC' as monthname, 2 as theval from dual union all
    
    select 'Type 2' as itemtype, 'JAN' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'FEB' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'MAR' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'APR' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'MAY' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'OCT' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'NOV' as monthname, 0 as theval from dual union all
    select 'Type 2' as itemtype, 'DEC' as monthname, 0 as theval from dual
    )
    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    order by itemtype
    I need an external application around it or something which will select only 'Type 1'... that is, if all months are each equal to zero, do not include the record in the result set.

    In summary to get a total of zero is not an option, because I could have-15 and + 15 in different columns, in which case, the recording should be displayed.

    Something as simple as... 'not the case (oct = 0 and 0 nov and dec = 0...) at the end is all it seems to me necessary. I thought to add a case for each column clause, but that seems not very effective. Ideas?

    Thanks in advance!
    Mark

    Edit... I know not what follows will work using the MINUS operator, but my actual query is really huge, and I don't want to have to write it twice...
    {code}
    Select
    ItemType,
    sum (case monthname when "JAN" then Val else 0 end) such as JAN,.
    sum (case when monthname 'FEB', then Val 0 otherwise end) by Feb.
    sum (case when monthname 'MAR', then Val 0 otherwise end) like MARS,
    sum (case monthname when "APR" then Val else 0 end) as APR.
    sum (case when monthname 'MAY', then Val else 0 end) either.
    sum (case when monthname "JUN", then Val 0 otherwise end) as JUN.
    sum (case monthname when "JUL" then Val else 0 end) as JUL,.
    sum (case monthname when "AUG" then Val else 0 end) as AUG.
    sum (case monthname when "MS" then Val else 0 end) as MS.
    sum (case monthname when "OCTS" then Val else 0 end) OCT.
    sum (case monthname when "NOV" then Val else 0 end) as NOV.
    sum (case monthname when 'DEC' then Val else 0 end) as DEC
    FROM MyTable
    Group of itemtype

    less

    Select
    ItemType,
    Jan, Feb, mar, Apr, may, June, July, August, Sept, oct, nov, dec
    de)
    Select
    ItemType,
    sum (case monthname when "JAN" then Val else 0 end) such as JAN,.
    sum (case when monthname 'FEB', then Val 0 otherwise end) by Feb.
    sum (case when monthname 'MAR', then Val 0 otherwise end) like MARS,
    sum (case monthname when "APR" then Val else 0 end) as APR.
    sum (case when monthname 'MAY', then Val else 0 end) either.
    sum (case when monthname "JUN", then Val 0 otherwise end) as JUN.
    sum (case monthname when "JUL" then Val else 0 end) as JUL,.
    sum (case monthname when "AUG" then Val else 0 end) as AUG.
    sum (case monthname when "MS" then Val else 0 end) as MS.
    sum (case monthname when "OCTS" then Val else 0 end) OCT.
    sum (case monthname when "NOV" then Val else 0 end) as NOV.
    sum (case monthname when 'DEC' then Val else 0 end) as DEC
    FROM MyTable
    Group of itemtype
    )
    where (oct = 0 & nov = 0 and dec = 0 and jan = 0 and 0 = Feb and mar = 0
    apr = 0 and may = 0 and = 0 jun and Jul = 0 and aug = 0 and Ms = 0
    )
    order of itemtype
    {code}

    Change again... OK, I guess that I am answering my own question here, but I think that by using a WITH to write the main request once clause and then selecting * twice using the MINUS operator between where the second query is where (oct = 0, etc.) is what I need. If anyone has better suggestions, please let me know! Here's the logic of nickname for what I come up with to date...

    {code}
    WITH mainquery as (select all)
    Select * from mainquery
    less
    Select * from mainquery where (oct = 0, nov = 0, etc...)
    {code}

    Thanks again!
    Mark

    Published by: user455268 on March 1, 2012 19:13

    Published by: user455268 on March 1, 2012 19:16

    Hello

    You can do it with a HAVING clause:

    select
      itemtype,
      sum (case monthname when 'JAN' then theval else 0 end) as JAN,
      sum (case monthname when 'FEB' then theval else 0 end) as FEB,
      sum (case monthname when 'MAR' then theval else 0 end) as MAR,
      sum (case monthname when 'APR' then theval else 0 end) as APR,
      sum (case monthname when 'MAY' then theval else 0 end) as MAY,
      sum (case monthname when 'JUN' then theval else 0 end) as JUN,
      sum (case monthname when 'JUL' then theval else 0 end) as JUL,
      sum (case monthname when 'AUG' then theval else 0 end) as AUG,
      sum (case monthname when 'SEP' then theval else 0 end) as SEP,
      sum (case monthname when 'OCT' then theval else 0 end) as OCT,
      sum (case monthname when 'NOV' then theval else 0 end) as NOV,
      sum (case monthname when 'DEC' then theval else 0 end) as DEC
    from mytable
    group by itemtype
    HAVING      MIN (theval)     != 0
    OR      MAX (theval)     != 0
    order by itemtype
    ;
    

    If the values are all 0, then the MIN and MAX will be 0.
    If the MIN or MAX is not 0, the values are all 0.

    This assumes that the combination (itemtype, monthname) is unique, because it is in your sample data.
    If this is not the case, start with a subquery that GROUPs BY itemtype, monthname, so that when you get to the main request, this combination will be unique.

  • How to change where the Airport Extreme think that there is

    I moved house about 6 weeks ago, but whenever I am connected to my current-model Airport Extreme wifi, my devices think they are still at the old House.  How can I make the AE update when it is actually located?

    There is no change, you can do it... He will be eventually updated on apple servers... but it can be slow.

  • How to find where the catalog is stored

    How can I find out where I store the catalog files to make sure that I backed them up.

    Thank you.

    It is in the catalog settings that are accessible from the system menu.

  • get the only recording where the sum is less

    Hello
    select EMPNO, SAL from EMP
    
    7369     800
    7499     1600
    7521     1250
    7566     2975
    7654     1250
    7698     2850
    7782     2450
    7788     3000
    7839     5000
    7844     1500
    7876     1100
    7900     950
    7902     3000
    7934     1300
    I need to find all the empno all together (sum) is equal in early 2000 by lowest SAL
    IF the sum is below 2000, I can then take an empno, also if, then, the sum will be longer than 2000
    It's
    800 +.
    950 + = 1750
    1100 +.
    = 2850
    I can get the first empno 3 discs = (7369,7900,7876)

    If I want to compare with 1750 instead of 2000, I get only two first empno = (7369,7900)

    How can he do?

    Thanks in advance
    SQL> select empno, sal
      2    from (
      3  select empno, sal, sal1, nvl(lag(sal1) over(order by sal),0) lsal
      4    from (select EMPNO, SAL, sum(sal) over(order by sal) sal1 from EMP))
      5  where lsal <2000
      6  /
    
         EMPNO        SAL
    ---------- ----------
          7369        800
          7900        950
          7876       1100
    
    SQL> select empno, sal
      2    from (
      3  select empno, sal, sal1, nvl(lag(sal1) over(order by sal),0) lsal
      4    from (select EMPNO, SAL, sum(sal) over(order by sal) sal1 from EMP))
      5  where lsal <1750
      6  /
    
         EMPNO        SAL
    ---------- ----------
          7369        800
          7900        950
    
  • How to record just the active bookmarks in a file?

    I'm used to be able to save only the active bookmarks in an external file. With the current version, it seems to be possible. Is there a way to do this?

    Do you mean to bookmark all open tabs?

    Some menu entries in the main menu bar are hidden if you are using the mouse and only appear if you use the keyboard to open the menu (Bug 626825).

    You can see the difference if you use Alt + F to open the file menu and other menus such as the Edit (Alt + E) menu and the menu bookmark (Alt + B) and compare that to what you see, if you use the mouse to open the menu after the bar of menus visible by typing Alt or by pressing F10.

    • "To bookmark all tabs" (Shift + Ctrl + D) is no longer present in the menu bookmarks unless you open the bookmarks menu via the keyboard (Alt + B).
    • "To bookmark all tabs" are available through the context menu of a tab on the tab bar.
  • USB-6525 NiDaqmx how to detect where the device interrupts the communication

    This could be considered a more generic question for NiDaqmx, but I write a custom control for internal use with the USB-6525 and possibly other devices of i/o using c#.  I use DigitalChangeDetectionEvent to warn me when an entry has changed and everything seems to work very well.  In an effort to be complete, I decided to unplug the USB cable and see the result and found that no error has been detected until I tried a writing output.  This is not acceptable because under normal conditions abstraction entry begins a process that will change output - given that admission never happens, the system is basically hung.

    I tried many things and have spent more time on what I want to admit so I would like to hear suggestions on how to address this problem.  Here are my attempts that I am not satisfied:

    (1) periodically switch (pulse) output that allows to detect the problem, but I may not be an available exit, so this isn't a good situation.

    (2) periodically trying to read the input byte with the same entry workflow, this does not work because I believe that the other player is still active with the DigitalChangeDetectionEvent.

    (3) attempted to take the message of Windows to change hardware, but seems too complex.

    (4) I read on the guard dog, but not sure that it is available on the box USB-6525.  So before I start with this I'd hear rather suggestions of others with more experience.

    Any suggestions please?

    THX, Ed

    Hi IntegroEd,

    Those are all very innovative way to potentially address the problem, and I'm sorry you haven't seen success with them.  Fortunately, the typical way to capture a break between a device of data acquisition and monitoring system is indeed a timer, and the 6525 has the innate ability to use the feature, as seen on page 5 of the user manual.  I suggest you go that route, if another user does not post a peripheral solution specific to your case.  This is a documentation on the implementation of the monitoring-

    http://www.NI.com/product-documentation/14616/en/

  • How to control where the Messages appear on a Page

    Hello.

    I use Apex 4.2.1 on mod_plsql and Oracle 11 g 3.  My application uses theme 21.

    I noticed a strange behavior.  All my messages page such as the success of process messages ('changes have been saved") and even validation error messages ("date field must have the value") will all be displayed at the bottom of my page.  The users do not know still an error has occurred or that their database changes have been successfully saved until they literally put you at the bottom of the page.

    My page happens to have several regions (HTML, report, form) some of which are "children" of the parts of 'parent '.  It's just the way I need to position the different regions on this particular page.

    If anyone knows why these messages appear at the bottom of the page?

    I want to display them all at the top of the page.

    Any son of tips/suggestion how to control the placement of the message on a page would be much appreciated.

    Thank you.

    Elijah


    The placement of messages are defined in the page template.

    If anyone knows why these messages appear at the bottom of the page?

    You put your regions in a position in the region above the location of the messages.

    Change one of the regions and in the "User Interface" section, there is the field "View Point".  Click on the flashlight icon to the right of this field to see a presentation of the positions of the region and location of the messages.  Note that #SUCCESS_MESSAGE # and #NOTIFICATION_MESSAGE # are under some other positions (e.g. region Position 1 and Position 4 region) region

    Parts of the main body of a page are normally in "body of Page Template (3).  Try changing your regions for the "body of Page Template (3)" shows point.

    -Jeff

  • How to check where the table field has been used as a foreign key in the database

    Hi I have a field in my table Office I had office_code field, this field has been used in the tables of diffirent as foreign key is a sql I can wirte to see all the tables that have used this field as a foreign key

    Edited by: adf009 09/05/2013 10:37

    Edited by: adf009 09/05/2013 10:38

    Check this box

    SELECT * FROM user_constraints WHERE table_name='EMP' and CONSTRAINT_TYPE='R';
    

    Type = 'R' means referential integrity constraint type.

  • How to record on the mixing in mono, 0 db reduction in volume in mp3 64 bps? Sounds simple, but about all the support staff has been able to do.

    How to save on mixing in mono, 0 db reduction in volume, (same volume as in the files-no - 3 dB reduction) to MP3, 64 bits/s? Sounds simple, but about all the support staff has been able to do.

    Several solutions to this problem.  I think that we have discussed on the support email, but I will share this new here so that he can help others as well.

    Firstly, as I have explained in the e-mail, default, hearing support right Pan that prevents content mixed to a stereo field centre to be stronger than the same worn out content far left or right.  This provides one - drop 3dB to center the content by default, but you can disable it completely by entering Preferences > multitrack and by setting the Mode panoramic default to left/right cut (logarithmic)

    Now, when you create a new multitrack session, there is an option to specify the captain multiplexing.  Here, you can select Mono, stereo or 5.1 and it will be the mode of multiplexing by default for a mix of base operation regardless of the content of your video, but can be overridden when you export a mix of session.

    Then, if you choose the menu item multitrack > Mixdown Session to the new file... always by default is the captain of multiplexing.  This command does not write to disk, is a not preview or pre-processing.  If you want to export your mix multitrack session directly on the disc in the desired format and multiplexing file, use the command file > export > multitrack mixer > whole Session... You will have then the full set of output options, including the entire line output option that you like and the format you prefer.

    Here, I have disabled by default 5.1 output and selected a Mono mix instead.

    I've now changed the parameters of format as well as MP3, 64K.

    With most of these configuration details, you only need to define their time and they will remain the default values for subsequent projects, except change again.  The dialog box export a multitrack mix will reset the mix options to match the default output and the MP3 settings can be updated to reflect the closest Kbps setting of the sampling frequency of your session.

  • I installed SP1, but my computer it does not see a warning asking me to install in the updates? How can I get the count to recognize that it is already installed?

    I had to reinstall Windows Vista and all necessary Windows updates I could upgrade to 7. I installed everything, including SP1 according to the window updates installed. My computer will not recognise that SP1 is installed and it wont let me go to 7.

    Hello

    The problem persists with Windows Vista SP1?

    Method 1: Download and install the update manually and see if it works.

    For Windows Vista 32-bit SP1:

    http://www.Microsoft.com/en-in/Download/details.aspx?ID=30

    For Windows Vista SP1 64-bit:

    http://www.Microsoft.com/en-in/Download/details.aspx?ID=21299

    Method 2: Download and install the Fixit and check if it helps.

    http://support.Microsoft.com/mats/windows_update/

    Hope this information helps.

  • How to change where the laptop think I live

    When a site uses my site to view information, it's as if I live in Texas.  I live in Tennessee.  Should what setting in my laptop I change to give the correct information?  I have a Pavillion dv7 notebook.  Windows 7 operating system.

    Thank you.

    Welcome to the HP Forum!

    buchan95 wrote:

    When a site uses my site to view information, it's as if I live in Texas.  I live in Tennessee.  Should what setting in my laptop I change to give the correct information?  I have a Pavillion dv7 notebook.  Windows 7 operating system.

    Thank you.

    Panel--> region and language--> location tab use this menu drop down to enter your locale. You can enter more specific information if you wish by clicking on the link to default location in the lower left corner of the tab location.

    Kind regards
    ERICO

  • How to record separately the songs of a video?

    I have a 12 minute video I want to divide it into smaller segments and save each segment as a separate video file.

    I cut the video into pieces using markers and "ins and outs" and dragged these pieces to the timeline. I'm stuck at this point, however. (I'm new at first). What can I do?

    Thank you!

    You can create a new sequence, and then drag the original inside (called interlocking) item and edit this clip to what size you want.

    Nesting works if you have a long video you want a small clip of.

    It looks like the nesting might work for you.

    Of course when you nest of something if you change the original film, then he nested the effects of all the clips.

    But it works well to divide up to smaller segments.

    Or you can copy and paste back to and make changes.  This makes new video which is independent of the others.

    Continue to play with Lynda training.

    I hope this helps.

    Enjoy: Glenn

Maybe you are looking for