I am using the latest version of MonetDB for Windows and I have installed it on Windows 7.
Hello guys, I have recently started looking into MonetDB. End goal is to prepare prototype to demonstrate the query performance difference between MonetDB and SQL Server.
I have went through the MonetDB SQL Reference documentation but it is not clear to me that how should I prepare WHILE query.
Create table query:
sql>CREATE TABLE TestString ( Name VARCHAR(40) NULL );
Declare and set the local variable:
sql>delcare rowcount;
sql>set rowcount=1;
While query I tried:
sql>WHILE rowcount<1000000
sql>DO
sql>insert TestString Values CAST(uuid() as VARCHAR(50))
sql>set rowcount=rowcount+1
sql>END WHILE
I did tried different variations in the while query by specifying indentation but it still not right.
Can someone help me with getting the right syntax or point me to any helpful user manual for this?