Monday, October 19, 2015

Staying HIP After 4 Weeks

10/19/15 11:59 P.M.

We learned a lot about Databases this week. The coolest part was SQL, simply put it's code in which allows us to communicate with data bases and pull information from it. The 4 main interactions with a database is;  Create, Read, Update, and Delete A.K.A C.R.U.D.
And some simple SQL Code:
UPDATE table_name
SET column1=value1,column2=value2,...
WHERE some_column=some_value;

No comments:

Post a Comment