Reports - the values of the checkbox and the conditional column visibility

Although I use Oracle databases for many years, I must admit that I am rather new to APEX. I build a first prototype project to convince our project managers and managers of the usefulness of the product for future projects (as for interfaces Visual of the database where the focus is on forms and reports, it is often quicker and cheaper to build an APEX application instead of a webapp in Java or c# full blown).

I have a few problems however.

I'll start with a quick description. I have the following structures of parent/child:

Provinces > cities > Intersections > earrings > detections in loop.

Basically, I want to do a report on detections of loop. Now, as we have thousands of detections someday, I did kind of a mining structure down. First, you choose your province, then the city, then the intersection and finally the loop. Do not use the lists to make the selection. Instead, I did a (classic) report on each side because it allows me to give detailed information for each part. In each report, I made a link on the identifier. For example, when I select a province (by clicking on the link), I pass the identifier of the province of cities report and use it in the query to restrict my report to these cities in the province. I repeat these step for different parts, which, in the end, gives me the selected loop loop detections. The good news is that all this works very well. However, the person who will use this application made a suggestion and asked if it would be possible to select different loops and thus get the detections for several loops (the rest of the application remains the same). However, this means that I can't use the link in the column more. Now, I thought in the sense of a checkbox control. The link to the column is still there, but the user would also have the possibility to select several items in the report. I have managad to add a checkbox control to the report, associated with the loop identifier column. It's not really hard. I can't understand, however, how I can pass the identifiers found in the next report (detections for the selected loops) and use it in the report's underlying query. The problem is, I do not know how to pass the values checked to the next page and how to use these values in the request of the State of this page. I guess it must be possible, but I couldn't figure out how. I tried to play with APEX_APPLICATION. G_Fxx and others. Don't forget I'm a newbie and this seems to be more advanced features.

I downloaded the images from the 2 on the pages of the report to illustrate:

http://img96.imageshack.us/img96/1497/apex01.jpg

http://img140.imageshack.us/img140/9868/apex02.jpg

A second point that's bothering me is this. In the loop detection report, I show a link column (I chose an icon instead of the value of the column) for each line. I also have a column that displays the number of detections for the given line (and one day). Now, for some lines, there is no detection that has emerged. Therefore, there is no point in the selection of this loop, because the result will be a blank report. However, I still want to show the loop in the loop selection report, as it is always present (it is not as if he suddenly disappeared). Of course, no big problem and most users probably have sufficient intelligence to understand this. However, it would be nice if I could do the icon (link colum) visible only for these loops with detections, or in other words, for these recordings in which number_of_detections (COUNTY of underlying column) is greater than 0. I couldn't find a way to do it either. The conditional display for a column option didn't really offer me a solution here.

Before I forget, I use APEX 4.0.1 on an Oracle XE database.

Any advice or suggestions would be welcome! :)

Thank you.

Erwin

Hello

You mean something as in this example
https://Apex.Oracle.com/pls/OTN/f?p=40323:55

You can store the values checked into collection and then use it in another report where clause

See for example this post for how you can memorize checked lines to the collection
Re: Need help with APEX_Collection

In the sample report DEPT query is

SELECT
  CASE WHEN EXISTS(SELECT 1 FROM emp e WHERE e.deptno = d.deptno) THEN
    APEX_ITEM.CHECKBOX(1,c.c002,'onclick="saveDeptChk(this,'||c.seq_id||')"','true')
  END AS row_selector,
  c.c002 AS checked,
  d.DEPTNO,
  d.DNAME,
  d.LOC
FROM dept d,
  apex_collections c
WHERE c.collection_name = 'DEPT_CHK_COLLECTION'
  AND d.deptno = c.c001

And the report on EMP

SELECT e.EMPNO,
  e.ENAME,
  e.JOB,
  e.MGR,
  e.HIREDATE,
  e.SAL,
  e.COMM,
  e.DEPTNO
FROM emp e,
  apex_collections c
WHERE c.collection_name = 'DEPT_CHK_COLLECTION'
  AND c.c002 = 'true'
  AND e.deptno = c.c001

Kind regards
Jari

Tags: Database

