Mysql
 sql >> डेटाबेस >  >> RDS >> Mysql

MySQL में WHERE EXISTS के साथ DELETE क्वेरी

delete from MyTable t1 
where user_id in (
  select user_id 
  from MyTable t1 
  where exists ( 
    select * from MyTable t2 
    where t1.user_id = t2.user_id 
    and t1.object_id <> t2.object_id 
    and t2.role = "ADMIN")
  and role = "ORG_MANAGER" 
  and object_type = "type_b";
)



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. फ्लोट करने के लिए int को संशोधित करें (mysql)

  2. mysql क्वेरी के 'IN' क्लॉज में PHP से मानों की एक सरणी का उपयोग कैसे करें?

  3. PHP का उपयोग करते हुए मैसकल में गतिशील इनपुट त्रुटि

  4. PHP- तैयार बयानों का उपयोग करके mysql में बाइनरी डेटा डालना

  5. जावा सर्वर पेज - MySQL में डालने पर संयोजन?