MySQL Function Tutorial
It’s been a great MySQL tutorial series so far and now we’re going to dig even further into the language. The introduction to MySQL, data types, declarative nature, and using data manipulation...
View ArticleWorking With Common MySQL String Functions
MySQL has many built in functions for dealing with strings. Many times, we can perform these operations using whatever programming language we happen to be using with MySQL such as PHP. Other times...
View ArticleWhat are MySQL Operators?
MySQL Operators are your friend in fact. In MySQL, just as in all programming languages, we have these nifty little things called operators. Operators are pretty darn important, as they allow us to...
View ArticleMySQL Group By Having Limit Offset and More!
We’re moving onward in our MySQL Journey! This episode will take a look at many useful features of the language and how you can use them. As always, we’ll simply be operating on the data that we...
View ArticleWhat is a MySQL Join?
Now that we have covered all of the basics in MySQL, we’ll finish things up with a few additional points about MySQL that you are likely to come across. One of these topics is the idea of a join. So...
View ArticlePHP And MySQL Tutorial
This PHP Tutorial Series has gone soup to nuts covering all of the fundamental aspects of using PHP to build dynamic websites. Based on all of the concepts covered so far, you should be able to build...
View ArticleProcess Returned MySQL Query Results In PHP
In the prior episode of working with MySQL and PHP, we took a good look at the entire process of getting data to work with. This involved setting up a database connection, testing the database...
View ArticlePHP MySQL CRUD Tutorial
In the last lesson we learned more about working with results from select queries in MySQL. In other words, when we used PHP to build up a query and send it to MySQL, MySQL then sent back a resource...
View ArticleEscape Strings For MySQL To Avoid SQL Injection
With all the talk about working with databases using MySQL and PHP in this tutorial series, one thing we didn’t cover yet is SQL Injection and how to protect your site from it. The syntax for MySQL is...
View ArticleMySQL Tutorials For Beginners
If you’re a beginner, or even more advanced, this MySQL Tutorials For Beginners will be a good resource for you. In learning web development, you’re going to need to know some amount of SQL or MySQL...
View ArticleIntroduction to MySQL
MySQL is the world’s most popular open source database and powers all kinds of different applications in the technology industry. Of course the blogging platform WordPress uses MySQL as it’s database...
View ArticleData Types in MySQL
Not all data is created equal! We know from working with variables in PHP and JavaScript that variables can hold all kinds of data. MySQL is not different in this sense. The various data types in...
View ArticleThe Declarative Nature of SQL
We’ve been covering a lot of information about database technology, terms, and ideas so far. Soon we will be diving in to using data manipulation language to insert, update, and delete data in various...
View ArticleCreating Databases and Tables in MySQL
In this MySQL Series, we first have been taking a look at MySQL and SQL in general from a high level view. With the vocabulary, acronyms, and theory now out of the way, we can not focus on putting pen...
View ArticleGetting Started with Data Manipulation Language in MySQL
So far we’ve been hitting what is arguably the more mundane aspects of dealing with Database Administration. This would be the DDL or data definition language portion of working with MySQL. It is by...
View ArticleIntroduction to MySQL
MySQL is the world’s most popular open source database and powers all kinds of different applications in the technology industry. Of course the blogging platform WordPress uses MySQL as it’s database...
View ArticleData Types in MySQL
Not all data is created equal! We know from working with variables in PHP and JavaScript that variables can hold all kinds of data. MySQL is not different in this sense. The various data types in...
View ArticleThe Declarative Nature of SQL
We’ve been covering a lot of information about database technology, terms, and ideas so far. Soon we will be diving in to using data manipulation language to insert, update, and delete data in various...
View ArticleCreating Databases and Tables in MySQL
In this MySQL Series, we first have been taking a look at MySQL and SQL in general from a high level view. With the vocabulary, acronyms, and theory now out of the way, we can not focus on putting pen...
View ArticleGetting Started with Data Manipulation Language in MySQL
So far we’ve been hitting what is arguably the more mundane aspects of dealing with Database Administration. This would be the DDL or data definition language portion of working with MySQL. It is by...
View Article