Count (*) with Group of and a join

I have the tables below:

Tables:
EMPLOYEE 
EMP_ID         LNAME             FNAME
1000                 SLITT              JOHN
1001                 SLITHER              STEVE
1002                 JACOB              MARLYN
1003                 STUFFEY     NOSE
1004                 SLIPPY              MOUTH
-----
ACCESS_TYPE
ACCESS_TYPE_ID     ACCESS_DESCRIPTION
1                         EMPLOYEE
2                         EMPLOYEE_ADMIN
3                         CONTRACTOR
-----
EMPLOYEE_ACCESS
ACCESS_ID      ACCESS_TYPE_ID     EMP_ID     ACCESS_EFF_DATE     
1               1               1000              01-JAN-13
2               1               1001              10-FEB-13
3               1               1002              18-FEB-13
4               2               1003              10-OCT-12
5               3               1004              10-MAR-08
-----
I'm trying to appear on the behalf of the Group of employees by their type and whose name does not begin with SL
I wrote the following query and I get a missing Expression 00936. What I am doing wrong? Thank you

SELECT EA. COUNT (*), ACCESS_TYPE_ID
OF EMPLOYEE_ACCESS EA, USED E
WHERE ACCESS_EFF_DATE > = 31 December 12 ' AND E.LNAME NOT LIKE '% SL.
ACCESS_TYPE_ID GROUP;

Published by: parsar on March 25, 2013 15:54

>
FAM COUNT (*)
>
You have a column named "COUNT" in your table? NOT! You probably intend to use the COUNT function: ditch the prefix aliases, functions use a prefix.
>
WHERE ACCESS_EFF_DATE > = 31 DECEMBER 12 '
>
Don't use strings to DATE values. Use the dates and the TO_DATE function if you need to convert a string to a date literal.

This Cartesian join between the tables is unlikely to be what you want to do.

Tags: Database

