1> X = 10.
10
2> Y = 9.
9
3> X - 1 = Y.
* 1: illegal pattern
4> Y = X - 1.
9
5> 10 - 1 = Y.
9
Can you explain to me what illegal pattern in query 3>
is? Thanks!
The variable that you are binding to needs to be on the left side, not the right.
This is the correct expression:
Y = X - 1.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With