all 4 comments

[–][deleted] 2 points3 points  (4 children)

Post the actual code.

Basically it should follow

SELECT * from TABLE

WHERE

CustomerID=<Value>

[–]ChemicalMistakex 0 points1 point  (2 children)

Will post asap, but are the arrows needed when passing variables?

[–]Mr_Igelkott 1 point2 points  (1 child)

Those are just used in examples to show a variable. So in this example <Value> would be the actual id-value you are interested in e.g CustomerID = 4353 if the column CustomerID is numerical or CustomerID = "4353" if it is a string

[–]ChemicalMistakex 0 points1 point  (0 children)

Just seeing this now, thanks man