如何获取嵌套大小写参数以返回值

时间:2016-05-04 04:42:14

标签: sql-server

我希望在这个case case的嵌套中有2个值,所以我可以将它们插入到结果表中以检查匹配,然后我从#game表更新结果。我已将update作为select语句的一部分。 我得到了

  

无效的列错误

<{1}}和standard_matches上的

。 然后我尝试在case参数之后得到一个值并且具有相同的错误。 这是案例参数代码。

bonus_match

1 个答案:

答案 0 :(得分:0)

我想这就是你想要的?

Server.c: In function ‘createResponse’:
Server.c:81:5: warning: ignoring return value of ‘write’, declared with attribute warn_unused_result [-Wunused-result]
     write(chat_socket, temp_buff, MSG_SIZE);
     ^

Server.c: In function ‘chat_room_main’:
Server.c:237:25: warning: ‘chat_socket’ may be used uninitialized in this function [-Wmaybe-uninitialized]
                         close(chat_socket);
                         ^

Server.c: In function ‘main’:
Server.c:319:36: warning: array subscript is above array bounds [-Warray-bounds]
                             msg_buf[19]= 0;

Client.c: In function ‘connectChat’:
Client.c:113:20: warning: passing argument 1 of ‘memset’ makes pointer from integer without a cast
             memset(temp, 0, sizeof(buf));
                    ^