I have a table called JobTable with 1 field called Job#. The Job# field is an 8 digit number, e.g [3924020]. The below left function inserts 392 into a field called expr1. I would also like the remaining numbers [4020] to be put into their own field Expr2 using the same query below..
How do I accomplish this?
[blue]
SELECT Left([job#],3) AS Expr1
FROM [JobTable];[/blue]
How do I accomplish this?
[blue]
SELECT Left([job#],3) AS Expr1
FROM [JobTable];[/blue]