Mysql
 sql >> Teknologi Basis Data >  >> RDS >> Mysql

Refleksi SQLAlchemy:Bagaimana cara saya meminta data dari kolom tertentu?

Cukup tentukan kolom untuk memilih [session.query(testtable.c.password, testtable.c.username) ] alih-alih seluruh tabel [session.query(testtable) ]:

def TestConnection():
    data = None
    loopCounter = 0 
    for data in session.query(testtable.c.password, testtable.c.username).filter_by(is_active=1, is_deleted=0): 
        pwd, usr = data
        print(loopCounter + 1, pwd, usr)
        loopCounter += 1
    if data is None:
        raise Exception ("Could not find any data that matches your query")        
    else:
        print("It worked!")



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Apakah ada cara yang lebih sederhana untuk menemukan MODE(S) dari beberapa nilai di MySQL

  2. Menghubungkan ke Database MySQL di .NET

  3. Mysql atau/dan didahulukan?

  4. PHP Cara terbaik untuk men-cache hasil MySQL?

  5. SQL untuk mendapatkan teman DAN teman dari teman pengguna