我需要一些帮助一些tsql到mysql的翻译:)。
select id,
title,
release_date,
imdb_id,
spoken_languages,
runtime
into [DatabaseDestination].dbo.tableDestination
from [DatabaseSource].dbo.tableSource;
ALTER TABLE [DatabaseDestination].dbo.tableDestination;
ALTER COLUMN id float NOT NULL;
ALTER TABLE [DatabaseDestination].dbo.tableDestination add primary key (id);
如何在mysql[databasedestination].dbo.dmovie\u详细信息中进行这种通用引用或导航,以及如何翻译上面的代码?
2条答案
按热度按时间cbeh67ev1#
使用insert into---select from和for table navigation编写类似于databasedestination.tabledestination
iklwldmw2#
使用
INSERT INTO ... SELECT
:一般来说,最好总是指定要插入的列,尽管mysql不需要。我实际上不知道目标表中列的名称,所以我做了一个有根据的猜测,并假设它们与源表中的列名相同。
对于其他步骤,您应该在mysql中创建目标表时处理模式问题。