forum

Home / DeveloperSection / Forums / Syntax error near the keyword order [on hold] in SQL Server

Syntax error near the keyword order [on hold] in SQL Server

Manoj Bhatt233622-Sep-2014

When I execute this query:

SELECT 
   orders.id, orders.order - time, orders.pizza.id,
   orders.pizza.type, orders.pizza-size, orders.quantity,
FROM
   orders
INNER JOIN
   permit ON orders.id = pizza.id
WHERE
   ([username] = @username)

 

I got an array:

Syntax error near the keyword order

Any clue how to solve this?


Updated on 28-Apr-2023

Can you answer this question?


Answer

2 Answers

Liked By