sql >> Database teknologi >  >> RDS >> Mysql

SQLAlchemy Reflection:Hvordan forespørger jeg data fra specifikke kolonner?

Du skal blot angive kolonnerne for at vælge [session.query(testtable.c.password, testtable.c.username) ] i stedet for hele tabellen [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. Hvordan afkodes PostgreSQL bytea kolonne hex til int16/uint16 i r?

  2. Tillad kun brugere at få adgang til bestemte tabeller i min indholdsudbyder

  3. Hvordan kan jeg skrive SQLite Real-værdier til Java BigDecimal-værdier?

  4. Oracle Live SQL