Search
 
SCRIPT & CODE EXAMPLE
 

SQL

calculer pourcentage mysql

SET @total = (
SELECT COUNT(id_gest_dossier)
FROM t_users_dossiers);
SELECT id_user,
COUNT(id_gest_dossier),
ROUND(COUNT(id_gest_dossier)/@total*100,3) AS '%'
FROM t_users_dossiers
GROUP BY id_user;
Comment

PREVIOUS NEXT
Code Example
Sql :: trunc sysdate in oracle 
Sql :: case construct in where clause 
Sql :: how to replace null values in sql 
Sql :: desinstaller mysql sur ubuntu definitivement 
Sql :: mysql range of dates overlap 
Sql :: how to get second highest salary in each department in sql 
Sql :: sqlite3 visual table schema 
Sql :: How to take sum of column with same id and different table in SQL? 
Sql :: sqlalchemy query sql compiled 
Sql :: stuff in sql server 
Sql :: create directory in sql server 
Sql :: convert all tables in database to from myisam to innodb 
Sql :: mysql inner join 
Sql :: how to dump .csv file into mysql 
Sql :: postgresql inheritance 
Sql :: postgres sql alter table delete row 
Sql :: postgres copy table 
Sql :: Pl/Sql table based record 
Sql :: psql: error: FATAL: database "odoo" does not exist 
Sql :: grab part of a string sql 
Sql :: oracle drop program 
Sql :: what is primary key 
Sql :: show create table in postgresql 
Sql :: apex for oracle 11g 
Sql :: function in sql 
Sql :: not in in mongodb 
Sql :: insert set mysql 
Sql :: adding column 
Sql :: SELECT SQL LIKE 
Sql :: how to use sqlcommand 
ADD CONTENT
Topic
Content
Source link
Name
3+9 =