You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
qiankanghui 08b02b4ad7 first commit 1 week ago
.gradle first commit 1 week ago
.idea first commit 1 week ago
.settings first commit 1 week ago
.svn first commit 1 week ago
build first commit 1 week ago
gradle/wrapper first commit 1 week ago
lib first commit 1 week ago
logs/sf first commit 1 week ago
src first commit 1 week ago
.classpath first commit 1 week ago
.project first commit 1 week ago
README.md first commit 1 week ago
build.gradle first commit 1 week ago
gradlew first commit 1 week ago
gradlew.bat first commit 1 week ago

README.md

#springboot

SpringBoot Web, JPA, DevTools,MySQL, Freemarker, Bootstrap

load data local infile 'f:\321.csv' into table importexcel fields terminated by '\t';

insert into sku (sku_barcode, sku_name, sku_spec, sku_unit) 
select C2, C1, C5, C4  from importexcel
 
ALTER TABLE `sku`
 	DROP INDEX `sku_barcode`,
 	ADD UNIQUE INDEX `sku_barcode` (`sku_barcode`);
 	
select sku_barcode,min(id) from sku group by sku_barcode having count(*) > 1