akbarmahfuzalam
Member
- Local time
- Tomorrow, 04:12
- Joined
- Nov 22, 2019
- Messages
- 31
Hi Team,
I have a ask wherein i have table1 wherein i have 100000 record and i am trying to get 3% of record as per the job_id
I would like to use job_id as ran function.
So far i have written Sql Code in MS Access as
SELECT top 22 *
FROM Table1
ORDER BY Rnd(mid(job_id,2,18));
I don't want to use Select top 22*
I would like to use random 3% record from the table1.
I have a ask wherein i have table1 wherein i have 100000 record and i am trying to get 3% of record as per the job_id
I would like to use job_id as ran function.
So far i have written Sql Code in MS Access as
SELECT top 22 *
FROM Table1
ORDER BY Rnd(mid(job_id,2,18));
I don't want to use Select top 22*
I would like to use random 3% record from the table1.