How to Generate Dynamic Sql Insert Statements in Ms Excel
Excel is a very powerful tool, you can use it in a lot of things. For me, I often use it to geenrate dynamic database inserts. For example y...
https://www.czetsuyatech.com/2021/07/sql-generate-dynamic-sql-inserts-in-excel.html
Excel is a very powerful tool, you can use it in a lot of things.
For me, I often use it to geenrate dynamic database inserts.
For example you have columns, A, B, C with values name, address and birthday. Then D should have the following formula:
For me, I often use it to geenrate dynamic database inserts.
For example you have columns, A, B, C with values name, address and birthday. Then D should have the following formula:
="INSERT INTO employees (name, address, birthday) VALUES ("&A1&","&B1&","&C1&")"
Post a Comment