first record mean is first row in table
that why i use
select first(name) from student;
this work in access but not apply in
postgresql
because in postgresql dont have function
first(),
i want to get first row in table student, postgresql database.
example:
table student like this
name ssn
tommy 226-35-6938
sonny 236-23-2589
then i do in access :
select first(name) from student ;
then give me, name is tommy
now i want to do like this in postgresql.
thank.