greetings all
I want to insert 70 records in a table
the values are value1,value2,…value70
and I was wondering if it’s possible to accomplish this through a SQL query
I am using postgresql db.
thanks in advance.
greetings all I want to insert 70 records in a table the values are
Share
Where do the values come from? Are they arbtrary values? Just use a multiple insert statement, like:
Are they values that can be generated from the integers 1 to 70? If so, use the set returning function
generate_series:Are they just in some other table? Just reference it normally: