select
0
as
PlatformID,
'
官网
'
as
Name,
cast
(
null
as
bigint
)
as
ParentID
union
select
PlatformID,Name,
cast
(
null
as
bigint
)
as
ParentID
from
TB_Platform
where
IsDelete
!=
1
and
Status
!=
0
可以用这种方式来在数据表中加一行
可以用这种方式来在数据表中加一行
主要用于把多个SQL的结果组合起来