How to delete records from a column which belong to a different data type?
问题 So I inserted few records in a table manually (without using Stored procedure) and rows were fine under a column " COLMN ". Then I tried to automate it by using dynamic-SQL in stored procedure. Unfortunately I ended up appending rubbish records (entered float in a column which was meant to be Char). How can I delete these selected rubbish records which don't belong? Here is how my table looks like: ...And I want to delete those numeric records (from column " COLMN ") I planned to achieve this