have a table client.
---------------------
code Int
blocked tinyint
name varchar
have a table sells.
---------------------
data date
client Int
total float
I want update blocked field with 1 when there is no sells for the client.
---------------------
code Int
blocked tinyint
name varchar
have a table sells.
---------------------
data date
client Int
total float
I want update blocked field with 1 when there is no sells for the client.
Comment