Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有以下简单(我认为)的要求:
有一个值可以说'1',然后我有一个表,其中一列有不止一行。
需要什么 SQL 才能返回两列,第一列的所有值都是“1”,第二列是表中的值。
谢谢,布鲁斯
select 1 as yourValue, yourField from yourTable
那 ?
编辑:
更重要的是,如果它是作为参数(在变量中)出现的值,您也可以这样做
select @yourVariable as yourValue, yourField from yourTable
您只需要将SELECT值作为一列,如下所示:
SELECT
SELECT '1', col1, ... FROM tbl