SQL SELECT FROM ... AS与数据类型说明符?

时间:2008-10-09 13:40:13

标签: sql postgresql

我在Postgresql上遇到SQL查询问题。这个select子句是关于数据库的讲座的一个例子:

1 select t.CourseNr, t.StudentsPerCourse, g.StudentCount, 
2        t.StudentsPerCourse/g.StudentCount as Marketshare
3 from (select CourseNr, count(*) as StudentsPerCourse
4       from taking
5       group by CourseNr) t,
6      (select count(*) as StudentCount
7       from Students) g;

问题是第2行的Marketshare列.LearningPerCourse和StudentCount都是整数类型。

在我的Postgresql数据库上使用它时,Marketshare列被评估为int类型,而我需要一个float / numeric。我没有找到任何方法来通过在SELECT子句上搜索Postgresql文档或通过googling来指定数据类型。是否有(最好是标准的SQL)方式来指定列类型,或者我在这里遗漏了什么?

1 个答案:

答案 0 :(得分:10)

CAST()一个或两个源列为decimal / float / real / double / etc类型。