MySQL replace command : Replace « Function « 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 » Function » Replace 
MySQL replace command
 

Drop table CDs;

CREATE TABLE CDs (
   CDID SMALLINT NOT NULL PRIMARY KEY,
   CDName VARCHAR(50NOT NULL,
   InStock SMALLINT UNSIGNED NOT NULL,
   Category VARCHAR(20)
);


INSERT INTO CDs
VALUES (101'Blood', 10'Rock'),
       (102'Jazz', 17'Jazz'),
       (103'Class', 9'Classical'),
       (104'Violin', 24, NULL),
       (105'Blues', 2'Blues'),
       (106'Tires', 12'Country'),
       (107'Essence', 5'New Age'),
       (108'Magic', 42'Classical'),
       (109'Name', 20'Opera'),
       (110'Fire', 23'Country'),
       (111'Live', 18'Jazz'),
       (112'Blues', 22'Blues'),
       (113'Stages', 42'Blues');



CREATE TABLE CDs2a
(
   CDID SMALLINT NOT NULL PRIMARY KEY,
   CDName VARCHAR(5NOT NULL,
   InStock SMALLINT UNSIGNED NOT NULL
)
SELECT CDID, CDName, InStock
FROM CDs
WHERE Category='Blues' OR Category='Jazz';

  
REPLACE INTO CDs2
SELECT CDID, CDName, InStock
FROM CDs
WHERE Category='Country' OR Category='Rock';


select from CDs2;
           
         
  
Related examples in the same category
1.Call REPLACE function in select clause
2.Call concat and replace
3.Do calculation in select clause
4.Replace into
5.Replace more than one column
6.Use the REPLACE command to remove the underscores and insert spaces in their place.
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.