How to add multipal rows in a single column in sql | Sololearn: Learn to code for FREE!
Nouvelle formation ! Tous les codeurs devraient apprendre l'IA générative !
Essayez une leçon gratuite
0

How to add multipal rows in a single column in sql

we have already exists table ...and suppose we add another column ..then I want to add multiple values in that single column

15th Mar 2017, 6:37 AM
Shravan Sawant
Shravan Sawant - avatar
1 Réponse
0
Using Sum() function you can add multiple rows. Select sum(column_name) from table_name
15th Mar 2017, 6:31 PM
Prince Painadath