本文介绍了我想从具有用户类型而不是客户端的表中选择所有数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

usertype是我的领域之一,有不同的用户类型名称,分别是admin,manager,teamleader,client,employee.
我想选择所有不具有用户类型客户端作为值的数据.

请提供SQL查询.

usertype is one of my field, there are different usertypes names admin, manager, teamleader, client, employee.
I would like to select all data not having the usertype client as value.

Please provide the SQL query.

推荐答案

SELECT *
FROM <TableName>
WHERE usertype != 'client'



这篇关于我想从具有用户类型而不是客户端的表中选择所有数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 21:08