var point1 =
new PointComponent(
"北京")
{
Location =
new Location { Latitude =
40.554000079631, Longitude =
116.05599966645 }
};
//大连 var point2 =
new PointComponent(
"大连")
{
Location =
new Location { Latitude =
38.92, Longitude =
121.62 }
};
//上海 var point3 =
new PointComponent(
"上海")
{
Location =
new Location { Latitude =
31.23, Longitude =
121.47 }
};
//重庆 var point4 =
new PointComponent(
"重庆")
{
Location =
new Location { Latitude =
29.57, Longitude =
106.55 }
};
geometryLayer.Add(point1);
geometryLayer.Add(point2);
geometryLayer.Add(point3);
geometryLayer.Add(point4);
var line =
new LineStringControl
{
Locations =
new ObservableCollection<Location>
{
new Location { Latitude =
40.554000079631, Longitude =
116.05599966645 },
new Location { Latitude =
38.92, Longitude =
121.62 },
new Location { Latitude =
31.23, Longitude =
121.47 },
new Location { Latitude =
29.57, Longitude =
106.55 }
}
};
Description:插入大量测试数据
use xmpl;
drop procedure if exists mockup_test_data_sp;
create procedure mockup_test_data_sp(
in number_of_records int
)
begin
declare cnt int;
declare name varch
MYSQL的随机抽取实现方法。举个例子,要从tablename表中随机提取一条记录,大家一般的写法就是:SELECT * FROM tablename ORDER BY RAND() LIMIT 1。但是,后来我查了一下MYSQL的官方手册,里面针对RAND()的提示大概意思就是,在ORDER BY从句里面不能使用RAND()函数,因为这样会导致数据列被多次扫描。但是在MYSQL 3.23版本中,