Note that there are some explanatory texts on larger screens.

plurals
  1. POFor each SQL query
    primarykey
    data
    text
    <p>We have a database that contains information about time booked to projects. We have a live record for a project, that holds the correct time information (imported from SAP once a week).</p> <p>We also have archived records showing the time information at a point in time, these are taken once a week, essentially they are snap shots. It is possible for users to later put in a request to adjust the time on project. If this happens, the live record will reflect the correct time for the project, however the snapshots will not. I need to write a query that goes through and updates these snapshots with the correct time for the project, at that point in time.</p> <p>We have a table of SAP data, that has records for each time entry for a project, showing the project code it was for, the date it was for, and the amount of time. The Historical data table contains the code for the project and the date the snap shot was taken. So I need to write a SQL query that will go through the historical data table, and for each row update the time spent by looking at the SAP table and getting all time entrys, for that project code, before the date that snapshot was taken.</p> <p>I'm having real difficulty doing this in one SQL query, the main problem being I really need to run a query for each record in the historical data table. I keep coming up with pages suggesting using cursors, but I don't know much about them and keep seeing articles saying they are bad. Any suggestions on what sort of query I can use to get on the way with this would be great!</p> <p>Essentially what I want to do in pseudocode is:</p> <pre><code>For Each Project Code in the hostorical data table, archived on a date, select all time entrys on or before that date. </code></pre> <p><strong>Sample tables</strong></p> <pre><code>Historical Project Data SAP Data ----------------------- ---------------- Project Code | run date Project Code | Time | Date 1234 | 01/09/2009 1234 | 2 | 29/08/2009 9876 | 01/09/2009 1234 | 5 | 29/08/2009 1234 | 07/09/2009 9876 | 10 | 02/09/2009 9876 | 07/09/2009 1234 | 2 | 03/09/2009 </code></pre> <p>So I would like to end up with a query that shows</p> <pre><code>Project Code | run date | time 1234 | 01/09/2009 | 7 9876 | 01/09/2009 | 0 1234 | 07/09/2009 | 9 9876 | 07/09/2009 | 10 </code></pre> <p>So for example, the first record in the query shows all hours booked to project 1234, on or before the 01/09/2009</p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload