本文介绍了如何实现这个简单的查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

亲爱的朋友解决这个简单的查询。



以下是表结构

表名:Present

Id IsPresent

1 P

2 P

3 A

4 A



在sql中写入查询,将所有'P'从IsPresent字段更新为'A',将所有'A'更新为'P'。

预期答案:

Id IsPresent

1 A

2 A

3 P

4 P





先谢谢!

Dear Friend solve this simple query.

Following is table structure
Table Name: Present
Id IsPresent
1 P
2 P
3 A
4 A

Write query in sql to update all ‘P’ from IsPresent field to ‘A’ and all ‘A’ to ‘P’.
Expected Ans:
Id IsPresent
1 A
2 A
3 P
4 P


Thanks in advanced !

推荐答案


这篇关于如何实现这个简单的查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-14 23:01