4

我正在尝试添加一个默认整数值为 0 的临时列。

Playlist.select("playlists.*, 0 AS point_count")

这几乎是我想要的,唯一的区别是我希望 0 是一个 int,而不是一个字符串。我怎样才能做到这一点?

4

1 回答 1

1

Playlist.select("playlists.*, CAST(0 AS integer) AS point_count")

于 2013-04-30T21:48:52.907 回答