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

जाँच कर रहा है कि क्या अजगर के तहत एक पोस्टग्रेस्क्ल टेबल मौजूद है (और शायद Psycopg2)

कैसा रहेगा:

>>> import psycopg2
>>> conn = psycopg2.connect("dbname='mydb' user='username' host='localhost' password='foobar'")
>>> cur = conn.cursor()
>>> cur.execute("select * from information_schema.tables where table_name=%s", ('mytable',))
>>> bool(cur.rowcount)
True

EXISTS का उपयोग करने वाला एक विकल्प इस मायने में बेहतर है कि सभी पंक्तियों को पुनः प्राप्त करने की आवश्यकता नहीं है, लेकिन केवल यह कि कम से कम एक ऐसी पंक्ति मौजूद है:

>>> cur.execute("select exists(select * from information_schema.tables where table_name=%s)", ('mytable',))
>>> cur.fetchone()[0]
True


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. PostgreSQL में संख्यात्मक स्वरूपण के लिए टेम्पलेट पैटर्न और संशोधक

  2. डेटाबेस में पंक्तियों को सम्मिलित करने के लिए लूप के लिए SQL का उपयोग कैसे करें?

  3. रेल:ActiveRecord::Base . के लिए कोई कनेक्शन पूल नहीं

  4. आपदा वसूली के लिए PostgreSQL प्रतिकृति

  5. मौजूदा PostgreSQL डेटाबेस पर TimescaleDB को कैसे सक्षम करें