Home Accessibility Courses Twitter The Mouth Facebook Resources Site Map About Us Contact
 
For 2023 (and 2024 ...) - we are now fully retired from IT training.
We have made many, many friends over 25 years of teaching about Python, Tcl, Perl, PHP, Lua, Java, C and C++ - and MySQL, Linux and Solaris/SunOS too. Our training notes are now very much out of date, but due to upward compatability most of our examples remain operational and even relevant ad you are welcome to make us if them "as seen" and at your own risk.

Lisa and I (Graham) now live in what was our training centre in Melksham - happy to meet with former delegates here - but do check ahead before coming round. We are far from inactive - rather, enjoying the times that we are retired but still healthy enough in mind and body to be active!

I am also active in many other area and still look after a lot of web sites - you can find an index ((here))
How do I query a database (MySQL)?

From my mailbox ... "What are the different ways of queries in databases? Could u pls explain each way in more detail? thanks"

The term "query" means something a little bit different in the term "SQL" to it does in regular English usage - the dictionary definition is to ask for information / pose a question, but as a part of SQL ("structured query language"), it means and request of a database and that can include:
• Setting up and modifying table structures
• Inserting and modifying data held in tables
• retrieving information about the structure of tables and how the database is running
• retrieving information from the tables of a database - the actual data.
Only the last of those is a "query" in terms of normal English usage.

All SQL database queries [exception - Microsoft Access] are made via a service or daemon - a process running on a server computer. That process is designed to provide the one and only route to the data, so that multiple concurrent users will be able to work together on the same information with no risk of one adversely effecting the other through lack of syncronisation. And the requests passed to that service (Microsoft word) or daemon (unix / Linux word) will be in "SQL".

SQL queries all start with a keyword such as CREATE (to create a table), INSERT (to insert data) or SELECT (to retrieve the actual information held). And they are the ONLY way to access the database. However, they are not very easy (they are not designed to be easy!) for the human user - they are much more easily formed within another program, with the human user calling that other program as his / her interface to the data. For example, if you were to book a hotel room or training course with us, a number of database 'queries' would be run - SELECTs mostly with a few INSERTs - in the process, which would be completely hidden from you. Indeed, you've probably done some SELECTs without realising it to read our web site already, as almost every page has some database access.

I can explain SQL, and SELECTs, in much more detail - but there are whole books on the subject - it's massive. So that explanation would usually be a part of one of our courses, in which we would cover some elements of database design, as well as how to access the data. Such a course would be useful if you'll be accessing the data directly in your own programs (in languages such as Perl, PHP, or Python), but it's really not necessary for you to learn SQL just to use a web site that makes use of it internally. If everyone who stayed at our hotel was required to know SQL before they booked, it would be a strange world.

Some further links for you:
  http://www.wellho.net/course/mqfull.html
(next course is on 13th and 14th August and we currently have places available)
  http://www.wellho.net/solutions/mysql-mysql-select-join...group-etc.html
(that's an example of a SELECT showing each of the elements in the command)
  http://www.wellho.net/mouth/515_MySQL-an-FAQ.html
(A link to our MySQL FAQ - many common questions answered)
(written 2009-06-15, updated 2009-06-22)

 
Associated topics are indexed as below, or enter http://melksh.am/nnnn for individual articles
S152 - SQL Primer as Used in MySQL
  [158] MySQL - LEFT JOIN and RIGHT JOIN, INNER JOIN and OUTER JOIN - (2004-12-20)
  [270] NULL in MySQL - (2005-04-06)
  [494] MySQL - a score of things to remember - (2005-11-12)
  [502] SELECT in MySQL - choosing the rows you want - (2005-11-22)
  [515] MySQL - an FAQ - (2005-12-03)
  [591] Key facts - SQL and MySQL - (2006-02-04)
  [3060] INSERT, DELETE, REPLACE and UPDATE - changing the content of SQL tables - (2010-11-19)
  [3061] Databases - why data is split into separate tables, and how to join them - (2010-11-20)
  [4007] Which database should I use? MySQL v SQLite - (2013-02-16)

S050 - MySQL - General
  [2053] What a difference a MySQL Index made - (2009-02-25)
  [2085] MySQL - licensing issues, even with using the name - (2009-03-16)
  [2134] Oracle take over Sun who had taken over MySQL - (2009-04-21)
  [2426] Which version of MySQL am I running? - (2009-09-26)
  [2559] Moving the product forward - ours, and MySQL, Perl, PHP and Python too - (2010-01-01)
  [2561] The future of MySQL - (2010-01-03)
  [2567] Extra MySQL course dates (2 day course, UK) - (2010-01-08)
  [2861] MySQL and Java - connectivity past, present, and future thoughts - (2010-07-09)
  [3361] Blowing our own trumpet - MySQL resources - (2011-07-18)


Back to
Cornerstone Cafe, Melksham
Previous and next
or
Horse's mouth home
Forward to
Perl references - $$var and \$var notations
Some other Articles
What should a web site cost you?
Changing a variable behaviour in Perl - tieing
So what is this thing called Perl that I keep harping on about?
Perl references - $$var and \$var notations
How do I query a database (MySQL)?
Cornerstone Cafe, Melksham
Handling nasty characters - Perl, PHP, Python, Tcl, Lua
Taking a pride in the community
Alumni - revisiting and supporting the old University
Sending awkward characters by email in Perl
4759 posts, page by page
Link to page ... 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32, 33, 34, 35, 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, 53, 54, 55, 56, 57, 58, 59, 60, 61, 62, 63, 64, 65, 66, 67, 68, 69, 70, 71, 72, 73, 74, 75, 76, 77, 78, 79, 80, 81, 82, 83, 84, 85, 86, 87, 88, 89, 90, 91, 92, 93, 94, 95, 96 at 50 posts per page


This is a page archived from The Horse's Mouth at http://www.wellho.net/horse/ - the diary and writings of Graham Ellis. Every attempt was made to provide current information at the time the page was written, but things do move forward in our business - new software releases, price changes, new techniques. Please check back via our main site for current courses, prices, versions, etc - any mention of a price in "The Horse's Mouth" cannot be taken as an offer to supply at that price.

Link to Ezine home page (for reading).
Link to Blogging home page (to add comments).

You can Add a comment or ranking to this page

© WELL HOUSE CONSULTANTS LTD., 2024: 48 Spa Road • Melksham, Wiltshire • United Kingdom • SN12 7NY
PH: 01144 1225 708225 • EMAIL: info@wellho.net • WEB: http://www.wellho.net • SKYPE: wellho

PAGE: http://www.wellho.net/mouth/2240_How ... ySQL-.html • PAGE BUILT: Sun Oct 11 16:07:41 2020 • BUILD SYSTEM: JelliaJamb