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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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.