is their such a way i can do it then using only 1-parenthesis () separated only with comma (,)?
i mean its gonna be very tiresome if i'll input it individually. good thing if its only like less than 10 numbers. but i'm sure come a time that above 10 numbers will be inputted into the systems.
Are you trying to say you want to add multiple rows with one insert statement?
if sql server imo gamit pwede ani lang
Code:
INSERT INTO notes(phone)
SELECT 72091
UNION
SELECT 73321
UNION
SELECT 73778
UNION
SELECT 11271
kung dli gani pwede rka mag specify ug "from" na keyword
Tested this on oracle.
Code:
INSERT INTO notes(phone)
SELECT 72091 FROM notes
UNION
SELECT 73321 FROM notes
UNION
SELECT 73778 FROM notes
UNION
SELECT 11271 FROM notes
Depending on what db your using some have different ways of supporting multiple row insert.