Receive news by e-mail

#
 

Enter your e-mail in the field below to receive directly the news that appears on this page.

 

topics : related - all Explore

Shopping

Top Product

PHP MySQL Web Programming Interview Questions, Answers, and Explanations: PHP MySQL FAQ

Compare prices

  1. 2. Flash, Php Y Mysql. Contenidos Dinamicos, 2006 / Flash, PHP and MySQL, Dynamic Contents. 2006 (Diseno Y Creatividad / Design & Creativity)
  2. 3. MySQL 5 Certification Study Guide: The authoritative study guide to prepare for and pass the MySQL Certified Developer and MySQL Certified DBA exams (Mysql Press)
  3. 4. MySQL: the Definitive Guide to Using, Programming, and Administering MySQL 4.1 and 5.0 (Developer's Library)
  4. 5. MySQL Administrator's Guide and Language Reference

Shopping Categories

  1. 1. Mobile Phones
  2. 2. Digital Cameras
  3. 3. Smartphones
  4. 4. Laptop Computers
  5. 5. Graphics Cards
  6. 6. LCD TVs
  7. 7. LCD Monitors
  8. 8. Fridges
  9. 9. Vacuum Cleaners
  10. 10. Freezers
  11. 11. Washing Machines
  12. 12. Microwaves
  13. 13. Electric Kettles
  14. 14. Digital Camcorders
  15. 15. Dishwashers

Wikio Shopping

  1. 1. Baby & Nursery
  2. 2. Books
  3. 3. Car/Motorbike
  4. 4. CD
  5. 5. Communication
  6. 6. Computers
  7. 7. DVD
  8. 8. Electronics
  9. 9. Entertainment
  10. 10. Fashion & Lingerie
  11. 11. Finance
  12. 12. Gifts & Gadgets
  13. 13. Health & Beauty
  14. 14. Home & Garden
  15. 15. Hotels
  16. 16. Household Appliances
  17. 17. Sport & Fitness
  18. 18. Travel
  19. 19. Video Games

Participate



MySQL



Sort by : relevance - date - popularity
+Vote!

What is wrong in my MYSQL Query?

SELECT ( SELECT SUM(IF(status = 'Active', 1, 0)) AS `univ_active`, SUM(IF(status = 'Inactive', 1, 0)) AS 'univ_inactive', Count(*) FROM online_university ) AS tot_university, ( SELECT SUM(IF(status = 'Active', 1,0)) AS `user_active`, SUM(IF(status = 'Inactive', 1,0)) AS 'user_inactive' Count(*) FROM online_register_user) AS tot_users Result must be univ_active=4 univ_inactive=2 tot_university=6 user_active=10...

+Vote!

MySQL Performance Blog was down today

MySQL Performance Blog (and percona.com too) were down today because the switch in our rack died completely. It took a while to fix it using secondary switch we had. Provider was not willing to do it as remote hands so I had to drive to the data center to fix it. We got [...]

+Vote!

MySQL released 5.1.41 and 5.0.88

MySQL released new versions of the 5.1.x and 5.0.x community versions of their database server. There is a security issue releated to them so if you are affected I would advise you to upgrade. I’ve upgraded all my servers without any issue following the normal upgrade path as documented. Read more about the specifics for each [...]

+Vote!

MySQL Community Server 5.0.88 has been released

MySQL Community Server 5.0.88 has been released. This release includes a security fix along with other bug fixes. " Security Fix: MySQL clients linked against OpenSSL did not check server certificates presented by a server linked against yaSSL. "

+Vote!

Microsoft's embrace of MySQL could kill it

Microsoft is now offering support for MySQL, which should give pause to every open-source company that expects to make money through support subscriptions.

3Vote!

Oracle opponent cheers delay in mySQL decision

Mueller said the delay in Oracle's response means a decision on the merger won't come from the European Commission until January 27.

+Vote!

Rare evil MySQL Bug

There is the rare bug which I ran into every so often. Last time I’ve seen it about 3 years ago on MySQL 4.1 and I hoped it is long fixed since… but it looks like it is not. I now get to see MySQL 5.4.2 in the funny state. When you see bug happening [...]

5Vote!

Exclusive: Former MySQL boss Marten Mickos talks open source

In an exclusive interview, former MySQL boss and silicon.com Agenda Setter, Marten Mickos talks to Tim Ferguson about the state of open source, Oracle's plans to buy Sun Microsystems and the value of working with people who are smarter than you. Marten Mickos is probably best known for his time as chief executive of open source database company MySQL, a position he held from 2001 until the beginning...

3Vote!

Data Formatting, Working with XML Data in MySQL

Today's article continues to explore XML support in MySQL. Specifically, we'll look at a nicer way to format our resultset. We'll also discuss how to retrieve all of the records from the XML document, using a stored procedure.

3Vote!

Dislay MySQL Data in a Label - Vb.Net

Hey guys, I have some code here that connects to my Mysql database. It checks your username and password and if your login was successful and it retrieves the phone number under that account. How would the SQL Query look like for retrieving the phone number once connected? Then how would I be able to display that phone number on a label? Thanks

3Vote!

Networking issues with MySQL servers

We’re currently experiencing some slow pings and packet loss to some of our MySQL servers in one of our server racks. We believe this is due to one of our links being saturated. Our networking team is working on adding more capacity to resolve these issues and hope to have things back to normal soon. [...]

3Vote!

MySQL: Convert UNIX_TIMESTAMP to UTC DATETIME

We just learned that when you insert a UNIX_TIMESTAMP into MySQL that it will keep the UTC version of the timestamp, which is good. However, when you use FROM_UNIXTIME() to convert your Unix timestamp into a datetime string, it will localize the datetime to mysql’s timezone. So, a couple things here: System time and MySQL time are [...]

3Vote!

MySQL Data Cleanse EAN Numbers

Just found this MySQL snippet for validating EAN numbers. http://snipplr.com/view.php?codeview&id=17928 I have modified it a bit to suit my requirements (namely totally corrupted EAN data). PLAIN TEXT SQL: SELECT ean FROM products WHERE (LENGTH(ean) != 13) || (SUBSTRING((10 - (((( SUBSTRING(ean FROM 2 FOR 1) + SUBSTRING(ean FROM 4 FOR 1) + SUBSTRING(ean FROM 6 FOR 1) + SUBSTRING(ean FROM 8 FOR...

3Vote!

MySQL query with nested statement in parent where clause

Quick reminder for myself of how to do a nested MySQL query with the nested statement in the parent where clause: 123456789$sql = <<<SQL SELECT id FROM invoices as Invoice WHERE id NOT IN ( SELECT parent_id FROM invoices WHERE parent_id > 0 ) AND billing_start <= '$end' SQL;

3Vote!

Access MAMP MySql via Navicat

Having just gone back to heavily using MAMP I was getting a little fed up with only being able to access the MySql database through phpMyAdmin so I figured I’d have a proper look at getting access through Navicat. I’d tried this hurriedly before – turns out it’s very simple. On your MAMP start screen you [...]