I would setup a function where it is:
board(int x, int y)
{
Select Status from Board where X_Cord=x AND Y_Cord=y;
}
In Mysql I'd setup a table Called "Board" With types:
Board_ID int
X_Cord int
Y_Cord int
Status int (or whatever)
Insert_Date daytime
Update_Date daytime