我正在尝试使用以下查询从 temp_table 将数据插入 bill_transaction 表中。
I = rgb2gray(imread('peppers.png')) ;
% If structured grid
[ny,nx] = size(I) ;
[X,Y] = meshgrid(1:nx,1:ny) ;
figure
ax = gca;
surf(X,Y,I)
shading interp
colormap(gray)
view(2)
set(gca,'Ydir','reverse')
%% If unstructured grid
dt = delaunayTriangulation(X(:),Y(:)) ;
p = dt.ConnectivityList ;
t = dt.Points ;
figure
ax = gca;
patch('faces',p,'vertices',t(:,1:2),'facevertexcdata',I(:),'facecolor','interp','edgecolor','none') ;
shading interp
colormap(gray)
view(2)
set(gca,'Ydir','reverse')
在 temp_table 和 bill_transaction 表中,有 bill_date 列,但在 bill_transaction 表中的 bill_date < / strong>数据类型为时间戳。 将数据插入 bill_transaction 表中时。将插入bill_date作为当前日期和时间,但应与 temp_table bill_date相同。
INSERT INTO bill_transaction (bill_number, bill_amount, bill_date)
SELECT bill_number, bill_amount, bill_date FROM temp_table