cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • DownloadSemiconductor Toolkit: Tools to create wafer maps, add wafer geometry to graphics, explore die defects & compare wafers.
  • Discovery Summit 2026: Early User Edition - September 23-24.Register. It's free.
  • JMP multivariate capabilities let you understand relationships between multiple variables simultaneously. See how. Friday, Aug. 14, 2 pm US ET.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
yanee
Level III

how can I query only the last update data ?

Hi,

 

when there are multiple record in the database, how can I query only the last data (based on time stamp) ?

1 REPLY 1
txnelson
Super User

Re: how can I query only the last update data ?

dt = current data table();
dt << select where( :time stamp = col max(:time stamp) );
Jim

Recommended Articles