Delete All Threads Except the Last 500 : Delete « Insert Delete Update « 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 » Insert Delete Update » Delete 
Delete All Threads Except the Last 500
       
mysql>
mysql> CREATE TABLE messages (
    ->   msgID int(20NOT NULL auto_increment PRIMARY KEY,
    ->   forumID int(11),
    ->   rootID int(11),
    ->   parentID int(11),
    ->   userID int(11),
    ->   subject varchar(80),
    ->   msgText text,
    ->   ts timestamp
    -> );
Query OK, rows affected (0.00 sec)

mysql>
mysql> INSERT INTO messages VALUES (60,1002,60,NULL,375,'cgi','','2001-03-27 08:35:28'),
    ->                             (62,3,62,NULL,162,'message','','2001-03-29 16:07:29');
Query OK, rows affected (0.00 sec)
Records: 2  Duplicates: 0  Warnings: 0

mysql>
mysql>
mysql>
mysql> SELECT @oldtime := ts FROM messages
    -> WHERE rootID=msgID ORDER BY ts DESC LIMIT 499,1;
Empty set (0.00 sec)

mysql>
mysql> drop table messages;
Query OK, rows affected (0.00 sec)

mysql>

   
    
    
    
    
    
    
  
Related examples in the same category
1.Deleting Rows with DELETE
2.Using DELETE LOW_PRIORITY command
3.Delete by JOIN
4.Delete with JOIN 2
5.Using the 'from join delete' Alternative to Delete Data
6.Delete row with condition
7.Delete statement with subquery (ERROR 1093 (HY000): You can't specify target table 'EmployeeS' for update in FROM clause)
8.DELETE statement using the alternative.
9.Joining Tables in a DELETE Statement
10.Delete with where clause
11.Delete ignore
12.Adding Subqueries to Your DELETE Statements
13.Delete rows from multiple tables
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.