Error Creating View From Importing MysqlDump
Posted
by Joshua
on Stack Overflow
See other posts from Stack Overflow
or by Joshua
Published on 2010-04-01T22:28:01Z
Indexed on
2010/04/01
22:33 UTC
Read the original article
Hit count: 353
mysql
I don't speak SQL... Please, anybody help me. What does this mean?:
Error SQL query:
/*!50001 CREATE ALGORITHM=UNDEFINED *//*!50001 VIEW `v_sr_videntity` AS select `t`.`c_id` AS `ID`,`User`.`c_id` AS `UserID`,`videntityfingerprint`.`ID` AS `VIdentityFingerPrintID`,`videntityfingerprint`.`FingerPrintID` AS `FingerPrintID`,`videntityfingerprint`.`FingerPrintFingerPrint` AS `FingerPrintFingerPrint` from ((`t_SR_u_Identity` `t` join `t_SR_u_User` `User` on((`User`.`c_r_Identity` = `t`.`c_id`))) join `vi_sr_videntity_0` `VIdentityFingerPrint` on((`videntityfingerprint`.`c_r_Identity` = `t`.`c_id`))) */;
MySQL said:
#1054 - Unknown column 'videntityfingerprint.ID' in 'field list'
What does this mean? What is it expecting? How do I fix it? This file was created by mysqldump, so why are there errors when I import it?
© Stack Overflow or respective owner