我想從表(item2)的一個表(item1)和不在該item2表中的日期中插入一些值。使用select語句將Sql插入到語句中
如何使用select語句將SQL插入寫入語句來實現該目標?
如:
INSERT into item1(date, name, qty)
values(datevalue, select col1, col2 from item2);
這是行不通的。我該怎麼做才能解決它?
insert into daily_stock(date, product_id, name, weight, qty, free_issues, sales_price,
purchased_price, category, last_purchased_date)
select
**'"+today+"'**,
productId, name, weight, newQty, freeIssues, NewSalesPrice,
NewPurchasePrice, category, datePurchased
from product
我使用java,今天是一個字符串變量,仍然沒有數據插入,什麼是錯的?
http://stackoverflow.com/questions/224732/sql-update-from-one-table-to-another-based-on-a-id-match –