我有一个SQL
表,如果其他列中有数据,则在该表中需要设置一BIT
列。"IsComplete"
IsComplete
最初是由应用程序中的复选框处理的,我想将责任转移到SQL DB
处理将这个“ IsComplete
”列设置为 true 基于以下内容:
IsComplete = true if column1 = [something] and column2 = [something] and column3 = [something]
IsComplete = false if column1, column2 or column3 is null or = [nothing]
我该如何做到这一点。