Tilted Forum Project Discussion Community  

Go Back   Tilted Forum Project Discussion Community > Interests > Tilted Technology


 
 
LinkBack Thread Tools
Old 07-24-2007, 10:38 AM   #1 (permalink)
I flopped the nutz...
 
mikec's Avatar
 
Location: Stratford, CT
SQL Select Max Help?

Hello,

Hoping someone can help me with this...I'm pulling data from 2 tables: Employment and Job. The Job table has multiple effective dates (effdt), so when I run the statement, I'm getting ALL the rows, and I want only the most recent record. I've been playing around with "select max" and I can't seem to get it right....can you?? Also, I had to add distinct to the select, otherwise each effdt was appearing twice. Thanks in advance for your help!

select distinct e.emplid, e.check_voucher_ind, j.empl_status, j.effdt
from ps_employment e, ps_job j
where e.emplid = j.emplid
and j.emplid = '105917'
order by check_voucher_ind

Results are:
EMPLID Check_voucher_ind Status effdt
105917 N A 11/03/2003 00:00:00
105917 N A 06/03/2004 00:00:00
105917 N A 07/03/2004 00:00:00
105917 N A 07/02/2005 00:00:00
105917 N A 09/28/2005 00:00:00
105917 N A 12/05/2005 00:00:00
105917 N A 07/01/2006 00:00:00
105917 N A 07/07/2006 00:00:00
105917 N A 09/19/2006 00:00:00
105917 N A 11/04/2006 00:00:00
105917 N A 06/30/2007 00:00:00
105917 N P 05/18/2004 00:00:00
__________________
Until the 20th century, reality was everything humans could touch, smell, see, and hear. Since the initial publication of the charted electromagnetic spectrum, humans have learned that what they can touch, smell, see, and hear is less than one millionth of reality
mikec is offline  
Old 07-24-2007, 10:51 AM   #2 (permalink)
Insane
 
Location: England
select distinct e.emplid, e.check_voucher_ind, j.empl_status, j.effdt
from ps_employment e, ps_job j
where e.emplid = j.emplid
and j.emplid = '105917'
and j.effdt =(select max(j2.effdt) from ps_job j2 where j.emplid = j2.emplid)
order by check_voucher_ind
Chilly McFreeze is offline  
Old 07-24-2007, 10:54 AM   #3 (permalink)
Darth Papa
 
ratbastid's Avatar
 
Location: Yonder
The simple solution is to put a "LIMIT 1" on the end of that statement. You lose some efficiency, but you get exactly your results. I wouldn't put that anywhere it's liable to be run more than once a second, or anywhere transaction volume is high.

If you can do sub-selects, you can:
SELECT ... FROM ps_employment WHERE effdt = (SELECT MAX(effdt) FROM ps_employment);

That's the elegant solution. But not all databases (I'm looking at you, older versions of MySQL) support subselects.

Bear in mind that the sub-select option isn't guaranteed to get you just one record unless your effdt field is defined UNIQUE (or guaranteed unique in code).
ratbastid is offline  
Old 07-24-2007, 11:10 AM   #4 (permalink)
I flopped the nutz...
 
mikec's Avatar
 
Location: Stratford, CT
Quote:
Originally Posted by Chilly McFreeze
select distinct e.emplid, e.check_voucher_ind, j.empl_status, j.effdt
from ps_employment e, ps_job j
where e.emplid = j.emplid
and j.emplid = '105917'
and j.effdt =(select max(j2.effdt) from ps_job j2 where j.emplid = j2.emplid)
order by check_voucher_ind
that did it! thanks a lot Chilly!! I see how you aliased ps_job again....clearly I have much to learn about SQL.

ratbastid - it's an oracle ADP database. antiquated would be a nice way of putting it. I only run this once every 2 weeks to capture selections on people electing paperless payroll...thanks for your input!
__________________
Until the 20th century, reality was everything humans could touch, smell, see, and hear. Since the initial publication of the charted electromagnetic spectrum, humans have learned that what they can touch, smell, see, and hear is less than one millionth of reality
mikec is offline  
Old 07-24-2007, 11:13 AM   #5 (permalink)
Insane
 
Location: England
No probs mike, sorry I didn't think to ask if your database supported sub queries, I only ever use Oracle 9i or 10g so it didn't even occur to me!
Chilly McFreeze is offline  
Old 07-31-2007, 06:54 AM   #6 (permalink)
I flopped the nutz...
 
mikec's Avatar
 
Location: Stratford, CT
edited: nevermind, ADP finally helped me. there were other tables to factor in..... if you're curious:

select e.emplid, e.check_voucher_ind, j.empl_status, j.effdt
from ps_employment e, ps_job j
where e.emplid = j.emplid
and j.effdt =(select max(j2.effdt) from ps_job j2 where j.emplid = j2.emplid)
AND J.EFFDT = (SELECT MAX(JJ.EFFDT) FROM PS_JOB JJ WHERE JJ.EMPLID = J.EMPLID
AND JJ.EMPL_RCD_NBR = J.EMPL_RCD_NBR
AND JJ.EFFDT <= SYSDATE)
AND
J.EFFSEQ = (SELECT MAX(JJJ.EFFSEQ) FROM PS_JOB JJJ WHERE JJJ.EMPLID = J.EMPLID
AND JJJ.EMPL_RCD_NBR = J.EMPL_RCD_NBR
AND JJJ.EFFDT = J.EFFDT)
order by check_voucher_ind
__________________
Until the 20th century, reality was everything humans could touch, smell, see, and hear. Since the initial publication of the charted electromagnetic spectrum, humans have learned that what they can touch, smell, see, and hear is less than one millionth of reality

Last edited by mikec; 07-31-2007 at 08:07 AM..
mikec is offline  
 

Tags
max, select, sql


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -8. The time now is 08:38 PM.

Tilted Forum Project

Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2024, vBulletin Solutions, Inc.
Search Engine Optimization by vBSEO 3.6.0 PL2
© 2002-2012 Tilted Forum Project

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360