Chèn ngày giờ vào Table Insert into MESSAGES values (N'anbinhtrong','2011-04-02 15:33:33.000',N'nguyenieng',N'Chao ban'); Lấy dữ liệu từ bảng truy vấn trước: @Thoigian: giá trị nhận vào từ hàm chuyển đổi thời gian ALTER PROCEDURE [dbo].[spSendMsg] -- Add the parameters for the stored procedure here @NguoiNhan varchar(256), @DateTime varchar(256), @UserName varchar(256), @Noidung ntext, @Thoigian datetime output AS BEGIN SELECT @Thoigian=convert(datetime, @DateTime,20) --Select @Thoigian = @@IDENTITY Insert into MESSAGES values (@NguoiNhan,@Thoigian,@UserName,@Noidung); END