Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
gemispence
Yak Posting Veteran
71 Posts |
Posted - 2006-02-27 : 12:23:58
|
| I'm trying to use this query, but its giving me an error:select count (*) from table where validad = 1 as VALIDI just want to rename the query result column name to VALID but it's giving me a syntax error. It should be really simple. |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2006-02-27 : 12:47:28
|
| select count (*) as VALIDfrom table where validad = 1Tara Kizeraka tduggan |
 |
|
|
gemispence
Yak Posting Veteran
71 Posts |
Posted - 2006-02-27 : 12:56:43
|
| Thanks Tara :) |
 |
|
|
|
|
|