Get cases name and length in the production dept : LENGTH « String « SQL / MySQL

Home
SQL / MySQL
1.Aggregate Functions
2.Backup Load
3.Command MySQL
4.Cursor
5.Data Type
6.Database
7.Date Time
8.Engine
9.Event
10.Flow Control
11.FullText Search
12.Function
13.Geometric
14.I18N
15.Insert Delete Update
16.Join
17.Key
18.Math
19.Procedure Function
20.Regular Expression
21.Select Clause
22.String
23.Table Index
24.Transaction
25.Trigger
26.User Permission
27.View
28.Where Clause
29.XML
SQL / MySQL » String » LENGTH 
Get cases name and length in the production dept
       
mysql>
mysql> CREATE TABLE IF NOT EXISTS party
    -> (
    ->   id     INT     AUTO_INCREMENT PRIMARY KEY,
    ->   dept CHAR(10), name CHAR(25)
    -> );
Query OK, rows affected (0.00 sec)

mysql>
mysql> # insert records into the "party" table
mysql> INSERT INTO party (dept, name)   VALUES ("accounts""Graham Miller");
Query OK, row affected (0.00 sec)

mysql> INSERT INTO party (dept, name)   VALUES ("sales""Gary Miller");
Query OK, row affected (0.00 sec)

mysql> INSERT INTO party (dept, name)   VALUES ("production""Graham Wallace");
Query OK, row affected (0.00 sec)

mysql>
mysql> # get cases name and length in the production dept
mysql> SELECT UPPER(name), LOWER(name), LENGTH(nameFROM party
    -> WHERE dept = "production";
+----------------+----------------+--------------+
| UPPER(name)    | LOWER(name)    | LENGTH(name|
+----------------+----------------+--------------+
| GRAHAM WALLACE | graham wallace |           14 |
+----------------+----------------+--------------+
row in set (0.00 sec)

mysql>
mysql> # delete this sample table
mysql> DROP TABLE IF EXISTS party;
Query OK, rows affected (0.00 sec)

mysql>
mysql>

   
    
    
    
    
    
    
  
Related examples in the same category
1.LENGTH Function
2.LENGTH(RTRIM(SPACE(8)))
3.LENGTH(CONCAT(CAST(100000 AS CHAR(6)),'000'))
4.Length of trimmed varchar value
5.The length of the shortest verse in the King James Version, that's easy to find
6.Preserving Trailing Spaces in String Columns
7.Determine how many bytes are necessary for storing the data.
8.Lists names from the names table with the longest names first
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.