This question shows research effort; it is useful and clear
0
This question does not show any research effort; it is unclear or not useful
Bookmark this question.
Show activity on this post.
嗨,我正在尝试从数据库中选择两个 id,第二个我想将文本添加到结果中。
SELECT
A.PractitionerId,
'http://www.icuro.co.za/WebForms/Members/Appointments/AppointmentView.aspx?id=' + CAST(A.AppointmentId)
FROM
Appointment AS A WITH (NOLOCK)
SELECT
A.PractitionerId,
'http://www.icuro.co.za/WebForms/Members/Appointments/AppointmentView.aspx?id=' + CAST(A.AppointmentId as varchar(50))
FROM
Appointment AS A WITH (NOLOCK)