0

Which one of these three statements is the best one to enable the keyword LIMIT?

SET OPTION RESERVED_KEYWORDS = 'LIMIT';
SET OPTION PUBLIC reserved_keywords = 'LIMIT';
SET OPTION PUBLIC.reserved_keywords = 'LIMIT';
markp-fuso
  • 28,790
  • 4
  • 16
  • 36
sid_com
  • 24,137
  • 26
  • 96
  • 187

1 Answers1

0

SET OPTION RESERVED_KEYWORDS = 'LIMIT'; is in the IQ SQL documentation.

SET OPTION PUBLIC.reserved_keywords = 'LIMIT'; is in the SQL Anywhere documentation

Adaptive Server Enterprise: Limit/Offset since version ASE 16 SP02 PL05.

sid_com
  • 24,137
  • 26
  • 96
  • 187