30.05.2011, 08:11
Title says it all, how could i delete a column from a TABLE?
Something i wrote which wont work!
Something i wrote which wont work!
pawn Code:
stock DeleteGang(gangid)
{
new Query[256], DBResult:Result;
format(Query, sizeof(Query), "DELETE FROM `GANGS` WHERE `GANGID` = '%d'", gangid);
Result = db_query(Database, Query);
return db_free_result(Result);
}

