You must have a condition to retrieve rows:
SELECT coloumn from table_name WHERE condition
Note: example for condition can be like "
no_of_employees=2"
The above example will retrieve rows in which the coloumn "no_of_employees" is 2
For getting a random row, refer this post: http://www.petefreitag.com/item/466.cfm
Select a random row with MySQL:
SELECT column FROM table
ORDER BY RAND()
LIMIT 1
Select a random row with PostgreSQL:
SELECT column FROM table
ORDER BY RANDOM()
LIMIT 1
Select a random row with Microsoft SQL Server:
SELECT TOP 1 column FROM table
ORDER BY NEWID()
Select a random row with IBM DB2
SELECT column, RAND() as IDX
FROM table
ORDER BY IDX FETCH FIRST 1 ROWS ONLY
Select a random record with Oracle:
SELECT column FROM
( SELECT column FROM table
ORDER BY dbms_random.value )
WHERE rownum = 1