早上好,伙计们,我想在我的mysql桌子上插入不同的时间(没有日期!)
mysql> insert into table zeiten(erste_abfahrt,letzte_abfahrt,linie) values ('05:08:00','23:56:00',11);erste_abfahrt和letzte_abfahrt来自time类型,Linie来自int类型。
我找不到我的mistake.Please帮我。
诚挚的问候
发布于 2015-04-02 09:44:47
错误是插入逗号。
insert into table zeiten你在这里不需要table,它应该是
insert into zeitenhttps://stackoverflow.com/questions/29409710
复制相似问题