LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

fetching required num of rows from database

i have a database and table in it stores around 256 values it has three fields (channel number,Value,Date&Time) i just need the value ie; second column and that to the first 64 values in database pls can i have a valuable solution from anybody it will be a great help and i need it urgently.Thanks in advance......Smiley Tongue
0 Kudos
Message 1 of 2
(2,449 Views)
In order to provide a more direct answer you will need to provide more details. What kind of database? What do you mean by the "first 64 values"? Is this the first 64 ordered a certain way, or the first 64 that happened to have been entered into the database?

In general you can use LabSQL to access databases. You will need to specify a query string to get your values. Something like (for SQL) "SELECT TOP 64 Value FROM MyTable ORDER BY ..."
0 Kudos
Message 2 of 2
(2,441 Views)