All Questions
1 question
7
votes
2
answers
13k
views
Escaping T-SQL Keywords
$sql = "SELECT Kill FROM tbl_pvporderview";
Problem is that I end up with: Incorrect syntax near the keyword 'Kill'.
Because kill is a T-SQL command... any way to bypass it?
I can't change the ...