Error converting data type varchar

前端 未结 8 1500
既然无缘
既然无缘 2020-12-20 15:07

I currently have a table with a column as varchar. This column can hold numbers or text. During certain queries I treat it as a bigint column (I do

8条回答
  •  遥遥无期
    2020-12-20 15:25

    Consider creating a redundant bigint field to hold the integer value of af MyCol.

    You may then index the new field to speed up the join.

提交回复
热议问题