Click here to Skip to main content
15,888,461 members
Home / Discussions / Database
   

Database

 
GeneralRe: It Should Print 12 but the output is NULL , Please tell me How to SET VALUE For the VAriable declare outside the SQL Text cretaed for dynamic query Pin
Dnyaneshwar@Pune14-Feb-14 1:05
Dnyaneshwar@Pune14-Feb-14 1:05 
QuestionSQL query for availability Error Pin
Sniper 312-Feb-14 19:10
professionalSniper 312-Feb-14 19:10 
AnswerRe: SQL query for availability Error Pin
Chris Quinn12-Feb-14 20:52
Chris Quinn12-Feb-14 20:52 
GeneralRe: SQL query for availability Error Pin
Sniper 312-Feb-14 21:05
professionalSniper 312-Feb-14 21:05 
GeneralRe: SQL query for availability Error Pin
Chris Quinn12-Feb-14 21:08
Chris Quinn12-Feb-14 21:08 
GeneralRe: SQL query for availability Error Pin
Mycroft Holmes12-Feb-14 22:02
professionalMycroft Holmes12-Feb-14 22:02 
Questioncalculate percentage of two column value and store into other column Pin
Member 1056208612-Feb-14 19:00
Member 1056208612-Feb-14 19:00 
AnswerRe: calculate percentage of two column value and store into other column Pin
Simon_Whale12-Feb-14 22:29
Simon_Whale12-Feb-14 22:29 
What are your data types for the TotalCount variables? are they of Decimal type?

if so then have a look at this

SQL
DECLARE @value1 DECIMAL(18,2)
DECLARE @value2 DECIMAL(18,2)

SET @value1 = 2
SET @value2 = 500

SELECT (@value1 / @value2)*100
SELECT CAST((@value1 / @value2)*100 AS DECIMAL(18,2))

Every day, thousands of innocent plants are killed by vegetarians.

Help end the violence EAT BACON

GeneralRe: calculate percentage of two column value and store into other column Pin
Member 1056208612-Feb-14 22:41
Member 1056208612-Feb-14 22:41 
GeneralRe: calculate percentage of two column value and store into other column Pin
Simon_Whale12-Feb-14 22:45
Simon_Whale12-Feb-14 22:45 
AnswerRe: calculate percentage of two column value and store into other column Pin
Nicholas Swandel21-Feb-14 4:05
Nicholas Swandel21-Feb-14 4:05 
QuestionBest Database Configures with c# win. form Pin
agent_kruger11-Feb-14 1:04
professionalagent_kruger11-Feb-14 1:04 
AnswerRe: Best Database Configures with c# win. form Pin
Kornfeld Eliyahu Peter11-Feb-14 1:48
professionalKornfeld Eliyahu Peter11-Feb-14 1:48 
GeneralRe: Best Database Configures with c# win. form Pin
agent_kruger11-Feb-14 4:18
professionalagent_kruger11-Feb-14 4:18 
AnswerRe: Best Database Configures with c# win. form Pin
Kornfeld Eliyahu Peter11-Feb-14 4:24
professionalKornfeld Eliyahu Peter11-Feb-14 4:24 
GeneralRe: Best Database Configures with c# win. form Pin
GuyThiebaut11-Feb-14 4:54
professionalGuyThiebaut11-Feb-14 4:54 
GeneralRe: Best Database Configures with c# win. form Pin
Kornfeld Eliyahu Peter11-Feb-14 6:52
professionalKornfeld Eliyahu Peter11-Feb-14 6:52 
GeneralRe: Best Database Configures with c# win. form Pin
Member 1039216111-Feb-14 7:11
Member 1039216111-Feb-14 7:11 
QuestionRe: Best Database Configures with c# win. form Pin
Richard Deeming11-Feb-14 8:29
mveRichard Deeming11-Feb-14 8:29 
AnswerRe: Best Database Configures with c# win. form Pin
Jörgen Andersson12-Feb-14 3:15
professionalJörgen Andersson12-Feb-14 3:15 
GeneralRe: Best Database Configures with c# win. form Pin
Kornfeld Eliyahu Peter11-Feb-14 9:32
professionalKornfeld Eliyahu Peter11-Feb-14 9:32 
GeneralRe: Best Database Configures with c# win. form Pin
Richard Deeming11-Feb-14 8:35
mveRichard Deeming11-Feb-14 8:35 
GeneralRe: Best Database Configures with c# win. form Pin
S Douglas26-Feb-14 9:04
professionalS Douglas26-Feb-14 9:04 
GeneralRe: Best Database Configures with c# win. form Pin
agent_kruger26-Feb-14 18:25
professionalagent_kruger26-Feb-14 18:25 
GeneralRe: Best Database Configures with c# win. form Pin
S Douglas27-Feb-14 4:11
professionalS Douglas27-Feb-14 4:11 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.