sqlserver.php 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133
  1. <?php namespace Laravel\Database\Query\Grammars;
  2. use Laravel\Database\Query;
  3. class SQLServer extends Grammar {
  4. /**
  5. * The keyword identifier for the database system.
  6. *
  7. * @var string
  8. */
  9. protected $wrapper = '[%s]';
  10. /**
  11. * Compile a SQL SELECT statement from a Query instance.
  12. *
  13. * @param Query $query
  14. * @return string
  15. */
  16. public function select(Query $query)
  17. {
  18. $sql = parent::components($query);
  19. // SQL Server does not currently implement an "OFFSET" type keyword, so we
  20. // actually have to generate the ANSI standard SQL for doing offset like
  21. // functionality. OFFSET is in SQL Server 2012, however.
  22. if ($query->offset > 0)
  23. {
  24. return $this->ansi_offset($query, $sql);
  25. }
  26. // Once all of the clauses have been compiled, we can join them all as
  27. // one statement. Any segments that are null or an empty string will
  28. // be removed from the array before imploding.
  29. return $this->concatenate($sql);
  30. }
  31. /**
  32. * Compile the SELECT clause for a query.
  33. *
  34. * @param Query $query
  35. * @return string
  36. */
  37. protected function selects(Query $query)
  38. {
  39. if ( ! is_null($query->aggregate)) return;
  40. $select = ($query->distinct) ? 'SELECT DISTINCT ' : 'SELECT ';
  41. // Instead of using a "LIMIT" keyword, SQL Server uses the TOP keyword
  42. // within the SELECT statement. So, if we have a limit, we will add
  43. // it to the query here if there is not an OFFSET present.
  44. if ($query->limit > 0 and $query->offset <= 0)
  45. {
  46. $select .= 'TOP '.$query->limit.' ';
  47. }
  48. return $select.$this->columnize($query->selects);
  49. }
  50. /**
  51. * Generate the ANSI standard SQL for an offset clause.
  52. *
  53. * @param Query $query
  54. * @param array $components
  55. * @return array
  56. */
  57. protected function ansi_offset(Query $query, $components)
  58. {
  59. // An ORDER BY clause is required to make this offset query work, so if
  60. // one doesn't exist, we'll just create a dummy clause to trick the
  61. // database and pacify it so it doesn't complain about the query.
  62. if ( ! isset($components['orderings']))
  63. {
  64. $components['orderings'] = 'ORDER BY (SELECT 0)';
  65. }
  66. // We need to add the row number to the query so we can compare it to
  67. // the offset and limit values given for the statement. So we'll add
  68. // an expression to the select for the row number.
  69. $orderings = $components['orderings'];
  70. $components['selects'] .= ", ROW_NUMBER() OVER ({$orderings}) AS RowNum";
  71. unset($components['orderings']);
  72. $start = $query->offset + 1;
  73. // Next we need to calculate the constraint that should be placed on
  74. // the row number to get the correct offset and limit on the query.
  75. // If there is not limit, we'll just handle the offset.
  76. if ($query->limit > 0)
  77. {
  78. $finish = $query->offset + $query->limit;
  79. $constraint = "BETWEEN {$start} AND {$finish}";
  80. }
  81. else
  82. {
  83. $constraint = ">= {$start}";
  84. }
  85. // We're finally ready to build the final SQL query so we'll create
  86. // a common table expression with the query and select all of the
  87. // results with row numbers between the limit and offset.
  88. $sql = $this->concatenate($components);
  89. return "SELECT * FROM ($sql) AS TempTable WHERE RowNum {$constraint}";
  90. }
  91. /**
  92. * Compile the LIMIT clause for a query.
  93. *
  94. * @param Query $query
  95. * @return string
  96. */
  97. protected function limit(Query $query)
  98. {
  99. return '';
  100. }
  101. /**
  102. * Compile the OFFSET clause for a query.
  103. *
  104. * @param Query $query
  105. * @return string
  106. */
  107. protected function offset(Query $query)
  108. {
  109. return '';
  110. }
  111. }