- 36. The Spark
- (Commentary)
- ... week? 6:00 p.m. on Mondays and Wednesdays. Those are the days I coach my eight-year-old son’s baseball team. My wife and I work nearly opposite times of the day, so dinner time, when we’re all together, ...
- Created on 17 July 2016
- 37. How Much Do You Really Know About Modern RPG Programming?
- (RPG)
- ... FROM InvMst InvMst INNER JOIN ItmMst ItmMst ON InvMst.ItemID = ItmMst.ItemID WHERE WHID = :K_WHID; Notice the line in bold? The WHERE clause with host variables (in this case just ...
- Created on 19 January 2016
- 38. SQL 101: Getting Rid of DFU with the Update and Delete Statements
- (SQL)
- ... Shl.WHID = ML.WHID AND Shl.ShelfID = ML.ShelfID ); So, what's going on here? I'm doing an implicit Inner Join between the Shelves and MaintenanceList tables using the warehouse and shelf IDs. ...
- Created on 23 October 2015
- 39. TechTip: SQLing to the Cloud in Seven Steps
- (SQL)
- ... the same fields in the mirror image file, then the record was updated and should be sent as an Update. This is accomplished in SQL by creating an inner join by joining the key from the current image file ...
- Created on 09 October 2015
- 40. SQL 101: Writing More Complex Queries
- (SQL)
- ... , ExpDate FROM InvMst InvMst INNER JOIN ItmMst ItmMst ON InvMst.ItemID = ItmMst.ItemID WHERE InvMst.ItemID = 'A123' AND WHID = 333 ORDER BY ExpDate Even though this statement ...
- Created on 10 July 2015
- 41. Build Real Teamwork in a Virtual Team
- (General)
- ... together without them having to be together. You could run team competitions and bring the team together on a virtual team day to discuss the entries and maybe vote on the winners. Introducing a fun and ...
- Created on 09 March 2015
- 42. TechTip: More on Combining Multiple Row Values into a Single Row with SQL in DB2 for i
- (SQL)
- ... FROM numbered_sets s INNER JOIN navigate_sets n ON s.make = n.make AND s.rownum = n.rownum+1 ) SELECT make, MAX(model_list) FROM navigate_sets GROUP BY make The ...
- Created on 12 February 2015