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

जावा में Oracle Sql स्टेटमेंट

नोट:यह उत्तर मूल प्रश्न पर लागू होता है।

एनोटेशन के साथ SQL स्टेटमेंट:

select a.name           -- 'a' is undefined
     , ird_num          -- note: always qualify (helps others read it)
     , loan_num         --   same
     , contract_date    --   same
  from a2_loan          -- is this support to have alias 'a'?
     , customer b       -- not table `a2_customer`
     , customer c       -- not table `a2_customer`
 where aname=b.ird_num  -- missing period(?), and 'a' is undefined
   and b name=c.name    -- missing period



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. उन पंक्तियों को कैसे गिनें जिनमें sql में गैर शून्य मान हों

  2. मैं BLOB को छोड़कर सभी क्षेत्रों में एक चयन DISTINCT कैसे कर सकता हूं?

  3. ORA-00923:जहां अपेक्षित था, वहां से कीवर्ड नहीं मिला - SQLDeveloper

  4. ओरेकल एसक्यूएल डेवलपर में क्लॉब फील्ड डेटा कैसे निर्यात करें?

  5. पंक्तियों का चयन करें जब Oracle में दिनांक के बीच स्तंभ मान बदलता है?