Hello.
I have a problem in MSSQL.
Code:
<?php
$msconnect = mssql_connect("localhost");
$msdb = mssql_select_db("kal_db", $msconnect);
$query = "UPDATE Skill SET Level = '55' WHERE Index = '32', PID = '610'";
mssql_query($query);
?>
I defined 2 WHERE clause by putting a ", " betwen both values. but yea it allways gives me an error
Code:
Warning: mssql_query() [function.mssql-query]: message: Incorrect syntax near the keyword 'Index'. (severity 15) in
if i seperate them with AND i get the same error -.-
Please help ;D.