Similar Questions

  • Max, Min, and Count with Group By

    Hello

    I want the max, min and the meter of a table that is grouped by a column

    I need a combination of these two selects:

    select
         max(COUNTRY_S) MAXVALUE,
         min(COUNTRY_S) MINVALUE
    from
         tab_Country
    
    

    select
         count(*)
    from
         (select COUNTRY_TXT from tab_Country group by COUNTRY_TXT) ;
    
    

    The result should be a line with the maximum and minimum of the table value and the County grouped by table, not the max and min of each group! -J' hope you understand my question?

    Is this possible in a SQL-select?

    Thank you very much

    Best regards

    Heidi

    Hi, Heidi,.

    HeidiWeber wrote:

    Hello

    I want the max, min and the meter of a table that is grouped by a column

    I need a combination of these two selects:

    1. Select
    2. MAXVALUE, Max (COUNTRY_S),
    3. min (COUNTRY_S) MINVALUE
    4. Of
    5. tab_Country
    1. Select
    2. Count (*)
    3. Of
    4. (select the COUNTRY_TXT of the COUNTRY_TXT tab_Country group);

    The result should be a line with the maximum and minimum of the table value and the County grouped by table, not the max and min of each group! -J' hope you understand my question?

    Is this possible in a SQL-select?

    Thank you very much

    Best regards

    Heidi

    It is not clear what you want.  Maybe

    SELECT MAX (country_s) AS max_country_s

    MIN (country_s) AS min_country_s

    COUNT (DISTINCT country_txt) AS count_country_txt

    OF tab_country

    ;

    I hope that answers your question.
    If not, post a small example of data (CREATE TABLE and only relevant columns, INSERT statements) for all of the tables involved and the results desired from these data.
    Explain, using specific examples, how you get these results from these data.
    Always say what version of Oracle you are using (for example, 11.2.0.2.0).

    See the FAQ forum: https://forums.oracle.com/message/9362002

  • Using the function count with grouped records

    Hi all

    This seems like it should be very easy, but I still have to find a simple way to do it.

    Suppose I want to count the possibilities which are grouped by Sales Rep at run time I filter this list with a parameter for sales stage and created date.
    I've simplified this greatly, but here's what my setup looks like now:

    Sales representative*-Count* _
    <? for-each-group: opportunity [SalesStage = param1 and creation > param2]; /SalesRep? >
    <? SalesRep? >-<? count (current - group (available))? >
    <? end for each group -? >
    _ Total

    The only solution I have to get my grand total so far is to create a variable and permanently keep a total that I will then display in the Total column. It all works, it seems that there should be an easier way, want to do a simple count (Id) for a total general. But given that the Total amount will appear after the end of each group-, I lose the filter that has been applied to the group so that the count is not valid.

    Ideas of the experts?
    Thank you!

    To get the total general
    use

    param2]/Id)?>
    

    Since you have not mentioned the complete xml code, I assumed, as the root.
    If this isn't the case, put the full path from the root.

    If you give some xml examples and explain the output you want, we can fix it immediately.

    go through these too... something can be drawn from here.
    http://winrichman.blogspot.com/search/label/summation%20In%20BIP
    http://winrichman.blogspot.com/search/label/BIP%20Vertical%20sum

  • SQL count (*) with Group of

    Hello

    I need help to fix this SQL.

    Fields in the table are like that.
    ID(PK)
    user_id
    user_name
    login_time(timestamp)
    Basically I want the values of user_id, user_name, last time the logged-in user and total number of times the user
    select  distinct user_id , user_name, login_date from USER_LOGIN
    where login_date in (select max(login_date) from USER_LOGIN group by user_id) 
    the above query is to give the result set with user_id, user_name, last time that the user logged on, but how can I include count (*) Group of user_id in the sql above
    select  distinct user_id , user_name, login_date, count(*) from USER_LOGIN
    where login_date in (select max(login_date) from USER_LOGIN group by user_id)  group by user_id 
    the sql above does not work.

    can you help me to get the number of records by user_id group.

    Thank you
    SK

    Hello

    Looks like you want something like this:

    SELECT       user_id
    ,       user_name
    ,       MAX (login_time)     AS last_login_time
    ,       COUNT (*)          AS total_rows
    FROM       user_login
    GROUP BY  user_id
    ,            user_name
    ;
    

    This assumes that user_login is off standard (like him are often seen), such that every row of the same user_id will also have the same user_name.

    I hope that this answers your question.
    If not, post a small example of data (CREATE TABLE and INSERT statements) and the results desired from these data.

  • Group of and outer joins

    Hello

    Some code someone else created under.

    Group an in it and expected this group to 1 row as 2 lines in the table of titles titles_x_ref, but values in the group by the same clause.

    When run the query below returns 2 rows but the columns in the colum group all of the same value.

    Null value in two lines as well de.niss_ean.

    What Miss me?

    Using oracle 11.2.0.3

    {code}

    Select nvl(tx.new_branch_code,'BRA777') new_branch - bx.new_branch

    min (BRIS_ISSUE_DAY)

    min (BRIS_ISSUE_WEEK)

    BRIS_ISSUE_YEAR

    min (nvl (tx.new_title_code, bris_title_code)) BRIS_TITLE_CODE

    min (BRIS_COST_PRICE)

    min (BRIS_COVER_MOUNT_FLAG)

    min (BRIS_TERMS_OF_SALE)

    , coalesce (de.new_niss_ean, nvl2 (tx.new_title_code, t.titl_issue_frequency: lpad (tx.new_title_code, 6, '0'): substr (bris_issue_year, 3, 2) | lpad (bris_issue_week, 2, '0') |)) BRIS_ISSUE_DAY | ((' 01', i.bris_ean)) bris_ean

    min (BRIS_INVOICE_DATE)

    min (BRIS_BAR_CODE)

    min (BRIS_OFFICIAL_ON_SALE_DATE)

    min (BRIS_KEEP)

    min (BRIS_VAT_CODE_CODE)

    min (BRIS_REFERENCE)

    min (BRIS_RECALL_DATE)

    min (BRIS_ORDER_BY_DATE)

    min (BRIS_ON_SALE_DATE)

    min (BRIS_CLAIM_END_DATE)

    min (BRIS_HANDLING_UNIT)

    min (BRIS_HANDLING_ALLOWANCE)

    min (BRIS_COVER_MOUNT_PRICE)

    min (BRIS_CLAIM_START_DATE)

    min (BRIS_NAPIER_REALLOC_FLAG)

    min (BRIS_COVER_MOUNT_VAT_CODE)

    min (BRIS_SUPPLEMENTS)

    min (BRIS_LAST_CLOSED_TITLE_CODE)

    min (BRIS_PUBLISHER_REFERENCE)

    min (BRIS_DELETE_FLAG)

    , min (coalesce (de.new_niss_ean, nvl2 (tx.new_title_code, t.titl_issue_frequency: lpad (tx.new_title_code, 6, '0'): substr (bris_issue_year, 3, 2) | lpad (bris_issue_week, 2, '0') |))) BRIS_ISSUE_DAY | (((' 01', i.bris_ean))) BRIS_LINK_EAN

    min (nvl (BRIS_LINK_ISSUE_YEAR, bris_issue_year))

    min (BRIS_LINK_RELIABILITY)

    min (BRIS_NORMALISATION_RUN)

    min (BRIS_YEAR_OF_PUBLICATION)

    min (BRIS_DAILY_COLLECTION_FLAG)

    sum (BRIS_TRADE_COUNTER_STOCK)

    sum (BRIS_STOCK_TRANSFERS)

    min (BRIS_TITLE_SOR_ALLOW_TYPE)

    min (BRIS_TITLE_SOR_ALLOWANCE)

    min (BRIS_ISSUE_STATUS)

    sum (BRIS_CREDITS_CLAIMED_ELEC)

    sum (BRIS_CREDITS_CLAIMED_MAN)

    sum (BRIS_MANAGERS_CREDITS)

    branch_issues I have

    Join titles t

    on i.bris_title_code = t.titl_code

    titles_x_ref left join tx

    on i.bris_title_code = tx.title_code

    from dup_eans_x_ref left join

    on de.niss_ean = i.bris_ean

    and de.niss_issue_year = i.bris_issue_year

    and de.niss_issue_week = i.bris_issue_week

    and de.niss_issue_day = i.bris_issue_day

    and de.new_title_code = tx.new_title_code

    AND i.bris_branch_code in ('BRA888')

    Group of de.new_niss_ean, nvl(tx.new_branch_code,'BRA777'), t.titl_issue_frequency, tx.new_title_code, bris_issue_year, bris_issue_week, BRIS_ISSUE_DAY, i.bris_ean, BRIS_ISSUE_YEAR

    {code}

    Hello

    Thank you solved my particular problem.

    Group by is behaving as expected, but on reason of inspection more close return 2 rows was 1 of the band sin value by clause having value of differenet between the lines, where the 2 rows.

  • bad value COUNT with GROUP OF ROLLUP

    Hi all

    I'm using GROUP BY ROLLUP for the result in the below format. However the sum obtained by the query in my totals at the end lines is not the correct value. It should be 124. I am not able to understand what could be the reason for this. Help, please.
    Query:
    SELECT decode(grouping(ACCTNUM),'1','Totals', ACCTNUM) "Client",COUNT(DISTINCT Rpt.UserId) 
    "Total Users Logged In" FROM VW_XXX_SUMMARYREPORTDATA
     Rpt WHERE Rpt.LoginDate BETWEEN TO_DATE('01-AUG-2011') and TO_DATE('31-AUG-2011')
     GROUP BY ROLLUP (Rpt.ACCTNUM) 
    HAVING (Rpt.ACCTNUM IS NULL OR Rpt.ACCTNUM = 'Totals') OR Rpt.ACCTNUM IS NOT NULL    ;
    Result:
    1XXX013000     1
    1XXX018000     1
    1XXX015800     1
    9XXX000600     1
    9XXX000700     23
    9XXX004400     1
    9XXX004900     1
    9XXX012700     1
    9XXX016400     1
    9XXX019800     1
    9XXX020000     2
    9XXX029300     5
    9XXX000100     2
    9XXX000100     1
    9XXX003200     1
    9XXX000100     1
    9XXX000200     3
    9XXX001000     11
    9XXX001900     50
    9XXX002600     1
    9XXX000800     3
    9XXX001000     1
    9XXX000100     11
    Totals          122

    Consider this:

    SQL> select
      2  e.deptno, e.job, e.ename
      3  from scott.emp e
      4  order by
      5  e.deptno, e.job, e.ename
      6  ;
    
        DEPTNO JOB       ENAME
    ---------- --------- ----------
            10 CLERK     MILLER
            10 MANAGER   CLARK
            10 PRESIDENT KING
            20 ANALYST   FORD
            20 ANALYST   SCOTT
            20 CLERK     ADAMS
            20 CLERK     SMITH
            20 MANAGER   JONES
            30 CLERK     JAMES
            30 MANAGER   BLAKE
            30 SALESMAN  ALLEN
            30 SALESMAN  MARTIN
            30 SALESMAN  TURNER
            30 SALESMAN  WARD
    
    14 rows selected.
    
    SQL> select
      2  decode(grouping(e.deptno),1,'Total',e.deptno) dept,
      3  count(distinct e.job) cnt
      4  from scott.emp e
      5  group by rollup(
      6  e.deptno
      7  )
      8  order by
      9  grouping(e.deptno),
     10  e.deptno
     11  ;
    
    DEPT                                            CNT
    ---------------------------------------- ----------
    10                                                3
    20                                                3
    30                                                3
    Total                                             5
    

    There are three different names in each of the departments. But in total, there are only 5 different.

    You can get the total that you want using analytical functions:

    SQL> select
      2  e.deptno,
      3  count(distinct e.job) cnt,
      4  sum(count(distinct e.job)) over () totalcnt
      5  from scott.emp e
      6  group by
      7  e.deptno
      8  order by
      9  e.deptno
     10  ;
    
        DEPTNO        CNT   TOTALCNT
    ---------- ---------- ----------
            10          3          9
            20          3          9
            30          3          9
    

    But this gives you the total in a column, not a line.
    If you need as a line, you might be able to do something like this:

    SQL> select
      2  decode(grouping(s.deptno),1,'Total',s.deptno) dept,
      3  sum(s.cnt) cnt
      4  from (
      5     select
      6     e.deptno,
      7     count(distinct e.job) cnt
      8     from scott.emp e
      9     group by
     10     e.deptno
     11  ) s
     12  group by rollup(
     13  s.deptno
     14  )
     15  order by
     16  grouping(s.deptno),
     17  s.deptno
     18  ;
    
    DEPT                                            CNT
    ---------------------------------------- ----------
    10                                                3
    20                                                3
    30                                                3
    Total                                             9
    

    In the Interior, you select count (distinct but without rollup. Then an external selection where you do a sum for rollup your meter internal.

    Maybe an idea for you - maybe your solution two columns would work OK ;-)

  • How to avoid the stalemate between count with all and several calls from an EP getBackingMapEntry...

    We have a processor input, which initiates a transaction lite by calling getBackingMapEntry on several similar entries.  The same cache distributed these similar entries of accommodation also simultaneously services count with all call and we often a blocking scenario comes from the fact that the count with all call trying to access/key in the same cache block - but in a different sequence - date entry processor accessed (for example, the European Parliament access to similar input 1 then similar input 2 while the count with all attempts to block the same but entries in sequence 2) then the entry 1).  The obvious solution is to change the sequence entry processor accesses these entries to match the sequence used by the count with all operation, but we do not know what sequence consistency applies to operations NamedCache.getAll.  Anyone know?  We believe that we excluded (e.g., consistency does not consider wrt the count with all access sequence) the following:

    • The sequence in an ordered collection of keys such as a list that is passed as an argument to count with all operation
    • The hash code of the key value
    • Any use of Comparable on the keys

    We use 3.7.1 consistency where it varies between 3.7.1 and 12 c.

    Thanks in advance.

    We've thought of it (always happens shortly after the publication on a support site).  If anyone is curious, it seems that the binary class implements Comparable and that consistency sorts instance converted by binary key and access the Scriptures based on this order sorted.  If the entry processor converts the keys to binary instances, sorts and accessed in sorted order, there is no potential blocking (of our observations, at least).  It would be nice if Oracle should document this that people better understand how to write safe concurrent code.

  • Access-list group policy and IPSec tunnel.

    I have an IPSec Site to Site VPN tunnel that ends on the external interface of the firewall. My ftp server is located in a demilitarized zone. The DMZ has an access list applied to the interface. When I created the Group of the tunnel for the Site to Site, I create a group of tunnel with group policy and manage the policy with filters. The filter looks like an access list. Are the filter and the ACL interface work together? The one replace the other? How they work together.

    Once traffic ipsec, acl interface is not used until you have enabled "sysopt conn allowed-/ ipsec vpn. When you add a vpn-filter, it is what will filter the ipsec traffic.

  • Group by and count on the same table

    Hello

    DB version: 11.2.0.3

    Tried to SQL:

    create table log1 (identification number, status varchar2 (15) date of insert1);

    insert into log1 values (1, 'SUCCESS', sysdate-1);

    insert into log1 values (2, 'SUCCESS', sysdate-2);

    insert into log1 values (3, 'FAIL', sysdate-1);

    insert into log1 values (4, 'FAIL', sysdate-2);

    insert into log1 values (5, 'FAIL', sysdate-1);

    insert into log1 values (6, 'ERROR', sysdate-1);

    insert into log1 values (7, 'ERROR', sysdate-1);

    insert into log1 values (8, 'ERROR', sysdate-1);

    insert into log1 values (9, 'ERROR', sysdate-1);

    WITH AS TBL1

    (SELECT THE STATE OF 'SUCCESS' OF THE DUAL UNION ALL

    SELECT "FAIL" STATUS OF THE DUAL UNION ALL

    SELECT 'PENDING' STATUS OF DOUBLE)

    SELECT NVL (TBL1. STATUS OF STATE, 'TOTAL'), COUNT (LOG1.ID)

    FROM TBL1 JOIN LOG1 FULL EXTERNAL

    ON LOG1. STATUS = TBL1. STATUS

    GROUP BY ROLLUP (TBL1. STATUS)

    STATUSCOUNT (LOG1.ID)
    IN CASE OF FAILURE3
    SUCCESS2
    PENDING0
    TOTAL (*)4
    TOTAL9

    t need only State of SUCCESS, FAILURE, WAITING. and NUMBER of global ID omit the rest of type status as ERROR, etc. EXECUTION in the result set.

    I don't need the TOTAL (*) of the above result set. Which is total (Error).

    Please tell us how the query above can be changed to produce the result to wait.

    Thank you

    Hello

    So, you want to see all the tbl1 lines, if they have a match in log1, and for the grand total of lines, you must count the log1 lines if they have a match with tbl1.  This looks like a job for a FULL OUTER JOIN:

    SELECT t.status

    EARL of (l.status) AS cnt

    OF log1 l

    FULL OUTER JOIN tbl1 t WE t.status = l.status

    GROUP OF ROLLUP (t.status)

    HAVING t.status IS NOT NULL

    OR of a GROUP (t.status) = 1

    ;

  • I can't send messages, whatsapp for group discussions and I think that is the update of ios software that is not compatible with my iphone 5 s

    I can't send messages, whatsapp for group discussions and I feel really lost. my friends can't receive my message and I am only able to send individual text messages. I think that its because of the version update of ios which is not compatible with my iphone 5 s. is a solution to this problem?

    I have the same problem, started this morning.

    I'm in iOS 9.1, using the iPhone 6. Don't know what happened, but I have also opened a disturbance with Whatsapp support as well.

    A focus group work, group chat messages cannot be delivered. Individual messages are working properly. I tried to remove and reinstall the application, remove the discussion group and recreate, all has not helped.

    A lack of ideas.

  • Using a counter with FiniteSamps and one with ContSamps

    I am using 2 counters on the NI USB-6229 (or USB-6259), case where a counter is implemented for FiniteSamps and another for ContSamps. I have the following MeasurementStudio code:

    ErrChk DAQmxCreateCOPulseChanTicks(hCnt0, "Dev1/ctr0", "", "20MHzTimebase", DAQmx_Val_Low, 0, 400, 400);
    ErrChk DAQmxCfgImplicitTiming(hCnt0, DAQmx_Val_FiniteSamps, 100);

    ErrChk DAQmxStartTask (hCnt0);

    ErrChk DAQmxCreateCOPulseChanTicks(hCnt1, "Dev1/ctr1", "", "20MHzTimebase", DAQmx_Val_Low, 0, 400, 400);

    ErrChk DAQmxCfgImplicitTiming(hCnt1, DAQmx_Val_ContSamps, 2);

    ErrChk DAQmxStartTask (hCnt1);

    When I run it, I get an error-50103 "the resource specified is reserved". If I change the FiniteSamps to ContSamps on the first counter, everything works fine.

    If I use only one counter with FiniteSamps, everything works very well.

    Is this a bug in DAQmx or the use of double counter on M Series devices is limited to ContSamps?

    VIC

    Hey Vic,

    It is actually planned on a device of the M series.  Here's a time diagram of the M Series user manual which might make this a little clearer:

    The device uses actually one counter for the other door so the result is a generation of finite pulse.  If you can provide the door from another source, you can configure a generation of continuous pulses on two counters and their door (DAQmx calls it a "relaxing break") of this external signal.

    You can also look at the use of the digital I/o correlated to generate impulses over multiple (up to 32 lines on your 6229 and 6259).  You could use one of the counters to generate a time base for digital lines and build the waveform as a result.

    One thing to note is that our new X series cards can generate a generation of impulses finished on a "single" counter (it was actually a paired internal counter that allows this).  There are four accessible counters by the user on the X series devices, which means you could generate four pulse trains finished.

    Best regards

    John

  • How Oracle performs with 'COUNT' when to go with "GROUP BY"?

    Hello

    I am aware that count return 0 there is still no data found a 'WHERE' clause

    However, when he goes with "GROUP BY", he goes to the "EXCEPTION block".

    declare

    a number: = 0;

    Start

    Select COUNT (1) in the doubles where 1 = 2

    Group 1;

    dbms_output.put_line ('a =' | a);

    exception

    While OTHERS then

    dbms_output.put_line ('Exception =' |) SQLERRM);

    end;

    /

    output:

    Exception = ORA-01403: no data found

    Why is Oracle jumps in the 'EXCEPTION' block when "GROUP BY" is added?

    Why may not behave in the same way as it did without "GROUP BY"?

    Please help me understand.

    Hello

    11fdb98c-D100-4baa-8eee-c00c9f7303bc wrote:

    Hello

    I am aware that count return 0 there is still no data found a 'WHERE' clause

    ...

    This is not true.  A query using COUNTY won't necessarily produce anything.  The query you posted is an example:

    Select COUNT (1) in DOUBLE where 1 = 2

    Group 1;

    does not 0; It produces nothing at all.

    Why is Oracle jumps in the 'EXCEPTION' block when "GROUP BY" is added?

    SELECT... INTO will trigger an error ("no data found" or "too many rows"), except if the query produces exactly 1 row.

    Why may not behave in the same way as it did without "GROUP BY"?

    GROUP BY means that the query will produce 1 row of output for each group (after the WHERE clause has been applied).

    A query using an aggregate (such as COUNT) without a GROUP BY clause function will always produce exactly 1 row.  (If you have a HAVING clause, then it can remove this row from the result set.)

    What you trying to do?

    Why do you use a GROUP BY clause in this case?  If you want a query which behaves as if it doesn't have a GROUP BY clause, then do not add a GROUP BY clause.

  • Hello, I'am getting a little crazy because Group/scrolling text does not. I looked at several videos of Adobe evangelists now to make a scrolling text or group.  I ' am in collaboration with InDesign CC and it looks like my 'Overlay tools' do not work.  W

    Hello, I'am getting a little crazy because Group/scrolling text does not. I looked at several videos of Adobe evangelists now to make a scrolling text or group.  I ' am in collaboration with InDesign CC and it looks like my 'Overlay tools' do not work.  When I see the preview, I can't scroll but only to select text. My steps are simple: I put my text in a selected area. PLACE IN > that select > Folio overlays > floating framework. It does not scroll. What I've done wrong?

    Schermafbeelding 2016-02-14 om 14.57.41.pngSchermafbeelding 2016-02-14 om 14.56.38.png

    DAT danced some overlays avenues (!) reviews Regolamento zijn voor DPS books, due noch het SWF-noch het ePUB-voorvertoningsvenster laten zien said. Het due zal ook niet werken in bv. en PDF een in een ePUB avenues in FXL - epub puts extra een saw CSS code. DHS avenues from DPS DPS 2015 (article) maar voorvertonen zal het niet anyway (folio).

    Werk I niet met DPS (peper, peperduur!) vergeet dan het hele Overlay window DHS.

  • How can I create a button with alpha background and text? When the alpha element group influence all elements, but the text remains 100%

    When the alpha element group influence all elements, but the text remains 100%
    I try with the Group of elements and no group, but include elements in the 'State' of the widget library button. Nothing!

    Explain dough my problem and please excuse my English...
    I need to have a transparent background with text (name and job) at the start. When I rollon with the cursor of the mouse on the button background should take a color with 60% alpha, required text full color stay, but if I group or insert State of the item on Rollo button mouse everything take alpha 60%

    I need to regroup or insert in elements went State button because if they are ungruoped to mouse Rollo on bottom its all is ok, but when the mouse passes over the background of text out you of you initial state.

    Can someone help me please?

    I think I know your problem - are you using the opacity of the 'effects' rather than opacity to "fill" - one of the effects will affect the entire element rather than just the rectangle.

    Use this opacity

    not this one

  • Problem with grouping and SUM

    .

    Hello

    Whenever you have a problem, post a small example of data (CREATE TABLE and INSERT, only relevant columns instructions) for all the tables involved and the results desired from these data.
    Explain, using specific examples, how you get these results from these data.

    Looks like you have a fan trap , where exist one-to-many relationships between tables, so that you are adding contains multiple copies of the same row of a table. If this is what is happening, then perform the GROUP BY and the AMOUNT on the table before joining. Without seeing some examples of data and the results desired from this data, I can't be sure if this is the problem, or any more tell you in detail how to fix it.

Maybe you are looking for