MySQL Quotes

Frank was on a role with MySQL quotes (it’s 1am here in New York – All that Red Bull & Vodka). Here are some of them:

Let me scale you!

<div style="font-size:14pt; text-align:center;">
  Wanna scale.</p> 
  
  <p>
    </div> 
    
    <div style="font-size:14pt; text-align:center;">
      Scale me Baby!</p> 
      
      <p>
        </div> 
        
        <div style="font-size:14pt; text-align:center;">
          Backup Now!</p> 
          
          <p>
            </div> 
            
            <div style="font-size:14pt; text-align:center;">
              MySQL &#8211; DBA Friendly.</p> 
              
              <p>
                </div> 
                
                <div style="font-size:14pt; text-align:center;">
                  MySQL &#8211; Use the Attitude.</p> 
                  
                  <p>
                    </div> 
                    
                    <div style="font-size:14pt; text-align:center;">
                      MySQL. Be Bold!</p> 
                      
                      <p>
                        </div> 
                        
                        <div style="font-size:14pt; text-align:center;">
                          MySQL. Look Again</p> 
                          
                          <p>
                            </div> 
                            
                            <div style="font-size:14pt; text-align:center;">
                              MySQL &#8211; Coming to a website near you.</p> 
                              
                              <p>
                                </div> 
                                
                                <div style="font-size:14pt; text-align:center;">
                                  One small step for Data, one giant leap for DBA.</p> 
                                  
                                  <p>
                                    </div> 
                                    
                                    <div style="font-size:14pt; text-align:center;">
                                      Data, we are serious about it.</p> 
                                      
                                      <p>
                                        </div> 
                                        
                                        <div style="font-size:14pt; text-align:center;">
                                          My Job, My Passion. MySQL.</p> 
                                          
                                          <p>
                                            </div> 
                                            
                                            <div style="font-size:14pt; text-align:center;">
                                              MySQL. Never Doubt.</p> 
                                              
                                              <p>
                                                </div> 
                                                
                                                <div style="font-size:14pt; text-align:center;">
                                                  MySQL. Scaling made Easy.</p> 
                                                  
                                                  <p>
                                                    </div> 
                                                    
                                                    <div style="font-size:14pt; text-align:center;">
                                                      MySQL. Scaling all you want.</p> 
                                                      
                                                      <p>
                                                        </div> 
                                                        
                                                        <div style="font-size:14pt; text-align:center;">
                                                          Got MySQL!</p> 
                                                          
                                                          <p>
                                                            </div> 
                                                            
                                                            <div style="font-size:14pt; text-align:center;">
                                                              Do it with MySQL.</p> 
                                                              
                                                              <p>
                                                                </div> 
                                                                
                                                                <div style="font-size:14pt; text-align:center;">
                                                                  Scale Yourself.</p> 
                                                                  
                                                                  <p>
                                                                    </div> 
                                                                    
                                                                    <div style="font-size:14pt; text-align:center;">
                                                                      MySQL or die.</p> 
                                                                      
                                                                      <p>
                                                                        </div> 
                                                                        
                                                                        <div style="font-size:14pt; text-align:center;">
                                                                        </div>
                                                                        
                                                                        <p>
                                                                          I&#8217;ve also done some of my <a href="http://www.arabx.com.au/shirt.htm">own shirts designs</a> (see small images below), a number I already have on shirts (you can check them out on me at <a href="http://www.mysqlcamp.org">MySQL Camp</a>).
                                                                        </p>
                                                                        
                                                                        <p>
                                                                          Some other references include <a href="http://forge.mysql.com/wiki/Merchandise">MySQL forge Merchandise</a> and <a href="http://arjen-lentz.livejournal.com/68617.html">Arjen&#8217;s suggestions.</a>
                                                                        </p>
                                                                        
                                                                        <p>
                                                                          <center>
                                                                            </p> 
                                                                            
                                                                            <p>
                                                                              <img src="http://media.ronaldbradford.com/images/thumb/hugged2.jpg" /><img src="http://media.ronaldbradford.com/images/thumb/my.jpg" /><br /> <img src="http://media.ronaldbradford.com/images/thumb/CLI.jpg" /><img src="http://media.ronaldbradford.com/images/thumb/contributors.jpg" /></center>
                                                                            </p>
Tagged with: Databases General MySQL

Producing IQR and Outlier statistics with SQL

The interquartile range (IQR) measures the spread of the middle 50% of a distribution — the distance between the first quartile (Q1) and the third quartile (Q3). Combined with Tukey’s 1.

Producing Mode statistics with SQL

The mode is the value or values that appear most frequently in a dataset. Unlike the mean or median, it applies naturally to categorical and ordinal data — star ratings, product codes, survey responses — and reveals what is most common, not what is average.

Extending MySQL Capabilies with UDFs, Plugins and Components - Part 2

MySQL offers three different approaches to extending the SQL capabilities with the default product you download and install. These are: User Defined Function (UDF) MySQL Manual MySQL Plugin MySQL Manual MySQL Component MySQL Manual In my prior post I provided a new uuidv function that accepted a numeric argument to return a string of the version of UUID specified.