hi,
for example ;
select price from table
query results:195dollar
I want to see query result only numeric:195
how can I do?
You could try this:
select convert(int, price) as price from table
That would round the value to the nearest integer value.
|||Allen White wrote: You could try this:
select convert(int, price) as price from table
That would round the value to the nearest integer value.
Don't working :(
No comments:
Post a Comment