VB.NET中使用Linq TO SQL添加数据后获得自增长列ID: Dim tempOrdre As New Order With { .CustomerID = cmbCustomerName.SelectedValue.ToString, .ProductID = cmbProductSpec.SelectedValue.ToString, .ProductNumber = txtProductNumber.Text.Trim, .BatchNO = txtBatchNO.Text.Tri…
不解释: ---先创建外键的column ALTER TABLE tblLicenses ADD ProductID int not null; ---添加外键 ALTER TABLE tblLicenses ADD FOREIGN KEY (ProductID) REFERENCES tblProducts(ID) ---先创建外键的column Alter Table tblActivationRecords Add LicenseID bigint not null; ---添加带名字的外…
在sql语句中添加变量. declare @local_variable data_type 声明时需要指定变量的类型, 可以使用set和select对变量进行赋值, 在sql语句中就可以使用@local_variable来调用变量 声明中可以提供值,否则声明之后所有变量将初始化为NULL. 例如:declare @id int declare @id int = 3 set @id=2 select id select @id = column_id from table where colu…
添加远程用户root密码为password grant all privileges on *.* to root@localhost identified by '123321' with grant option grant all privileges on *.* to root@"%" identified by '123321' with grant option…
以前没有亲自添加过索引,今天添加了一下,果真强大.几百倍的速度提升. SELECT * FROM tbl_sys_menu m WHERE m.SID in (SELECT mr.MENU_SID FROM tbl_sys_mrole mr WHERE mr.ROLE_SID in (SELECT ur.ROLE_SID from tbl_sys_urole ur WHERE ur.USER_SID=(SELECT SID FROM tbl_sys_user u WHERE u.LOGIN_NA…
打开navicat连接上数据库,然后打开左上角函数,新建一个函数. BEGIN DECLARE i int; --声明变量 DECLARE groupid int; set i=LAST_INSERT_ID(); --拿到最后一个插入的id,避免id冲突 do --插入数据的多少 ; --随机函数 RAND()生成的是0~1之间的小数,乘以多少就可以放大多少倍,如起点不是0,则加上起点数 如20~80:RAND()*60+20 INSERT INTO `crm_project_list`(pro…