Click here to Skip to main content
15,894,646 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
SELECT item_description FROM mst_MiscItems WHERE item_type='Summary reports' ORDER BY item_value;

But item value contain Text so i want to convert in Number, in ms-aceess can any one please tell me corrction in above query . how to convert it from text to number in ms-access.
Posted

Use this.

SQL
SELECT CInt(item_description) FROM mst_MiscItems WHERE item_type='Summary reports' ORDER BY item_value;
 
Share this answer
 
hi.

try the links below.

[1]
[2]



hope it helps.
goodluck. :)



-chaosgray-
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900