Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SEL * FROM <table> SAMPLE 100;
SEL * FROM <table> SAMPLE 0.32;
SELECT *
FROM
<table> T1
INNER JOIN
(SELECT PART_NUMBER
FROM ( SELECT
PART_NUMBER
,RANK ( PART_NUMBER ASC ) as PN_Rank
FROM <table>
) NT1
WHERE NT1.PN_RANK <= 100
) DT1
ON DT1.PART_NUMBER = T1.PART_NUMBER
ORDER BY PART_NUMBER
;