Similar Questions

  • Link of the conditional column in classic report

    I am tring to display a link in a column only if another column has a value in the same row. However, the column, I try to display conditionally must call a javascript function when the click on (it pops up a modal window) and it must include an image.

    My report request is

    Select

    AC. C001,

    AC. C015

    apex_util.prepare_url ('f? p = & APP_ID.:4: & SESSION.: &. DEBUG: P4_PARCEL_ID:' | ac.c001) LINK_URL,-my link conditional image onclick

    Of apex_collections ac

    WHERE collection_name =: P3_COLLECTION_NAME

    Report of the attribute COLUMN BINDING settings are:

    LINK ATTRIBUTE: < img src = "" #WORKSPACE_IMAGES #fff_report.png "/ >"

    URL: javascript:mymodal('#LINK_URL#','View_Comments')

    It works, but it shows the picture report.png on each line of the report. I need to combine the link attribute and the url in the statement select with a CASE to view statement conditionally cela but I can't get the good constructed string... can help any one?

    I'm looking for

    SELECT

    case if ac.c015 is not null then

    apex_util.prepare_url ('f? p = & APP_ID.:4: & SESSION.: &. DEBUG: P4_PARCEL_ID:' | ac.c001) LINK_URL (add on the image and appeal of javascript...?)

    on the other

    null

    end LINK_URL

    Of...

    Thank you

    Andy

    Hi Andy,.

    It works for me, it will help to prepare the good instruction box with pictures and without images

    Select 'Remove from cart' of the double

    -Sunil Bhatia

  • Query Oracle - to display the line in the Condition column in function.

    Hi all

    I have data like below.

    ID of ranking name Desc

    ========================

    1             ID1          A              AA1

    2             ID1          A              AA2

    1             ID1          B              BB1

    2             ID1          B              BB2

    1             ID2          C              CC1

    2             ID2          C             CC2

    1             ID2          D             DD1

    2             ID2          D             DD2

    I need the query to retrieve the data as below.

    ID of ranking Name1 Name2

    ==================================

    ID1 1 A - AA1 B - BB1

    1 ID2 CC1 - C D - DD1

    That is to say) Condition: Grade must be 1.

    Thank you and best regards,

    Stéphane.

    with

    DATA_TABLE as

    (select 1 Rank, ID 'ID1', 'A' name, Descr "AA1" of union double all the)

    Select 2, 'ID1', 'One ', ' AA2' Union double all the

    Select 0, 'ID1', 'B', "BB1" dual union all

    Select 3, 'ID1', 'B', 'BB2' from dual union all

    Select 2, 'ID2', 'C', 'CC1' from dual union all

    Select 3, 'ID2', 'C', 'CC2' from dual union all

    Select 1, 'ID2', would be ', 'DD1"dual union all

    Select 3, 'ID2', would be ', 'DD2' from dual

    )

    SELECT id, Name1, name2

    go (select id,

    name_desc_rank,

    ROW_NUMBER() over (partition by order of identification by name_desc_rank) rn

    go (select grade,

    ID,

    name | '-' || descr | '-' || TO_CHAR (Rank) name_desc_rank,

    ROW_NUMBER() over (partition by order of rank identification) rn

    of data_table

    )

    where rn<=>

    )

    Pivot (Max (name_desc_rank) of rn (1 as name1, name2 2))

    ID NAME1 NAME2
    ID1 A-1 AA1 B-BB1-0
    ID2 C CC1-2 D DD1-1

    Concerning

    Etbin

  • Apply the Condition to the content of paragraph

    Hello

    I want to apply a condition to a paragraph. In some cases, I only want to apply the condition until paragraph return, but does not include the return. Here's a function that works for entire paragraphs, but I'm not sure what to use when I want to let the unconditional return. Any help would be appreciated.

    function applyCondition (pgf, condName, includeReturn, doc) {
        
        condName = String(condName);
        var condFmt = doc.conditions.itemByName(condName) ;
        if (condFmt.isValid === false) {
            // If the condition does not exist, create it.
            doc.conditions.add ({name: condName});
        }
    
        // Make sure the condition is visible.
        condFmt.visible = true;
        
        if (includeReturn === true) {
            // Apply the condition to the entire paragraph.
            pgf.applyConditions (condFmt, true);
        } else {
            // Apply the condition to the paragraph up to the return.
        }
    }
    

    Rick

    Hi Rick

    I think there must be a myriad of solutions for that one.

    Probably the simplest is:

    pgf.characters.itemByRange(0,-2).applyConditions (condFmt, true);
    

    That's assuming that "TFP" is a reference to a paragraph of the object.

    Concerning

    Trevor

  • Resize the system checkbox and radio buttons system

    Is it possible to resize the system checkbox and radio buttons system. If we right click on one of them and go to properties, size controls are disabled. I wonder if it's feasible.

    Also I noticed that I could add the new radio buttons to do a right-click and choosing Add new button. Is it possible to achieve this programattically.

    Kind regards

    Austin

    AustinCann wrote:

    Is it possible to resize the system checkbox and radio buttons system. If we right click on one of them and go to properties, size controls are disabled. I wonder if it's feasible.

    As mentioned, system controls cannot be customized, because they depend on the windows theme. However, here are some Boolean values, so all you need to do is use an ordinary Boolean value and import the graphics that you want in the case of true and false. They can easily be made to look like an oversized check box. More details, especially about radio buttons can be found here.

    AustinCann wrote:

    Also I noticed that I could add the new radio buttons to do a right-click and choosing Add new button. Is it possible to achieve this programattically.

    You could probably do it in edit mode programmatically by using scripts. You can't do it at run time.

    To fill a RadioButton with new Boolean values, you can simply drag the new values Boolean inside or even shift-do drag an item to create a copy of it. Don't forget to change the labels to something intuitive.

  • Using the page as a condition for interactive report item value

    Hello. I add a button named edit in one of the interactive report column. This button should be displayed under certain conditions. Conditions are 1) If the user is Mencis and 2) value of the page called P2_DUMMY is 2. The value of P2_DUMMY is to 2 when a button is clicked. I defined a dynamic action for this. The problem is that I don't know what the condition of being added to the interactive report query.


    I tried

    CASE WHEN: APP_USER IN ('Mencis"). WHEN BOX: P10_DUMMY = 2 THEN ' < button type = "button" class = "button-default"; ">

    < span > edit </span > < / button > ' END I just get errors.

    If I just put the condition as

    CASE WHEN: APP_USER IN ('Mencis") THEN ' < button type ="button"class ="button-default "; "> < span > edit </span > < / button > ' END

    button is displayed in the report. If I add the second condition, all I get is error. I don't know how Add an element value of the page as one of the interactive report conditions. Please help me on this.

    Mencis Joe wrote:

    Hello. I add a button named edit in one of the interactive report column. This button should be displayed under certain conditions. The conditions are 1) if the user is Mencis and 2) value of the page called P2_DUMMY is 2. The value of P2_DUMMY is set to 2, when a button is clicked. I defined a dynamic action for this. The problem is that I don't know what the condition to be added to the interactive report query.

    I tried

    CASE WHEN: APP_USER IN ('Mencis"). WHEN BOX: P10_DUMMY = 2 THEN '' END I just get errors.

    If I just put the condition as

    CASE WHEN: APP_USER end of '' ('Mencis") THEN

    the button is displayed in the report. If I add the second condition, all I get is error. I don't know how to add a value to the page element as one of the interactive report conditions. Please help me on this.

    Combine the predicates in the CASE expression by using an AND condition:

    case
      when    :app_user = 'Mencis'
          and :p10_dummy = 2
      then
        ''
    end
    

    Hardcode a condition like the :app_user = 'Mencis' is likely to prove problematic for all sorts of reasons, not least including the value of APP_USER is uppercase by default, unless otherwise during authentication.

    Note that the semicolon and extra double quotes in are not valid.

  • How to pass the value of the custom column that is created in response to his report in detail

    Hello

    I have a custom column (in the former below: "Aging") which is based on quick date and arrived at the bottom of aging buckets. I have a report of drilling of the "Balance" column When I click on 100/200/125 correspondent value 'Aging' should be passed to the detail report.

    The agingBalance
    0-30 days100
    31 to 60 days200
    61-90 days125

    Tried to put the 'Aging' formula in the detailed report and that it "is invited" - no luck.

    Created the logic in SPR with a query variable (to have a quick date) only option to solve this problem? Any suggestions?

    Thanks in advance and a very happy new year.

    Finally, we used a query variable and this managed in RPD.

  • What are the possible values for a checkbox?

    I am filling a PDF with an asp.net web form. I get the filled text ok boxes, but I can't set the checkboxes. I'm testing to see if a web form checkbox is checked. If this is the case, I tried to put the value of pdf checkbox on 'on '. But this does not seem fair.

    Looks like my asp.net code:

    If CheckBox1.Checked then

    AF. SetField ("pdfbox1", "On")

    End If

    Any suggestions?

    Thank you

    The value is the value in the option "Export value", when the form is created. You can use the Acrobat JavaScript "exportValues" property to get the array of values to the same named boxes. And if you know the "trick" of the box, you can use the method "isBoxChecked" to check if a given 'widget' is checked. More information is contained in the Acrobat JavaScript documentation.

  • FaceTime will not open on my Macbook pro (el capitan).  Message: "FaceTime close unexpectedly.  Click Reopen to reopen the application. Click report to display more detailed information and send a report to Apple. "Please help me.

    FaceTime will not open on my Macbook pro (el capitan).  Message: "FaceTime close unexpectedly.  Click Reopen to reopen the application. Click report to display more detailed information and send a report to Apple. "Please help me.

    Please launch the Console application in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    Step 1

    For this step, the title of the Console window should be all Messages. If it isn't, select

    SYSTEM LOG QUERIES ▹ all Messages

    in the list of logs on the left. If you don't see this list, select

    List of newspapers seen ▹ display

    in the menu at the top of the screen bar.

    In the upper right corner of the Console window, there is a search box to filter. Enter the name of the application crashed or process. For example, if Safari has crashed, you would enter "Safari" (without the quotes).

    Each message in the journal begins with the date and time when it was entered. Select the messages since the time of the last fall, as appropriate. Copy to the Clipboard by pressing Control-C key combination. Paste into a reply to this message by pressing command + V.

    The journal contains a large amount of information, almost everything that is not relevant to solve a particular problem. When you post a journal excerpt, be selective. A few dozen lines are almost always more than enough.

    Please don't dump blindly thousands of lines in the journal in this discussion.

    Please do not post screenshots of log messages - text poster.

    Some private information, such as your name, may appear in the log. Anonymize before posting.

    Step 2

    In the Console window, clear the search box, and then select

    DIAGNOSIS AND diagnostic USE information reports ▹ user

    (not diagnose them and use Messages) in the list of logs on the left. There is a disclosure triangle to the left of the list item. If the triangle is pointing to the right, click it so that it points downwards. You will see a list of reports of incidents. The name of each report begins with the name of the process and ends with ".crash". Select the most recent report on the process in question. The content of the report is displayed at right. Allows you to copy and paste to validate all of the content, text, not a screenshot.

    I know that the report is long, perhaps several hundred lines. Please report all this anyway. If the report is only a few lines, make sure that you have disabled the search box.

    If you don't see any report, but you know, he had an accident, you have chosen diagnostic and using the list of Log Messages. INFORMATION on the USE of DIAGNOSTIC AND choose instead.

    In the interest of privacy, I suggest that, before posting, you change the UUID ' anonymous, ' a long string of letters, numbers and dashes in the header of the report, if it is present (it cannot be). "

    Please do not post other types of diagnostic report - they are very long and rarely useful.

    When you post the journal excerpt or the accident report, you might see an error message on the web page: "you have included content in your post that is not allowed", or "the message contains invalid characters." It's a bug in the forum software. Thanks for posting the text on Pastebin, then post here a link to the page you created.

    If you have an account on Pastebin, please do not select private in exposure menu to paste on the page, because no one else that you will be able to see it.

  • Set the value of a checkbox in a column of a tree control

    Hello

    I couldn't ' find the feature set/get the value of a checkbox in a column of a tree control.

    Thank you for your help

    Bertrand

    Hi Bertrand, this discussion should help you in this task.

  • HELP Please: compare timestamps with excel and make the corresponding value in the next column

    Hello

    I have attached the program I did up to now and the txt file required by the program.

    I want to compare the timestamp given by me at the beginning of the program, and when it is true, I want to take the corresponding value of nearby and use for the calculation.

    I am able to compare the time but I do not know how to take the corresponding '0' or '1' value of the file.

    I'm a beginner to labview. It can be simple, but I couldn't understand it

    Kindly help.

    Thanks in advance

    Arun

    This?  If you get a match, find a true Boolean 1 d array and use the index of the element to get the data of the next column.

  • Automatically create checkboxes and adjust to the window

    Is there a way to automatically increase the number of checkboxes that appear in a dialog box for user input?

    That's what I'm trying to accomplish:

    • Read in an array of strings
    • Create check boxes depending on the size of the table and adapt to the window (similar to express vi)

    ThanksNAdvance

    FredFred

    You can make a custom context menu of vi, I would like to convert the string array an array of clucters where the cluster includes a checkbox and a string to double.  Then display the number of rows in the table = number of items.  Then, you can programmatically resize the window with nodes of property.

  • SQL query to display the sum of the values of each June and December

    Hello having problems of construction of a query to the list SQL query to display the sum of the values of each June and December each year.

    My Table;

    TABLE name: MONTH_TERM

    Fields with values:

    TERM_KEYMONTH_ACTUALMONTH_DATE
    8250001/11/2015 0:00
    8245001/12/2015 0:00
    8240501/01/2016 0:00
    8240001/02/2016 0:00
    8245001/03/2016 0:00
    8242501/04/2016 0:00
    8243501/05/2016 0:00
    8241006/01/2016 0:00
    8240901/07/2016 0:00
    8241501/08/2016 0:00
    8242009/01/2016 0:00
    8242210/01/2016 0:00
    8243611/01/2016 0:00
    8255601/12/2016 0:00
    8256801/01/2017 0:00
    8262402/01/2017 0:00

    What I would like to see in a query result:

    TERM_KEYMONTH_ACTUALMONTH_DATETotal of 6 months
    8250001/11/2015 0:00
    8245001/12/2015 0:00950
    8240501/01/2016 0:00
    8240001/02/2016 0:00
    8245001/03/2016 0:00
    8242501/04/2016 0:00
    8243501/05/2016 0:00
    8241006/01/2016 0:002525
    8240901/07/2016 0:00
    8241501/08/2016 0:00
    8242009/01/2016 0:00
    8242210/01/2016 0:00
    8243611/01/2016 0:00
    8255601/12/2016 0:002658
    8256801/01/2017 0:00
    8262402/01/2017 0:00

    ---

    Here's my query:

    Select

    "TERM_KEY,"

    "MONTH_ACTUAL,"

    to_char(MONTH_DATE,'MM/YYYY') MONTH_DATE,

    DEAL to_char (MONTH_DATE, 'MM')

    WHEN '06' THEN (SELECT SUM (MONTH_ACTUAL)

    OF MONTH_TERM

    WHERE the to_char (MONTH_DATE, 'MM') between 1 and 6

    AND term_key = 82)

    WHEN '12' THEN (SELECT SUM (MONTH_ACTUAL)

    OF MONTH_TERM

    WHERE the to_char (MONTH_DATE, 'MM') between 7 and 12

    AND term_key = 82)

    ELSE null

    END as SIX_MO_CUMM,

    of MONTH_TERM

    where term_key = 82

    It's my results:

    TERM_KEYMONTH_ACTUALMONTH_DATETotal of 6 months
    8250001/11/15 0:00
    8245001/12/15 0:003608
    8240501/01/16 0:00
    8240001/02/16 0:00
    8245001/03/16 0:00
    8242501/04/16 0:00
    8243501/05/16 0:00
    8241001/06/16 0:003717
    8240901/07/16 0:00
    8241501/08/16 0:00
    8242001/09/16 0:00
    8242210/01/16 0:00
    8243601/11/16 0:00
    8255601/12/16 0:003608
    8256801/01/17 0:00
    8262401/02/17 0:00

    Any ideas on how to fix would be great

    Select term_key,

    month_actual,

    month_date,

    case mod (to_char (month_date, 'mm'), 6)

    When 0 then sum (month_actual)

    During)

    term_key partition

    order of month_date

    between the previous month '5' interval and the current line

    )

    end '6 MONTHS in TOTAL'

    from tbl

    order of term_key,

    month_date

    /

    TERM_KEY MONTH_ACTUAL MONTH_DAT 6 MONTHS TOTAL
    ---------- ------------ --------- --------------
    82 500 NOVEMBER 1ST, 15TH
    82 450 1 DECEMBER 15 950
    82 405 1 JANUARY 16
    82 400 1 FEBRUARY 16
    82 450 1ST MARCH 16
    82 425 1ST APRIL 16
    82 435 1 MAY 16
    82 410 2525 1 JUNE 16
    82 409 1 JULY 16
    82 415 1ST AUGUST 16
    82 420 16 - SEP - 01

    TERM_KEY MONTH_ACTUAL MONTH_DAT 6 MONTHS TOTAL
    ---------- ------------ --------- --------------
    82 422 1 OCTOBER 16
    82-436 NOVEMBER 1, 16
    82 556 2658 1 DECEMBER 16
    82 568 1 JANUARY 17
    82 624 1 FEBRUARY 17

    16 selected lines.

    SQL >

    SY.

  • values based on the following logic 'values after the first values of two '_' and before last '_' values '.

    Hi all

    I need the values according to below 2logics in a single select query using instring and substring

    1 values based on the following logic 'values after the first values of two '_' and before last '_' values '.

    2 values based on the following logic 'values after the first values of two '_' and before last'-'values '.

    EXM:

    Entry: ABCD_EFGH_IJKLM - NOPQ_XYZ output: IJKLM - NOPQ

    Entry:. ABCD_EFGH_IJKLM - NOPQ output:IJKLM

    Thank you.

    Check the following

    WITH DATA1 AS

    (SELECT "ABCD_EFGH_IJKLM - NOPQ_XYZ" double val)

    UNION ALL

    SELECT 'ABCD_EFGH_IJKLM - NOPQ' double val

    )

    SELECT SUBSTR (VAL, INSTR(VAL,'_',1,2) + 1, DECODE (BIGGER (INSTR (VAL, '_',-1, 1), INSTR(VAL,'-',-1,1)), INSTR (VAL,'-', - 1, 1), LENGTH (VAL) + 1, INSTR (VAL, '_',-1, 1))-(INSTR (VAL, '_', 1, 2) + 1))

    OF DATA1;

    Concerning

    Salim

  • How to upgrade are the value of the column and the new column value created

    Hi all

    create the table xxc_temp

    as

    Select donnees_1 'AB103', 'AAA' data_2 data_3 '123', 'RED' data_4, NULL status in all the double union

    Select donnees_1 'AB105', 'BBB' data_2, '222' data_3, data_4 'BLUE', NULL status in all the double union

    Select donnees_1 'AB106', 'CCC' data_2, '333' data_3, data_4 'BLUE', the double NULL status

    create the table xxc_base

    as

    Select donnees_1 'AB103', 'AAA' data_2, '123' data_3 data_4 'RED', 'Inactive' status of Union double all the

    Select donnees_1 'AB105', 'BBB' data_2, '222' data_3 data_4 'BLUE' status 'Active' of all the double union

    Select donnees_1 'AB106', 'CCC' data_2, '333' data_3, data_4 'BLUE', 'Inactive' status of double

    I need to update the status column xxc_temp with xxc_base value of the status column and also if the user tries to insert new values/lines in the xxc_temp

    So how can I update the status column? I mean automatically set to day and also new values/lines

    I need to update only that are Inactive then these lines should be updated in the temporary table

    We can do this by using the stored function, but I need to update the new status of lines also

    Please help me

    Here's another way to do it, using VIRTUAL function column as expression to get the status of the other table

    CREATE or REPLACE FUNCTION GET_STATUS (pDATA_1 IN TANK) RETURN VARCHAR2 DETERMINISTIC

    AS

    vstatus VARCHAR2 (8);

    BEGIN

    SELECT status in vstatus FROM xxc_base WHERE donnees_1 = pDATA_1;

    RETURN vstatus;

    END;

    /

    DROP TABLE 'XXC_TEMP ';

    CREATE TABLE 'XXC_TEMP '.

    ('DONNEES_1' CHAR (5),

    "DATA_2" TANK (3).

    "DATA_3" TANK (3).

    "DATA_4' VARCHAR2 (4).

    'STATUS' VARCHAR2 (8) GENERATED ALWAYS AS (SUBSTR (GET_STATUS (DATA_1), 1, 8)) VIRTUAL

    ) ;

    INSERT INTO 'XXC_TEMP' (data_3, donnees_1, data_2, data_4))

    Select "AB103' donnees_1, data_2 'AAA', '123' data_3, 'RED' data_4 of any double union

    Select donnees_1 'AB105', 'BBB' data_2, '222' data_3 data_4 'BLUE' of all the double union

    Select donnees_1 'AB106', 'CCC' data_2 data_3 '333', 'BLUE' double data_4);

Maybe you are looking for

  • How can I send addresses as Bcc?

    I can't find all the ways to include a line of ICC in one of the menus. Two of the 'Insert' and 'format' options are grayed out. Please can you help me?

  • OIS missing on my Z Force

    Don't know what I'm doing wrong here. I looked through every document I can find, the manual I downloaded said Verizon OIS icon should be at the top of the camera with the flash, HDR, and Timer. It is now always enabled functionality that needs no co

  • Complete the table of reference

    Hello What I want: complete a table that is inside a container and named function of input parameters. What I tried: I created an object reference, Locals.obj_temp, which stores the set I want to fill the inside of the container.  I seem to be able t

  • Can I install Windows DVD maker on my machine?

    I have a computer that has Windows Vista Business installed with Service Pack 2. I understand that other versions of Vista are equipped with Windows DVD Maker but not Vista Business. I want to burn a DVD so please can you tell me if I can install Win

  • I'm the admisistrator for mindows vista but I can't turn on the program why

    I have windows vista, I can not turn on program features, such as games