我在我的表comment中添加了一個外鍵id_customer。 但現在我需要將這個外鍵id_customer與主鍵同步到customer表中。 爲此我將電子郵件比較爲customer和comment。 UPDATE comment
SET comment.id_customer = customer.id
FROM comment, customer
WHERE c
我讓自己熟悉DATEPART,在這種情況下是周部分,以獲得每週的結果等等。 我知道它適用於以下查詢。 var querytest = "SELECT DATEPART(wk, date), sum((kg * rep * sett)) as weight,
sum(kg/max * rep * sett) as avg, sum((rep * sett)) as reps
FROM Test
我正在使用Microsoft Access。 我有兩個表,生產和試劑。 Reagents
- Reagent Reference ID (text)
- Supplier (text)
Production
- Production Reference ID (text)
- C Reference ID (text) (matches Reagents.Reagent Referen
我在SQL Server中看到下面的查詢似乎並沒有在firebird中運行。 UPDATE TABLE1
SET FIELD1 = XFER.FIELD2
FROM COMPANY
INNER JOIN TABLE2 AS XFER
ON TABLE1.FIELD1 = XFER.FIELD1 WHERE FIELD1 not like 'STRING1%'
我該如何將其轉換爲火鳥?如