gpt4 book ai didi

SQL不喜欢语句

转载 作者:行者123 更新时间:2023-12-04 20:39:37 26 4
gpt4 key购买 nike

如何从sys.tables中选择表,其中表名不包含特殊字(传递参数)。

我想选择所有包含单词“customer”的表,而不是那些以“old”结尾的表
名义上

数据库中的表名

客户1
客户2
客户3
customerold1
customerold2

输出想要的

客户1
客户2
客户3

最佳答案

SELECT * FROM sys.tables
WHERE TableName LIKE '%customer%'
AND TableName NOT LIKE '%old' -- note the lack of trailing '%'

LIKE (Transact-SQL)

关于SQL不喜欢语句,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3648644/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com