MySQL(maria DB) Trouble Shorting





  •  
  • sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (1054, "Unknown column ' * ' in 'field list'")
    • Unknow column in field list ERROR
    • Case 1 (이유1) :  If the table does not exist in column (column에 테이블이 존재하지 않는 경우)
    • Case 2 (이유2) :  When the data given by the user as a string is not surrounded by " or ' (quotation) (사용자가 문자열로 준 데이터가 " or ' (quotation)으로 둘러싸여 있지 않은 경우)
  • sqlalchemy.exc.OperationalError: (pymysql.err.OperationalError) (1292, "Incorrect date value: '' for column
    • mysql의 'date' type은 ''(비어있는 val을 갖지 못한다.)

0 댓글