0

I am using the php odbc connection to connect the ingress database it no sql database.Here I want to use the limit or top or first command in the query.I have tried with all options it gives the syntax error.kindly suggest any one regarding this.

my query is

  1. select TOP 10 * from emp;
  2. select * from emp limit 10; & select * from emp limit 0,10;
  3. select * from emp first(10);

thanks

jeeva
  • 1,573
  • 2
  • 15
  • 24

1 Answers1

1
Select First 10 * from myTable

Reference-1

Reference-2

Community
  • 1
  • 1
Furqan Aziz
  • 1,094
  • 9
  • 18