gpt4 book ai didi

tsql - 如何使用SQL Server 2005在TSQL中以所需的文本打印值

转载 作者:行者123 更新时间:2023-12-04 13:16:52 25 4
gpt4 key购买 nike

我想从customers数据表中选择一个值。采访中有人问我这个问题。

Select cust_Name from customers where cust_Id=5;

将结果为 Naresh

现在我想将值打印为
Customer Name is Naresh

我该如何打印这样的值。谢谢

最佳答案

Select 'Customer Name is ' + cust_Name from customers where cust_Id=5;

或者
Declare @CustomerName varchar(50)
Select @CustomerName = cust_Name from customers where cust_Id=5;
Print 'Customer Name is ' + @CustomerName ;

关于tsql - 如何使用SQL Server 2005在TSQL中以所需的文本打印值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16556745/

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