MySQL的未知專欄中,我有一個MySQL未知列錯誤1054.我不能在我的數據庫表 我插入功能 public void Insert(string tablename ,string[] values, string[] columns)
{
string col = "(";
for (int x = 0; x < columns.Length; x++)
我試圖插入一個右連接的結果到我創建的表deal_classification_DM的列CATO_NAME。 選擇的結果是我期望的和程序運行良好,但數據不更新到表中。 有什麼問題? `INSERT INTO deal_classification_DM
(CATO_NAME)
SELECT
taxonomies.NAME
FROM
taxonomies
RIGHT JOI
有人可以幫助我更正我的代碼,因爲我無法在用戶表單工作中創建我的更新按鈕。下面是我的代碼: Private Sub CommandButton_update_Click()
Dim cNum As Integer
Dim x As Integer
Dim nextrow As Range
cNum = 7
Set nextrow = Sheet1.Cells(Rows.Count, 3)