我有一个包含以下列的SQL表:
title, author, genre, rating
是否可以编写select
来添加输出额外的非空列src
,其中每个输入记录的默认值为“在线”?如:
select 'online' as src, title, author, genre, rating from table;
因此,结果记录应具有以下格式:
src, title, author, genre, rating
其中src =“online”表示每个输出记录
答案 0 :(得分:0)
它应该与你写的完全一样
select 'online' as src, title, author, genre, rating from table;