How To Select Data From MySQL Database [Query] - Simple Ways

I would like to show you how to select data from mysql database with a simple ways. Many ways you can do for selecting any data from database, but in mysql i have the best 1 and i though this is the fastest way i've ever try.

The simple mysql query:

SELECT * FROM your_table_name

Thats it, but how if we want to do with "where clause" conditions? Lets check it out.

SELECT * FROM your_table_name WHERE your_field1 = 'any_value'

"any value" means it up to you, what do you want to filter from it. So the result will show you according to your query.

Hope you guys enjoy this mini-tutorial, and i will make a lot of simple tutorial on this blog.
seeya...

Comments

Popular posts from this blog

Introduction, Who Am I?