Shard O'Glase said:
yes I realize sql is just for queries, I guess my point is, there is some extra step where it turns it into a board. So create a basic table, update tables, querry those tables and i'm good. Some how make it so messages on a board get woven into these tables, and create threads and I'm lost.
still probably not explaining myself well, but oh well I'm not an expert at this stuff.
First, think about what you'd need in a database to store a web board. What kind of tables will you need? What operations will you need to be able to do? Then sketch out the SQL queries you'd need to do those things (sometimes you won't have to write them by hand, but it's helpful to know how).
And then your favorite server-side web technology (PHP, JSP, ASP, ASP.NET, ColdFusion, etc.) comes into play, because you'll use that to take information from the database and put in on a web page (by grabbing the results of a SELECT query), or to take info from a web page, and put it into a database (by adding paramaters to an UPDATE, INSERT, or DELETE query). It's possible to get this to work without writing any SQL on your own, because some modern IDEs (like Visual Studio.NET and Dreamweaver MX) are rather clever, but that's what's happening under the covers.