SQLAlchemy를 사용하여 MySQL에서 db를 만드는 방법은 무엇입니까? SQLAlchemy를 사용하여 MySQL에 DB를 만들어야 합니다. 이미 존재하는 경우 DB에 연결할 수 있지만 존재하지 않는 경우 DB를 만들 수 있기를 원합니다.내 테이블은 다음과 같습니다. #def __init__(self): Base = declarative_base() class utente(Base): __tablename__="utente" utente_id=Column(Integer,primary_key=True) nome_utente=Column(Unicode(20)) ruolo=Column(String(10)) MetaData.create_all() def __repr(self): return "utente:..