Reputation: 26444
I'm migrating a SQL Server database that has sql_variant
columns to a MySql database.
What's the equivalent of this type in the MySql world?
Upvotes: 0
Views: 933
Reputation: 46
AFAIK there is no equivalent datatype in MySQL. This is why one should wehere ever possible rely on the ANSI standard and not use provider specific types, functions, ...
Depending on the content of this columns (if no binary content was inserted) you could use varchar I guess.
Upvotes: 3