SQL:选择添加额外的**非null **列?

时间:2014-07-29 08:04:43

标签: sql select

我有一个包含以下列的SQL表:

title, author, genre, rating

是否可以编写select来添加输出额外的非空src,其中每个输入记录的默认值为“在线”?如:

select 'online' as src, title, author, genre, rating from table;

因此,结果记录应具有以下格式:

src, title, author, genre, rating

其中src =“online”表示每个输出记录

1 个答案:

答案 0 :(得分:0)

它应该与你写的完全一样

select 'online' as src, title, author, genre, rating from table;