Skip to content

Instantly share code, notes, and snippets.

@maxkrieger
Created October 13, 2023 02:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save maxkrieger/92e177867627e85e75b40c3733fd9ceb to your computer and use it in GitHub Desktop.
Save maxkrieger/92e177867627e85e75b40c3733fd9ceb to your computer and use it in GitHub Desktop.
[{"text_1": "Optimizing join in vertica", "text_2": "SELECT a.online_page_key \nFROM online_sales.online_sales_fact a \n JOIN (SELECT * \n FROM online_sales.online_page_dimension \n WHERE page_type = 'quarterly') b \n ON b.online_page_key = a.online_page_key;\n", "label": 1}, {"text_1": "Informix DB - SQL Group By Year, Month, Week, Day, Hour", "text_2": "SELECT contest_id, YEAR(submission_date) AS submission_period, COUNT(*),\n \"Y\" AS sub_type\n FROM submissions\n GROUP BY 1, 2\nUNION ALL\nSELECT contest_id, MONTH(submission_date) AS submission_period, COUNT(*),\n \"M\" AS sub_type\n FROM submissions\n GROUP BY 1, 2\nUNION ALL\nSELECT contest_id, DAY(submission_date) AS submission_period, COUNT(*),\n \"D\" AS sub_type\n FROM submissions\n GROUP BY 1, 2\nORDER BY 1, 4, 2\n", "label": 1}, {"text_1": "Performance for delete query in sql", "text_2": "List<int> myIDs = GetIDs(); //20,000\nvar inList = myIDs.Distinct(); //5,000 distinct IDs\n//pass inList to SQL\n", "label": 1}, {"text_1": "Selecting arrays in nicely printed format in SQL", "text_2": "{{0,0,0}}\n{{1,1,1}}\n{{2,2,2}}\n", "label": 1}, {"text_1": "SQL: Get records that satisfy conditions coming from multiple records", "text_2": "SELECT CustomerID\nFROM CustomerList\nWHERE ProductID IN ('A', 'B')\nGROUP BY CustomerID\nHAVING COUNT(*) = 2\n", "label": 1}, {"text_1": "get distinct records without NOT IN query", "text_2": "SELECT CONCAT(u.email, CONCAT('@', d.name))\nFROM \n user u\n JOIN domain d\n ON u.domain_id = d.domain_id\n LEFT JOIN admin a\n ON u.id = a.id AND u.domain_id = a.domain_id\nWHERE \n a.id IS NULL\n", "label": 1}, {"text_1": "The Mysql command line doesn't launch", "text_2": "select * from tablename limit 1;\n", "label": 1}, {"text_1": "Accessing SELECT's computed values in WHERE clause", "text_2": "SELECT * FROM lorem;\n+-------+\n| ipsum |\n+-------+\n| 33 |\n| 41 |\n+-------+\n", "label": 1}, {"text_1": "How to do calculations on json data in Postgres", "text_2": "SELECT d.sum_conversions\nFROM report r\nLEFT JOIN LATERAL (\n SELECT sum((value->>'conversions')::int) AS sum_conversions\n FROM jsonb_array_elements(r.data)\n ) d ON true\nWHERE r.report_id = 12345; -- enter report_id here\n", "label": 1}, {"text_1": "Joining in ms access", "text_2": "select PS.Event_ID, PS.Event_Type, PS.Event_Incharge, PS.Event_Date, PA.Customer_ID\nfrom (Product_AMC PA\ninner join Payment_Schedule PS on (PS.Event_Type='AMC' and PS.Event_ID=PA.AMC_ID))\nwhere PA.Customer_ID = 'ABC'\nunion all\nselect PS.Event_ID, PS.Event_Type, PS.Event_Incharge, PS.Event_Date, IO.Customer_ID\nfrom (Item_Order IO\ninner join Payment_Schedule PS on (PS.Event_Type='Order' and PS.Event_ID=IO.Order_ID))\nwhere IO.Customer_ID = 'ABC'\n", "label": 1}, {"text_1": "Mysql Query return Null in mysql 5.6.12 but runs on mysql 5.5.8", "text_2": "SELECT DATE_ADD( NOW(), INTERVAL ROUND( SEC_TO_TIME( TIMESTAMPDIFF(SECOND, NOW(), \"2013-11-13 15:13:00\" ) / 2 ) ) HOUR_SECOND );\n", "label": 1}, {"text_1": "Many to many query", "text_2": "SELECT Products.name\nFROM Products\nWHERE NOT EXISTS (\n SELECT id\n FROM Sections\n WHERE name IN ('new','car')\n AND NOT EXISTS (\n SELECT *\n FROM Products_sections\n WHERE Products_sections.section_id = Sections.id\n AND Products_sections.product_id = Products.id\n )\n)\n", "label": 1}, {"text_1": "How to merge this two query statement into one query statement", "text_2": "SELECT * \nFROM instalmentsdetails as inds\nINNER JOIN (\n SELECT max(`receiptNo`) as `maxreceiptNo` \n FROM instalmentsdetails\n) as maxt\nWHERE inds.instalmentName='Third Installment' AND inds.studentFeeId='1'\n", "label": 1}, {"text_1": "how to get last weeek dates from today to last 7 days date", "text_2": " select Registereddate, orgid\n from your_table\n where Registereddate > DATEADD(day, -7, CONVERT(datetime, CONVERT(char(10), GETDATE(), \n101)))\n\nand DATEPART(week, Registereddate) = DATEPART(week, GETDATE())\n", "label": 1}, {"text_1": "Suggestions to modify pivot query in SQL Server to get desired output", "text_2": "insert into Destination values\n\n('CZ_0', 'PFC', 2717.64, 1),\n('CZ_0', 'WFC', 3218.22, 2),\n('CZ_0', 'OFC', 3971.14, 3),\n('CZ_0', 'FFC', 4226.69, 4),\n('CZ_10001','FFC', 64.13, 1),\n('CZ_10001','OFC', 564.11, 2),\n('CZ_10001','WFC', 2511.03, 3),\n('CZ_10001','PFC', 2867.75, 4)\n", "label": 1}, {"text_1": "SQL how to select unique one-to-one pairings", "text_2": "WITH cte AS\n ( SELECT\n id, person, spouse, \n ROW_NUMBER() OVER( PARTITION BY person, spouse \n ORDER BY id )\n AS rn\n FROM\n people\n ) \nSELECT\n p.id AS id1,\n q.id AS id2 \nFROM\n cte AS p\n JOIN cte AS q ON\n p.person = q.spouse AND \n q.person = p.spouse AND\n p.rn = q.rn AND\n p.id < q.id ;\n", "label": 1}, {"text_1": "Sql cast to float without scientific notation", "text_2": "declare @value float = 0.000050\nselect str(@value,12,6)\n", "label": 1}, {"text_1": "mySQL order by clause weird problem", "text_2": "SELECT * \n FROM customers \n ORDER BY CAST(SUBSTRING_INDEX(CUST, '.', -1) AS SIGNED) DESC\n", "label": 1}, {"text_1": "sql database - each row in a table with extra data in different tables", "text_2": "car_id, color, size, num_wheels\n", "label": 1}, {"text_1": "SQL Get Last Occurrence of Field Against Each Row", "text_2": "SELECT\n D.DocumentID,\n D.Reference,\n LastDocumentID = (\n SELECT TOP 1 R.DocumentID\n FROM dbo.Documents R\n WHERE\n D.Reference = R.Reference\n AND R.DocumentID < D.DocumentID\n ORDER BY R.DocumentID DESC\n )\nFROM\n dbo.Documents D\n;\n", "label": 1}, {"text_1": "SQL bitwise query to pull multiple days of events, while obeying other \"filters\"", "text_2": " (FreqType = 8 \n AND ( (FreqInterval & 2) = 2 OR (FreqInterval & 4) = 4) )\n )\n", "label": 1}, {"text_1": "Select 3 by 3 sql", "text_2": "select * from table where table_id % 3 = 0\n", "label": 1}, {"text_1": "oracle specific column accepts a specific format of character", "text_2": "CHECK (regexp_like(myCol,'^[[:digit:]]+$'))\n", "label": 1}, {"text_1": "Why do I need two copies of a table in SQL?", "text_2": " select E1.SNUM\n from ENROLLED E1 \ninner join ENROLLED E2 on E1.SNUM = E2.SNUM\ninner join CLASS C1 on E1.CNAME = C1.NAME\ninner join CLASS C2 on E2.CNAME = C2.NAME\n where E1.CNAME <> E2.CNAME\n and C1.MEETS_AT = C2.MEETS_AT\n", "label": 1}, {"text_1": "Indexes, EXPLAIN PLAN, and record access in Oracle SQL", "text_2": "SELECT COUNT(*), COUNT(DISTINCT( Occupation ))\nFROM EMPLOYEE;\n", "label": 1}, {"text_1": "Mine Reporting based on one field and the presence of two values", "text_2": "SELECT COUNT(*) AS Transfers\nFROM CallRecordsAgents \nWHERE Agent2 = \"Bob\"\n", "label": 1}, {"text_1": "How to analyse the oracle statspack which is in the html format?", "text_2": "bytes received via SQL*Net from c 166,752,176 114,213.8 7,267.2\nbytes sent via SQL*Net to client 282,458,320 193,464.6 12,309.7\n", "label": 1}, {"text_1": "What is a Covered Index?", "text_2": "SELECT *\nFROM tablename\nWHERE criteria\n", "label": 1}, {"text_1": "SQL meta-related queries", "text_2": "mt1.`key` = 'hide'\n", "label": 1}, {"text_1": "T-SQL code to get a DateTime contain only Month and Year from any DateTime", "text_2": "SELECT\n COUNT(*) as CountOF\n ,dateadd(month,datediff(m,0,EventTime),0)\n FROM [Event]\n GROUP BY dateadd(month,datediff(m,0,EventTime),0)\n ORDER BY 2\n", "label": 1}, {"text_1": "SQL get AVG from COL1, Where COL2 = 0", "text_2": "SELECT AVG( size ) \nFROM results\nWHERE material <> 0 AND size <= 1000;\n", "label": 1}, {"text_1": "Two Digit date format in SQL", "text_2": "concat(Name, ....) AS ...\n", "label": 1}, {"text_1": "db2 V9.1 deadlocks", "text_2": "select * from sysibmadm.locks_held\nselect * from sysibmadm.lockwaits\n", "label": 1}, {"text_1": "How to normalize a SQL Database", "text_2": "CREATE TABLE tbl_Date\n(\nDateID int PRIMARY KEY IDENTITY(1,1)\n ,DateValue datetime\n)\n\nINSERT INTO tbl_Date (DateValue)\nSELECT DISTINCT Date\nFROM tbl_Data\nWHERE Date NOT IN (SELECT DISTINCT DateValue FROM tbl_Date)\n", "label": 1}, {"text_1": "MySQL ORDER BY grouped fields", "text_2": "SELECT * FROM tableA \nORDER BY CASE WHEN sector IN ('1&2', '1', 'unknown') THEN 1 \n WHEN sector = '2' THEN 2 \n WHEN sector = '3' THEN 3 ELSE 4 \n END \n", "label": 1}, {"text_1": "Subtracting timestamp in oracle returning weird data", "text_2": "with dates as (\n select timestamp '2012-04-27 09:00:00' as col1,\n timestamp '2012-04-26 17:35:00' as col2\n from dual\n)\nselect col1 - col2 as ts_difference,\n cast(col1 as date) - cast(col2 as date) as dt_difference\nfrom dates;\n", "label": 1}, {"text_1": "How do I get the number of inserts/updates occuring in an Oracle database?", "text_2": "ALTER TABLE table_name\n MONITORING;\n", "label": 1}, {"text_1": "MySQL count rows in one table based on dates in another table", "text_2": "SELECT c.Id, c.EventFrom, c.EventTo, COUNT(e.ID)\nFROM CUSTOMERS c\nLEFT JOIN EVENTS e ON e.ID = c.ID AND \n e.EventDate BETWEEN c.EventFrom AND c.EventTo\nGROUP BY c.Id, c.EventFrom, c.EventTo\n", "label": 1}, {"text_1": "Would a partial index be used on a query?", "text_2": "Seq Scan on orders (cost=0.00..195.00 rows=1 width=8) Filter: ((id = 123) AND (created_at = '2014-10-12'::date))\n", "label": 1}, {"text_1": "Multiple queries in one statement", "text_2": "select \n (select count(*) as REDEEMTOTALUSED \n from voucher \n where campaign_id='123' and redeemcount>0) AS REDEEMTOTALUSED ,\n (select count(*) as REDEEMTOTALUNUSED \n from voucher \n where campaign_id='123' and redeemcount=0) AS REDEEMTOTALUNUSED \n", "label": 1}, {"text_1": "update statement not executing", "text_2": "itemid itemCode itemCheckDigit itemSuffx itemImageFileName\n1 abc X cba f00.bar\n2 ac NULL ca f01.bar\n3 ab x NULL f02.bar\n4 a NULL NULL f03.bar\n5 NULL X cba f04.bar\n6 NULL NULL ca f05.bar\n7 NULL x NULL f06.bar\n8 NULL NULL NULL f07.bar.updated\n", "label": 1}, {"text_1": "Combine multiple fields with condition", "text_2": "SELECT Nz(field_1, '') & Nz(field_2, '') & Nz(field_3, '') AS combined\n", "label": 1}, {"text_1": "how do i shorten this SQL?", "text_2": "INSERT \nWHEN (0=(SELECT COUNT(id) FROM LIST WHERE JCODE=8 AND KCODE=01 AND LCODE=2011)) \nINTO LIST (field1, field2, field3, STS, field4, field5, NO, field6) \nSELECT field1, field2, field3, null, field4, field5, 1, field6 \n FROM LIST@LNDB \n WHERE JCODE=8 AND KCODE=01 AND LCODE=2011 \n AND ban IN (SELECT BAN FROM billing_account)\n", "label": 1}, {"text_1": "SQL server 'like' against a float field produces inconsistent results", "text_2": "Value Output\n0 (default) A maximum of 6 digits. Use in scientific notation, when appropriate.\n1 Always 8 digits. Always use in scientific notation.\n2 Always 16 digits. Always use in scientific notation.\n", "label": 1}, {"text_1": "SQL Server Indexing Doubts", "text_2": "SELECT something, something_else FROM sometable t1 WHERE akey = 'some value'\n", "label": 1}, {"text_1": "Is there ever a case in SQL where a subquery is more efficient than a join?", "text_2": "SELECT a.*\n FROM TableA a\n WHERE NOT EXISTS(SELECT NULL FROM TableB b WHERE b.parent_id = a.id)\n", "label": 1}, {"text_1": "Recursive CTE query generate product or page hierarchy", "text_2": "ParentRoot = CASE WHEN cte.ParentRoot <> 'None' THEN c.PageName + '/' + cte.ParentRoot ELSE c.PageName END,\n", "label": 1}, {"text_1": "Decide if an employee is new or leavingemployee", "text_2": "SELECT EmployeeID, LocationID, Min(StartDate) \n FROM Contracts\n WHERE Startdate <= @Enddate\n AND Enddate >= @Startdate\nGROUP BY EmployeeID, LocationID\nHAVING Min(StartDate) between @Startdate and @Enddate\n", "label": 1}, {"text_1": "SQL Between Begins With", "text_2": "DECLARE @testtable AS TABLE (word varchar(20))\n\nINSERT INTO @testtable VALUES ('ly')\nINSERT INTO @testtable VALUES ('Ly')\nINSERT INTO @testtable VALUES ('Zoo')\nINSERT INTO @testtable VALUES ('r')\nINSERT INTO @testtable VALUES ('traci')\n\nDECLARE @minword varchar(20)\nDECLARE @maxword varchar(20)\n\nSET @minword='ly'\nSET @maxword='zol'\n\nSELECT word, LEFT(word,LEN(@minword)), LEFT(word,LEN(@maxword)), @minword, @maxword\nFROM @testtable \nWHERE LEFT(word,LEN(@minword))>=@minword\nAND LEFT(word,LEN(@maxword))<=@maxword\n", "label": 1}, {"text_1": "How can I combine ANDs and ORs in my SQL statement", "text_2": "SELECT * FROM `table` WHERE type IN (3, 4, 5) AND table.deleted = 1;\n", "label": 1}, {"text_1": "Inserting to one table, insert the ID to second table", "text_2": "create trigger Foo_Insert on Foo after insert\nas\nbegin\n set nocount on\n insert Bar(fooid)\n select id from inserted\nend\ngo\ninsert Foo (Name)\nvalues ('abc');\n", "label": 1}, {"text_1": "Time difference in hours and seconds over a partition window in Teradata (Sessionizing Records)", "text_2": "REPLACE FUNCTION TimeStamp_Diff_Seconds\n(\n ts1 TIMESTAMP(6)\n ,ts2 TIMESTAMP(6)\n)\nRETURNS DECIMAL(18,6)\nLANGUAGE SQL\nCONTAINS SQL\nRETURNS NULL ON NULL INPUT\nDETERMINISTIC\nSQL SECURITY DEFINER\nCOLLATION INVOKER\nINLINE TYPE 1\nRETURN\n(CAST((CAST(ts2 AS DATE)- CAST(ts1 AS DATE)) AS DECIMAL(18,6)) * 60*60*24)\n + ((EXTRACT( HOUR FROM ts2) - EXTRACT( HOUR FROM ts1)) * 60*60)\n + ((EXTRACT(MINUTE FROM ts2) - EXTRACT(MINUTE FROM ts1)) * 60)\n + (EXTRACT(SECOND FROM ts2) - EXTRACT(SECOND FROM ts1))\n;\n", "label": 1}, {"text_1": "MySQL - Make one record out of a column", "text_2": "select t1.id,\n max(case when t2.name = 'email' then data end) Email,\n max(case when t2.name= 'FirstName' then data end) Firstname,\n max(case when t2.name= 'LastName' then data end) Lastname,\n max(case when t2.name= 'phone' then data end) Phone\nfrom yourtable t1\ninner join component t2\n on t1.component_id = t2.id \ngroup by t1.id;\n", "label": 1}, {"text_1": "How to design a database table to enforce non-duplicate Unique Key records", "text_2": "insert into dbo.ABC (Col1,Col2)\nselect 1,3\n", "label": 1}, {"text_1": "Store and retrieve user favorites in mysql", "text_2": "| ID | MODEL | USERNAME |\n| 3 | FERRARI | KEVIN |\n| 3 | FERRARI | PAUL |\n", "label": 1}, {"text_1": "TSQL- How to count number of instances", "text_2": "SELECT\n StudentID,\n ActionCode,\n ActionCodeCount = Count(*)\nFROM\n dbo.StudentActionCodes\nWHERE\n ActionCode IN (51201, 51206, 51207, 51208, 51209)\nGROUP BY\n StudentID,\n ActionCode\nORDER BY\n StudentID DESC,\n ActionCode\n;\n", "label": 1}, {"text_1": "Update column values with splited values", "text_2": "update Product \nset value=substring(value,1,charindex('#',value)-1)\nwhere type=1\n", "label": 1}, {"text_1": "Stock calculation during sales", "text_2": "qty min max\n15 1 15\n 2 16 17\n 3 18 21\n", "label": 1}, {"text_1": "SELECT with a COUNT of another SELECT", "text_2": "SQL SERVER VERSION\nSELECT id, SUM(CASE WHEN status = 3 THEN 1 ELSE 0 END) as status_3_count\nFROM yourtable\nGROUP BY id\n", "label": 1}, {"text_1": "select first in and last out time from door access table", "text_2": "EmployeeID EmployeeName Date InLoc InTime OutLoc OutTime Duration\n-------------------- ------------ ---------- -------- ------ ------- ------- --------\n_1346 A 07/11/2014 L1 10:00 L3 23:39 13:39\n_1347 B 07/10/2014 L2 10:58 L4 23:58 13:00\n_1364 C 07/11/2014 L5 10:00 L8 23:58 13:58\n_1367 D 07/10/2014 L6 10:58 L7 22:42 11:44\n_1422 E 07/11/2014 L10 23:10 \n_1111 F 07/10/2014 L20 23:10 \n", "label": 1}, {"text_1": "How do NULL values affect performance in a database search?", "text_2": "SELECT *\nFROM table\nWHERE column IS NULL\n", "label": 1}, {"text_1": "zend framework update db not work", "text_2": "$updateData = array(\n'user_type' => 0\n);\n $updateWhere = array(\n'username' => 'admin'\n); \n", "label": 1}, {"text_1": "SUM on joining fields", "text_2": "SELECT \n Teams.user_id, \n username,\n SUM(amount) AS total\nFROM \n Teams\n /* LEFT JOIN used in case a user has no payments -- will still show in the list */ \n LEFT JOIN Payments ON Teams.user_id = Payments.user_id\nGROUP BY \n Teams.user_id, \n Teams.username\n", "label": 1}, {"text_1": "Mysql join two table", "text_2": "CREATE TABLE ph_Companies\n(\n ID INT PRIMARY KEY,\n CompanyName VARCHAR(20),\n -- OTHER COLUMNS HERE\n);\n\nCREATE TABLE otherTable \n(\n ID INT AUTO_INCREMENT PRIMARY KEY,\n CompanyID INT,\n CompanyName VARCHAR(20),\n clid VARCHAR(50),\n -- OTHER COLUMNS HERE\n CONSTRAINT tb_fk FOREIGN KEY (CompanyID)\n REFERENCES ph_Companies (ID)\n);\n", "label": 1}, {"text_1": "Returning first instance of value across multiple tables (and returning associated columns)", "text_2": "SELECT contact_id ,\n event_id ,\n date_received\nFROM ( SELECT contact_id ,\n event_id ,\n date_received,\n ROW_NUMBER() OVER (PARTITION BY contact_id\n ORDER BY date_received\n ) AS rn\n FROM #firstEventsAllTables \n ) AS f\nWHERE rn = 1\n", "label": 1}, {"text_1": "Better query to select the max value of an aggregation with a count result and retain another column MySQL?", "text_2": "SELECT number_of_visitors, group_concat(visit_date) as visit_dates\nFROM (SELECT (COUNT(*) + SUM(number_of_minors)) as number_of_visitors, visit_date\n FROM visite \n WHERE visit_date BETWEEN '2014-06-13' AND '2014-06-20'\n GROUP BY visit_date\n ) t\nGROUP BY number_of_visitors\nORDER BY number_of_visitors DESC\nLIMIT 1;\n", "label": 1}, {"text_1": "expression engine SQL AND OR query?", "text_2": "SELECT\n file_id\nFROM\n exp_file_categories\nWHERE\n cat_id = 19\n", "label": 1}, {"text_1": "Calculating column in datagridview", "text_2": "private void button1_Click(object sender, EventArgs e)\n{\n textBox1.Text = dataGridView1.Columns[\"columnName\"].HeaderText;\n}\n", "label": 1}, {"text_1": "PostgreSQL: get count of occurrences of specified element in array", "text_2": "with elements (element) as (\n select unnest(ARRAY['a','b','c','a','a'])\n)\nselect count(*)\nfrom elements\nwhere element = 'a';\n", "label": 1}, {"text_1": "Alternate of lead lag function in sql server 2008", "text_2": "select t.*\nfrom table t join\n table tnext\n on t.id = tnext.id - 1 and\n t.StatusId = 1 and\n tnext.StatusId = 6 and\n datediff(second, t.MinStartTime, tnext.MinStartTime) < 60;\n", "label": 1}, {"text_1": "Mysql best students in every class in a school", "text_2": "SELECT classid, MAX(CAST(exam1 AS UNSIGNED) + CAST(exam2 AS UNSIGNED)) as 'maxtotal'\n FROM students\n WHERE NOT ISNULL(exam1)\n AND NOT ISNULL(exam2)\n GROUP BY classid\n", "label": 1}, {"text_1": "Oracle: How to reference an alias with a space from a subquery in a comparison operation", "text_2": "-- SQL Example\nSELECT \"Just one\" FROM (\n SELECT 1 AS \"Just one\" FROM dual\n);\n", "label": 1}, {"text_1": "Find the route based on the postion and the arrival time", "text_2": "select a.route\nfrom arrivaltimes_table a\njoin stopstable s on a.stop_id = s.stop_id\nwhere s.lat = 53.868937\nand s.longi = 10.665545\nand a.arrivaltime = '12:25:00';\n", "label": 1}, {"text_1": "SQL Server log file over 5GB in size", "text_2": "BACKUP LOG yourdatabase WITH TRUNCATE_ONLY\nDBCC SHRINKFILE (yourdatabase_Log, 1)\n", "label": 1}, {"text_1": "How to SELECT multiple values in different tables in SQL?", "text_2": "SELECT * FROM Report\nWHERE Employee_ID IN (\n SELECT T1.Id from Employee T1\n WHERE T1.supervisor_id = **MyId**)\nOR Employee_Id = **MyId**\n", "label": 1}, {"text_1": "Grouping similar rows and counting other columns based on it in SQL", "text_2": "SELECT name, split_part(property, '.', 1) AS propertyname\n , bool_or(col1) AS col1\n , bool_or(col2) AS col2\nFROM tbl\nGROUP BY 1, 2;\n", "label": 1}, {"text_1": "How can I compare time in SQL Server?", "text_2": "declare @mydate datetime\nset @mydate = '2009-04-30 19:47:16.123'\n", "label": 1}, {"text_1": "Sql Server - Update multiple rows based on the primary key (Large Amount of data)", "text_2": "Insert into newtable\nSelect VALUES from productTable a where productId not exists(select 1 from newTable b where a.ProductId = b.ProductId);\n", "label": 1}, {"text_1": "Tricky SQL SELECT statement - combine two rows into two columns", "text_2": "SELECT\n c1.Value AS Value1, c2.Value AS Value2, c1.timestamp, c2.otherstuff\nFROM\n (\n SELECT Value, timestamp, otherstuff\n FROM MyTable\n WHERE Channel = 1\n ) c1 \n FULL OUTER JOIN\n (\n SELECT Value, timestamp, otherstuff\n FROM MyTable\n WHERE Channel = 2\n ) c2 ON c1.timestamp = c2.timestamp AND c1.otherstuff = c2.otherstuff \n", "label": 1}, {"text_1": "FOR loop in WITH statement", "text_2": "DECLARE\n vA NUMBER;\nBEGIN\n FOR I IN 1 .. 100 LOOP\n SELECT COUNT (*) as A\n INTO vA\n FROM table1 C\n JOIN table2 D\n ON D.MY_ID = C.MY_ID\n JOIN table3 E\n ON E.NEW_ID = C.NEW_ID\n WHERE E.b BETWEEN 1 AND 4;\n END LOOP;\nEND;\n", "label": 1}, {"text_1": "Left Join and conditional where not giving desired result?", "text_2": "EntityID CurrentStateID\n301 1155 \n", "label": 1}, {"text_1": "Query to create a new table to a specific database in SQL?", "text_2": "create table smoketest.dbo.Tablename(ID INT)\n", "label": 1}, {"text_1": "SQL join involving table having \u201cfieldname\u201d and \u201cfieldvalue\u201d columns", "text_2": "Select Listings.record_id, Listings.title from Listings\nINNER JOIN\n( Select \n ListingId,\n MAX(\n case when fieldId = 'province_id' then fieldValue else null end\n ) AS province_id,\n MAX(\n case when fieldId = 'district_id' then fieldValue else null end \n ) AS district_id,\n MAX(\n case when fieldId = 'suburb_id' then fieldValue else null end\n ) AS suburb_id\n from listing_special_fields\n group by ListingId\n) AS PV ON PV.ListingId = Listings.record_id\nWHERE PV.province_id IN (2)\n AND PV.district_id IN (1, 4)\n AND PV.suburb_id IN (5, 6)\n", "label": 1}, {"text_1": "I want only the first value for distinct ids to be summed sql server", "text_2": "SELECT SUM([Overage])\nFROM ( SELECT [WeekId] ,\n MAX([Overage]) AS [Overage]\n FROM [dbo].[OverageTable]\n GROUP BY [WeekId]\n ) tmp\n", "label": 1}, {"text_1": "Is Making a DLL compatible to all database is good idea", "text_2": "SELECT x AS y FROM some_table\n", "label": 1}, {"text_1": "Accessing multiple SQL databases with the same schema", "text_2": "SELECT * FROM SERIES_DATA\n", "label": 1}, {"text_1": "LocalSqlServer was not found in the applications configuration or the connection string is empty", "text_2": "<add name=\"LocalSqlServer\" connectionString=\"data source=.\\SQLEXPRESS;Integrated Security=SSPI;AttachDBFilename=|DataDirectory|aspnetdb.mdf;User Instance=true\" providerName=\"System.Data.SqlClient\"/>\n", "label": 1}, {"text_1": "How to extract the latest rows", "text_2": "SELECT a.*\n FROM TableA a\n JOIN (\n SELECT d.MaxDate, MAX(t.Time) AS MaxTime\n FROM TableA t\n JOIN (\n SELECT MAX(Date) AS MaxDate\n FROM TableA\n ) d\n ON t.Date = d.MaxDate\n GROUP BY d.MaxDate\n ) m\n ON a.Date = m.MaxDate AND a.Time = m.MaxTime\n", "label": 1}, {"text_1": "Error converting 2 varchar attributes to datetime", "text_2": "UPDATE dbo.UsersTemp SET Created = CONVERT(DATETIME, \n CREATEDATE + ' ' + STUFF(STUFF(RIGHT('000000' \n + CREATETIME, 6), 5, 0, ':'), 3, 0, ':'));\n", "label": 1}, {"text_1": "Regex for table names in Oracle query", "text_2": "SELECT * FROM ALL_TABLES \nWHERE REGEXP_LIKE(TABLE_NAME, '[a-z]+.?[A-Z]+|[A-Z]+.?[a-z]+', 'c');\n", "label": 1}, {"text_1": "UNION ALL - Return blanks in one column and data in another", "text_2": "SELECT column1, column2, column3, column4\n FROM table1\n UNION ALL\n SELECT column1, DECODE(column4,'B',NULL,column2), column3, column4\n FROM table2\n", "label": 1}, {"text_1": "MS Access - Selecting an ID by selecting the linked name in a form", "text_2": "SELECT ClientID, ClientName & SomeIdentifierForDups FROM ClientTable\n", "label": 1}, {"text_1": "Get Average value for each X rows in SQL", "text_2": "SELECT\n ChunkStart = Min(Id),\n ChunkEnd = Max(Id),\n Value = Avg(Value)\nFROM\n YourTable\nGROUP BY\n (Id - 1) / (((SELECT Count(*) FROM YourTable) + 4) / 5)\n;\n", "label": 1}, {"text_1": "SQL Server - Complex Dynamic Pivot columns", "text_2": "| PROJECTID | A_CONTROLPOINT | A_CONTROLSCORE | A_CONTROLVALUE | A_CHILD1 | A_CHILD2 | A_CHILD3 | A_CHILD4 | C_CONTROLPOINT | C_CONTROLSCORE | C_CONTROLVALUE | C_CHILD1 | C_CHILD2 |\n|-----------|----------------|----------------|----------------|----------|----------|----------|----------|----------------|----------------|----------------|----------|-----------|\n| P001 | 30.44 | 65.00 | Invalid | Yes | No | NA | Others | 45.30 | 85.00 | Valid | Yes | SomeValue |\n", "label": 1}, {"text_1": "Find n largest values in a column ", "text_2": "SELECT TOP 5 items_sold\nFROM tbl_PRODUCT \nORDER BY items_sold dESC\n", "label": 1}, {"text_1": "Cleaner way of inserting", "text_2": "INSERT INTO @TempTable\n SELECT 'value1', NULLIF(@Param1 + @Param2, 0);\n", "label": 1}, {"text_1": "Query for show each value from another table", "text_2": "| USER | game |\n|-------|----------------|\n| Chris | dungen |\n| Chris | naruto |\n| Chris | winning eleven |\n| Gale | dungen |\n| Gale | naruto |\n| Gale | winning eleven |\n| Donna | dungen |\n| Donna | naruto |\n| Donna | winning eleven |\n", "label": 1}, {"text_1": "Mysql SELECT COUNT(COL) with a condition", "text_2": "SELECT\n group_id\n SUM(CASE WHEN f1 = 'a' THEN 1 ELSE 0 END) AS f1,\n SUM(CASE WHEN f2 = 'b' THEN 1 ELSE 0 END) AS f2,\n /* f3 = 'b' isn't in your \"magic select\" but here it is anyway... */\n SUM(CASE WHEN f3 = 'c' THEN 1 ELSE 0 END) AS f3\nFROM \n yourtable\nGROUP BY group_id\n", "label": 1}, {"text_1": "Table and form based off a different table - see if a common record exists in the table and insert a \"yes\" or \"no\" value in the form", "text_2": "=IIf(DCount(\"*\", \"COMMENTS\", \"[PROJECTID] = \" & [PROJECTID]) > 0, \"YES\", \"NO\")\n", "label": 1}, {"text_1": "How to filter query with EXTRACT statement oracle", "text_2": "SELECT REQUEST_ID,MIG_STATUS\n -- rest of columns\nFROM NET_MIG\nWHERE START_DATE >= (SYSDATE - 1);\n", "label": 1}, {"text_1": "MySQL join on null?", "text_2": "SELECT p.id, sku, IFNULL(tr.name,en.name) as name\nFROM product p\nLEFT JOIN translation en ON p.id = en.product_id and en.lang = 'en'\nLEFT JOIN translation tr ON p.id = tr.product_id and tr.lang = 'sl'\n", "label": 1}, {"text_1": "Oracle SQL add left join same table", "text_2": "SELECT T1.ref, T2.rtiers , T3.nom1, N.nom1 as nom1_outer\nFROM T1, T2, T3, T3 N\nWHERE T2.code = T1.rempl \nAND T3.code = T1.rtiers\nAND N.alias(+) = T2.rtiers\n", "label": 1}, {"text_1": "SQL case - if a value is equal to something then do something", "text_2": "concat('<a target=\"_new\" href=\"',\n (case gi.itemmodule\n when 'quiz' \n then 'value of href'\n when 'scorm'\n then 'another value of href'\n else 'defaultvalue of href'\n end), \n cm.id,\n '\">View this Activity</a>') as 'Link'\n", "label": 1}, {"text_1": "How do I combine Right and Like functions in a query?", "text_2": "WHERE RIGHT(Field1, 4) LIKE '*[^0-9]*' AND \n RIGHT(Field1, 4) NOT LIKE '[0-9][0-9][0-9][0-9]'\n", "label": 1}, {"text_1": "Perl sql select all", "text_2": "my $results = $dbh->selectall_hashref(\n 'SELECT * FROM sample.teachers where term like '.$dbh->quote(\"$searchterm%\"),\n 'teacher'\n);\n", "label": 1}, {"text_1": "SQL Route Finder in Oracle - Recursion?", "text_2": " SELECT\n LEVEL as route_step,\n t1.next_hop_station as next_station,\n t1.stageid\n\n FROM \n stage t1\n\n INNER JOIN stage t2 \n ON t2.start_station = t1.next_hop_station\n\n START WITH\n t1.start_station = 'your start station'\n\n CONNECT BY \n PRIOR t1.start_station = t1.next_hop_station\n", "label": 1}, {"text_1": "Transpose to Count columns of Boolean values on Access SQL", "text_2": "SELECT COUNT(*) FROM STUDENTS WHERE HasBamboo\n", "label": 1}, {"text_1": "dividing sum of the column with each part", "text_2": "CREATE TABLE data ( id, value ) AS\n SELECT 1, 100 FROM DUAL\nUNION ALL SELECT 2, 200 FROM DUAL\nUNION ALL SELECT 3, 300 FROM DUAL;\n\nCREATE TABLE derived_data AS\nSELECT id,\n value,\n value||'/'||SUM(value) OVER ( ORDER BY NULL ) AS derived_col\nFROM data;\n", "label": 1}, {"text_1": "Insert the value of the foreign key ID and not the ID", "text_2": "Private Sub cboDept_SelectedValueChanged(sender, e ...) \n myEmployee.DeptID = Convert.ToInt32(cboDept.SelectedValue)\nEnd Sub\n", "label": 1}, {"text_1": "Distinct Value of a column in sql server 2008", "text_2": "SELECT DISTINCT macaddress FROM heartbeats\n", "label": 1}, {"text_1": "sql queries Highest 3", "text_2": "SELECT * FROM\n(SELECT \n Cereal_name, \n COUNT(*) as numOfCount\nFROM Cereal\nGROUP BY numOfCount\nORDER BY COUNT(*) DESC\n) CEREALS\nWHERE ROWNUM <= 3\n", "label": 1}, {"text_1": "How to prevent column b containing the same value as any column a in Oracle?", "text_2": "SQL> INSERT INTO t VALUES ('Wing Commdr.', 'Wing Cdr.'); \n1 row inserted\n\nSQL> COMMIT; \nCommit complete\n\nSQL> INSERT INTO t VALUES ('Wing Cdr.', 'Wing Commander'); \n1 row inserted\n\nSQL> COMMIT; \n\nORA-12008: erreur dans le chemin de r\u00e9g\u00e9n\u00e9ration de la vue mat\u00e9rialis\u00e9e\nORA-00001: violation de contrainte unique (VNZ.IDX)\n\nSQL> INSERT INTO t VALUES ('X', 'Wing Commdr.'); \n1 row inserted\n\nSQL> COMMIT;\n\nORA-12008: erreur dans le chemin de r\u00e9g\u00e9n\u00e9ration de la vue mat\u00e9rialis\u00e9e\nORA-00001: violation de contrainte unique (VNZ.IDX)\n", "label": 1}, {"text_1": "SQL select row in one table, for whose key row in another table has given values", "text_2": "select t1.set_id, t1.data\nfrom table1 t1 join\n table2 t2\n on t1.set_id = t2.set_id\ngroup by t1.set_id\nhaving sum(t2.single_id = 10) > 0 and\n sum(t2.single_id = 13) > 0 and\n sum(t2.single_id not in (10, 13)) = 0;\n", "label": 1}, {"text_1": "SYNC and UPDATE at the same time between two tables in Oracle SQL", "text_2": "\nTEST_TABLE_A\nNAME VAL1 VAL2 STATUS\n-----------------------------\nHEAD1 100 200 INACTIVE\nHEAD1 1 2 ACTIVE\nHEAD2 300 400 INACTIVE\nHEAD3 500 600 INACTIVE\nHEAD4 700 800 ACTIVE\nHEAD5 900 1000 ACTIVE\n", "label": 1}, {"text_1": "How to show all the search items from the android database", "text_2": "for (CR.moveToFirst(); !CR.isAfterLast(); CR.moveToNext())\n {\n show_result.setText(\"found\\n\" + \"Group = \" + GROUP + \"\\n Name = \" + NAME + \"\\nDistrict = \" + DISTRICT + \"\\nCity = \" + CITY + \"\\nPhone Number = \" + PHONE_NUM);\n }\n", "label": 1}, {"text_1": "Oracle Constraints", "text_2": "SQL> select * from mobile;\n\n MOBILE_ID FLAG \n---------- ---------- \n 1 0 \n\nSQL> select * from owner_mobile;\n\n OWNER_ID MOBILE_ID \n---------- ---------- \n 1 1 \n", "label": 1}, {"text_1": "Query to create a new table to a specific database in SQL?", "text_2": "Server.Database.Schema.Object\n", "label": 1}, {"text_1": "SQL requiring self join and ranking", "text_2": " SEASON MATCHDATE HOMETEAM AWAYTEAM HOMEGOALS AWAYGOALS TOTALGOALS\n---------- --------- ------------------------- ------------------------- ---------- ---------- ----------\n 2012 13-MAY-12 Norwich Aston Villa 2 0 30\n", "label": 1}, {"text_1": "SQL datable query to insert multiple column values", "text_2": "CREATE TABLE PhoneNumber\n (\n phoneno_id INT IDENTITY(1, 1),\n emp_id INT,\n Phone_Number int,\n Cell_Number Int,\n FOREIGN KEY (emp_id) REFERENCES emp(emp_id)\n ) \n", "label": 1}, {"text_1": "How to get the data from the database created by another activity/ Fails to update data into database (Android studio,SQLite)", "text_2": "UPDATE Code_table SET CODE = 'Hello' WHERE code = 'Hello'\n", "label": 1}, {"text_1": "How to transform records data into columns", "text_2": "select h_company_id, company_nm, \n mainphone1, phone_cnt1, mainphone2, phone_cnt2\nfrom \n(\n select h_company_id, company_nm,\n col+cast(seq as varchar(10)) col,\n value\n from \n (\n select h_company_id, company_nm, \n cast(mainphone1 as varchar(15)) mainphone,\n cast(phone_cnt as varchar(15)) phone_cnt,\n row_number() over(partition by h_company_id order by mainphone1) seq\n from yourtable\n ) d\n unpivot\n (\n value\n for col in (mainphone, phone_cnt)\n ) unpiv\n) src\npivot\n(\n max(value)\n for col in (mainphone1, phone_cnt1, mainphone2, phone_cnt2)\n) piv;\n", "label": 1}, {"text_1": "Nested SQL statement (simple)", "text_2": "SELECT DISTINCT C.cid\nFROM customers AS C \n INNER JOIN \n orders AS O ON O.cid = C.cid\n INNER JOIN \n products AS P ON P.pid = O.pid\nWHERE P.pid IN ('p01', 'p07')\n", "label": 1}, {"text_1": "Relational algebra \"grouping\"", "text_2": "dept_name_G_{max(salary)}(\n \u03c3_{ddept_name = idept_name}(\n \u03c1_{dept_name/ddept_name}(department) \u2a2f\n \u03c1_{dept_name/idept_name}(instructor)\n )\n)\n", "label": 1}, {"text_1": "New type in PL/SQL", "text_2": "constructor function rational\n (n integer, d integer)\n return self as result\nis \nbegin\n if d = 0 then\n raise_application_error(-20000, 'Denominator cannot be zero!');\n end if;\n self.num := n;\n self.den := d;\nend rational; \n", "label": 1}, {"text_1": "Shift hours between two dates", "text_2": "11:00 to 23:00 23:00 to 11:00\n-------------- --------------\n19 24\n", "label": 1}, {"text_1": "Liferay portlet non-liferay JNDI data source null", "text_2": "<ResourceLink name=\"jdbc/XXX\" global=\"jdbc/XXX\" type=\"javax.sql.DataSource\">\n", "label": 1}, {"text_1": "Model database to represent constraints", "text_2": "create table test.supplied_parts (\n supplier_name varchar(35) not null \n references test.suppliers (supplier_name),\n part_num varchar(15) not null references test.parts (part_num),\n primary key (supplier_name, part_num)\n);\n\ninsert into test.supplied_parts values\n('Supplier A', 'Part A'),\n('Supplier A', 'Part B'),\n('Supplier A', 'Part C'),\n('Supplier B', 'Part A'),\n('Supplier B', 'Part B');\n", "label": 1}, {"text_1": "Filling in 'gap rows' using an sql procedure", "text_2": "CREATE TABLE `hourlyTable` (\n`ID` int(11) NOT NULL AUTO_INCREMENT ,\n`Date` datetime NULL DEFAULT NULL ,\n`value` int(11) NULL DEFAULT NULL ,\nPRIMARY KEY (`ID`)\n);\n", "label": 1}, {"text_1": "SQL Query without Temporary Table", "text_2": "DECLARE @tmp TABLE \n(\n srno int identity (1,1) ,\n orderid int,\n orderdate datetime,\n product_code varchar(255),\n product_name varchar(255),\n shipping_cost decimal(18,2)\n)\n", "label": 1}, {"text_1": "MySQL query grouped by contigious foreign key values", "text_2": "select \nVendorID,\nSUM(Quantity)\nfrom (\nselect\nt.*,\n@grn := if(@prev != VendorID, @grn + 1, @grn) as grn,\n@prev := VendorID\nfrom\nt\n, (select @grn := 0, @prev := null) var_init\norder by DateReceived\n) sq\nGROUP BY grn\n", "label": 1}, {"text_1": "Does SQL Server 2012 have a function or other way to convert a varchar column that contains ASCII to plain text?", "text_2": "Query\n;WITH CTE AS(\nSELECT CHAR(Split.a.value('.', 'VARCHAR(100)')) Char_Vals\nFROM (SELECT \n Cast ('<M>' + Replace(ASCII_Col, ' ', '</M><M>') + '</M>' AS XML) AS Data\n FROM @Table) AS A\n CROSS APPLY Data.nodes ('/M') AS Split(a) \n )\nSELECT (SELECT '' + Char_Vals\n FROM CTE\n FOR XML PATH(''),TYPE).value('.','NVARCHAR(MAX)')\n", "label": 1}, {"text_1": "Recursive relationship on a many to many table", "text_2": "WITH TEST (IDRoot, IDPARENT, IDCHILD) AS\n(\n\n SELECT P0.IDPROD, C0.IDParent, C0.IDCHILD\n FROM PROD AS P0\n left outer join COMP C0 on C0.IDParent = P0.IDPROD\n WHERE P0.IDProd not in (select IDChild from COMP)\n\n UNION ALL\n\n SELECT T.IDRoot, C1.IDPARENT, C1.IDCHILD\n FROM COMP AS C1\n inner join TEST AS T on T.IDCHILD = C1.IDPARENT\n\n)\nSELECT * FROM TEST\n", "label": 1}, {"text_1": "How to transpose this table in postgresql", "text_2": "select\n landslide.lnumber,\n lname,\n max(case when rn=1 then bez_gem end) as bez_gem1,\n max(case when rn=2 then bez_gem end) as bez_gem2,\n max(case when rn=3 then bez_gem end) as bez_gem3,\n max(case when rn=4 then bez_gem end) as bez_gem4,\n max(case when rn=5 then bez_gem end) as bez_gem5,\n ... up to cnt ...\nfrom(\n select\n landslide.lnumber,\n lname,\n bez_gem,\n row_number() over(partition by landslide.lnumber) rn\n from\n <<some_data>>\n ) a\ngroup by\n landslide.lnumber,\n lname\n", "label": 1}, {"text_1": "MySQL with union/join and two alias on same column", "text_2": "SELECT i.item_name\n , r.item_version\n , IFNULL(SUM(IF(r.group_status=1,r.quantity,0)),0) AS `Approved`\n , IFNULL(SUM(IF(r.group_status=2,r.quantity,0)),0) AS `Not Approved`\n , IFNULL(SUM(r.quantity),0) AS `Total`\n FROM items i\n LEFT\n JOIN requesters r\n ON r.item_id = i.item_id\n AND r.group_status IN (1,2)\n AND r.requested_date >= ?\n AND r.requested_date <= ?\n GROUP\n BY i.item_name\n , r.item_version\n", "label": 1}, {"text_1": "how to limit a sql integer query result to <=1", "text_2": "select LEAST(1,\n ((select \"V01\" from sports where \"UID\" = '1') * 1.0 ) / \n (select \"V01\" from master where \"BALL\" = 'REQUIREMENT')\n );\n", "label": 1}, {"text_1": "Fetching entries by hours from MySQL", "text_2": "SELECT DATE_ADD(date(t.date_of_post), INTERVAL hour(t.date_of_post) HOUR) AS dateTime,\n count(*) as entries\nFROM `soc_stat` t\nWHERE t.date_of_post > DATE_SUB(CURDATE(), INTERVAL 1 DAY)\nGROUP BY date(t.date_of_post), hour(t.date_of_post)\n", "label": 1}, {"text_1": "Custom SERIAL / autoincrement per group of values", "text_2": "CREATE TRIGGER trg_category_increment \n BEFORE INSERT ON article \n FOR EACH ROW EXECUTE PROCEDURE category_increment()\n", "label": 1}, {"text_1": "Oracle SQL: Joining another table with one missing tuple", "text_2": "select *\n from order_information oi\n left join mass_decode md \n on oi.color_cd = md.cd\nwhere md.key = 'COLOR_CD' or md.key is null;\n", "label": 1}, {"text_1": "Separate one data column into two", "text_2": " byte[] empty = new byte[] { };\n //Outside parameter for the ssisparameter file path\n //Check for the parameter existance\n IDTSVariable100 filePathVariable;\n try\n {\n filePathVariable = this.ReadOnlyVariables[\"ParameterName\"];\n }\n catch (Exception )\n {\n\n }\n string filePath = filePathVariable.Value.ToString();\n", "label": 1}, {"text_1": "Compare two columns for difference mark the difference in mysql", "text_2": "SELECT c.phone_id, c.phonenumber, \n (CASE WHEN f.fdnumber IS NULL THEN 'n/a' ELSE 'f' END) followUpStatus\nFROM customer c \nINNER JOIN received_Customer rc on c.phonenumber = rc.rc_phonenumber \nLEFT OUTER JOIN follow_up f on c.phonenumber = f.fdnumber;\n", "label": 1}, {"text_1": "How does chaining variable assignments work in SQL?", "text_2": "DECLARE @Var1 MONEY = 100, @Var2 MONEY = 50 \n\nSELECT @Var1 = @Var2, \n @Var2 = @Var1 \n\nSELECT @Var1, @Var2 \n", "label": 1}, {"text_1": "hierarchy records", "text_2": "create or replace type arr_integers as table of integer;\n", "label": 1}, {"text_1": "Trigger to insert old values", "text_2": "SQL> ed\nWrote file afiedt.buf\n\n 1 create table my_tab (\n 2 id number,\n 3 start_date date,\n 4 end_date date,\n 5 no number,\n 6 updated varchar2(1)\n 7* )\nSQL> /\n\nTable created.\n\nSQL> ed\nWrote file afiedt.buf\n\n 1 create table my_hist (\n 2 id number,\n 3 start_date date,\n 4 end_date date,\n 5 no number,\n 6 updated varchar2(1),\n 7 update_date date\n 8* )\nSQL> /\n", "label": 1}, {"text_1": "Combine two columns and add into one new column", "text_2": "SELECT COALESCE(col_a, '') || COALESCE(col_b, '');\n", "label": 1}, {"text_1": "Finding the row with most common attribute using SQL", "text_2": "SELECT TOP 1 *\nFROM YourTable\nORDER BY \n(SELECT COUNT (DISTINCT p) FROM (VALUES(p1),(p2),(p3)) T(p))\n", "label": 1}, {"text_1": "Mysql Select on row values", "text_2": "SELECT\n user_id,\n max(case when field_id = 270 then value end) nameOfPerson,\n max(case when field_id = 354 then value end) cityName\nFROM wp_bp_xprofile_data t\nGROUP BY user_id\nHAVING SUM(\n (field_id = 270 AND value = 'Gender') +\n (field_id = 354 AND value = 'City')\n) = 2\n", "label": 1}, {"text_1": "How to use UPDATE in PostgreSQL with variable table?", "text_2": "Dynamic SQL\nCREATE OR REPLACE FUNCTION f_up(_new_id int, _old_id int)\n RETURNS void AS\n$BODY$\nDECLARE\n _tbl text[] := '{category1,category2,category3}';\n t text;\n\nBEGIN\n\nFOREACH t IN ARRAY _tbl\nLOOP\n EXECUTE '\n UPDATE ' || t || '\n SET id = $1\n WHERE id = $2'\n USING _new_id, _old_id;\nEND LOOP;\n\nEND;\n$BODY$ LANGUAGE plpgsql;\n", "label": 1}, {"text_1": "vb.net - mysql query select record from month to month", "text_2": "\nmonthx1= txtbox1.text\nmonthx2 = txtbox2.text\nDim sqlQuery As new System.Text.StringBuilder\nsqlQuery.Append(\"SELECT * \" & vbCrLf)\nsqlQuery.Append(\"FROM tablename \" & vbCrLf)\nsqlQuery.Append(\"WHERE Str_to_date(dateregister, '%d/%m/%Y') BETWEEN \" & vbCrLf)\nsqlQuery.Append(\" Str_to_date(Concat('01/', \" & vbCrLf)\nsqlQuery.Append(\" '\" & monthx1 & \"'), '%d/%m/%Y') AND Last_day( \" & vbCrLf)\nsqlQuery.Append(\" Str_to_date(Concat('01/', \" & vbCrLf)\nsqlQuery.Append(\" '\" & monthx2 & \"'), '%d/%m/%Y')) \")\ncmd = New MySqlCommand(sqlQuery.ToString(), conn)\n", "label": 1}, {"text_1": "Oracle 10g Select in Query", "text_2": "select vin, customer_id, model_id from (\n select vin, customer_id, model_id, \n count( decode(model_id, 'toyota', 1) ) over (partition by customer_id) cnt\n from car\n)\nwhere cnt > 1\n", "label": 1}, {"text_1": "android - using SQLite database", "text_2": "String username;\ndb.execSQL(\"insert into usernames values ('\"+username+\"')\");\n", "label": 1}, {"text_1": "Recursively sum the nodes of a tree using Postgesql WITH clause", "text_2": "select id, (select sum(coalesce(value, 0)) from treeSum) as nodesum\nfrom node\ninner join some_table on (...)\nwhere node.id = 'A'\n", "label": 1}, {"text_1": "Access VBA, unescaped single quotes, Replace(), and null", "text_2": "Dim SQL As String\nSQL = \"SELECT * FROM Student \" & _\n \"WHERE (StudentName \" & CompFld(rstFrom(\"Student\").Value) & \" AND \" & _\n \" School \" & CompFld(rstFrom(\"School\").Value) & \") \" & _\n \" OR (SSN \" & CompFld(rstFrom(\"Social\").Value) & \") \"\nSet rstDuplicate = CurrentDb.OpenRecordset(SQL)\nIf rstDuplicate.RecordCount = 0 Then\n 'Duplicate was not found\n rstTo.AddNew\n ' Add fields to the new table\n rstTo.Update\nEnd If\n", "label": 1}, {"text_1": "How to join two tables with one of them not having a primary key and not the same character length", "text_2": "SELECT r.domainid, r.dombegin, r.domend, d.ddid \nFROM domainregion r\nJOIN dyndomrun d ON r.domainid::varchar(8) = d.ddid \nORDER BY r.domainid, d.ddid, r.dombegin, r.domend;\n", "label": 1}, {"text_1": "Translate MySQL join into SQL Server syntax?", "text_2": "WITH Data AS\n (\n SELECT ROW_NUMBER() OVER (PARTITION BY ID ORDER BY Date DESC) AS Row_Number,\n ID,\n AverageValue\n FROM Table\n )\n\nSELECT Newest.ID, \nNewest.AverageValue, \n(Newest.AverageValue - Next_Newest.AverageValue) AS AverageValue_Change,\nNewest.Date\n FROM Data Newest\nLEFT OUTER JOIN Data Next_Newest \n ON Newest.Row_Number+1 = Next_Newest.Row_Number\nAND Newest.ID = Next_Newest.ID \n\nWHERE Newest.Row_Number=1\n", "label": 1}, {"text_1": "Calculate one year expiry date from current date in oracle 11g", "text_2": "select decode( to_char(sysdate, 'mmdd'), \n '0229', \n (sysdate-1) + interval '1' year, \n (sysdate + interval '1' year ))\n from dual;\n", "label": 1}, {"text_1": "Where one or another column exists in a sub select", "text_2": " SELECT a, b, c, d \n FROM someTable WHERE\n WHERE EXISTS \n (SELECT NULL \n FROM otherTable \n WHERE testA = a OR testB = a \n OR testA = b OR testB = b) \n", "label": 1}, {"text_1": "Change column data type in MySQL without losing other metadata (DEFAULT, NOTNULL...)", "text_2": "mysql> prepare stmt from @sql;\nQuery OK, 0 rows affected (0.00 sec)\nStatement prepared\n", "label": 1}, {"text_1": "Select records from a particular date", "text_2": "SELECT * FROM TRANSACTIONS where \ndate >= date('2015-11-24 00:00') \nand date <= date('2015-11-24 23:59') \n", "label": 1}, {"text_1": "How to select and update referrer payments in this bitcoin faucet?", "text_2": "SELECT referrer,\n FORMAT(SUM(referral_amount),2) total \nFROM TableName\nGROUP BY referrer\nORDER BY SUM(referral_amount) DESC;\n", "label": 1}, {"text_1": "How to get an average to 3 decimal places", "text_2": "select str(((total * 100.0)/ total_days ), 7, 3) as average\n", "label": 1}, {"text_1": "Rownum cause results to show results in undorder manner", "text_2": "insert into users\n values( 1, 'Elvis' ), ( 2, 'Jackson' ), ( 3, 'Madonna' );\n", "label": 1}, {"text_1": "MySQL query to dynamic \"Ranking rows\"", "text_2": " ....\n ) AS Ranking\n CROSS JOIN (SELECT @curr := null, @prev := null, @rank := 0) InitVars\nWHERE\n Ranking.regional_id = 1003\n", "label": 1}, {"text_1": "Sqlldr- No terminator found after terminated and enclosed field", "text_2": "1|\\a\\ab\\|do not \"clean\" needles|@\n", "label": 1}, {"text_1": "How can I calculate rank based on highest points and lowest time in SQL server", "text_2": "with user_ranked_games as (\n select user_id,\n credits,\n time_played,\n row_number() over ( partition by user_id \n order by credits desc, time_played asc\n ) as game_rank\n from games\n),\nranked_users as (\n select rank() over (order by g.credits desc, g.time_played asc) as rank,\n g.user_id,\n u.alias,\n g.credits,\n g.time_played\n from user_ranked_games g\n join users u\n on g.user_id = u.user_id\n where g.game_rank=1\n)\nselect * from ranked_users where user_id=93\n", "label": 1}, {"text_1": "Count number of values across multiple columns", "text_2": "create table #Category_Section\n(\n Category varchar(50),\n SectionValue varchar(50)\n);\n", "label": 1}, {"text_1": "Cursor creation", "text_2": "Rate Qty JanOrg (No column name)\n------------------------------------\n 2 3 2 0.120000\n 5 7 2 0.700000\n 7 7 2 0.980000\n", "label": 1}, {"text_1": "How to map the 2 different record set one by one?", "text_2": "select a.id, b.id2\nfrom\n(\n select id, row_number() over(order by id) rn\n from\n (\n select distinct id\n from a\n ) a\n) a\nfull outer join\n(\n select id2, row_number() over(order by id2) rn\n from b\n) b\n on a.rn = b.rn;\n", "label": 1}, {"text_1": "Get all rows with a matching field in a different row in the same table", "text_2": "select userID\nfrom your_table\nwhere website in ('website.com', 'foo.com')\ngroup by userID\nhaving count(distinct website) = 2\n", "label": 1}, {"text_1": "How to implement Temporal Upward Compatibility in MySQL?", "text_2": "UPDATE legacy SET attribute = 'A' WHERE id = 1;\nSELECT * FROM legacy;\nSELECT * FROM temporal;\n", "label": 1}, {"text_1": "How to get the count of number of items in one table that are in another", "text_2": "DECLARE @TABLEA TABLE (ID INT,Code VARCHAR(5))\nINSERT INTO @TABLEA VALUES\n(1,'A1'),(1,'A2'),(1,'A3'),(2,'B1'),(2,'B2'),\n(2,'B3'),(3,'C1'),(3,'C2'),(3,'C3')\n\nDECLARE @TABLEB TABLE (Code VARCHAR(5))\nINSERT INTO @TABLEB VALUES\n('A2'),('A3'),('B1'),('C1'),\n('C2'),('C3')\n", "label": 1}, {"text_1": "how to write the sql query for this condition?", "text_2": "SELECT COUNT(*)\nFROM\n (\n SELECT student_id \n FROM Table\n GROUP BY student_id\n HAVING MAX(grade_id) = MIN(grade_id) -- only one grade\n AND MIN(grade_id) = 1\n ) AS dt\n", "label": 1}, {"text_1": "MySql create few table with the same structure", "text_2": "CREATE TABLE tb1\n(\n id int not null auto_increment,\n ...,\n primary key (id)\n);\nCREATE TABLE tb2 AS SELECT * FROM tb1 WHERE 1=2;\n", "label": 1}, {"text_1": "MYSQL select birthday based on age", "text_2": "WHERE birthday <= now() - INTERVAL 25 YEAR;\n", "label": 1}, {"text_1": "Don't drop rows on a coldfusion query of queries join", "text_2": "<cfquery name=\"joinQuery\" dbtype=\"query\" >\n SELECT *\n FROM query2\n WHERE 1 = 0 -- get the table structure but zero rows.\n</cfquery>\n\n<!--- Add a row of NULL values ---> \n<cfset QueryAddRow(joinQuery) />\n\n<cfquery name=\"GetJoinedData\" dbtype=\"query\">\n SELECT *\n FROM query1, query2\n WHERE query1.foo = query2.foo\n UNION\n SELECT *\n FROM query1, joinQuery\n WHERE query1.foo NOT IN (#QuotedValueList(query2.foo)#)\n</cfquery>\n", "label": 1}, {"text_1": "When or Why to use a \"SET DEFINE OFF\" in Oracle Database", "text_2": "SQL> insert into customers (customer_name) values ('Marks & Spencers Ltd');\nEnter value for spencers: \nold 1: insert into customers (customer_name) values ('Marks & Spencers Ltd')\nnew 1: insert into customers (customer_name) values ('Marks Ltd')\n\n1 row created.\n\nSQL> select customer_name from customers;\n\nCUSTOMER_NAME\n------------------------------\nMarks Ltd\n", "label": 1}, {"text_1": "SQL Server Foreign Key still not trusted after CHECK CHECK", "text_2": "CREATE TABLE val(id INT PRIMARY KEY, name VARCHAR(100));\n\nCREATE TABLE tab(id INT IDENTITY(1,1) PRIMARY KEY, \n val_id INT);\nGO\n\nALTER TABLE tab WITH NOCHECK \nADD CONSTRAINT fk_val FOREIGN KEY (val_id) REFERENCES val(Id) NOT FOR REPLICATION;\n\nALTER TABLE tab NOCHECK CONSTRAINT fk_val;\nGO\n\n\n-- Insert Data\nINSERT INTO tab(val_id)\nVALUES (10),(20);\nGO\n\nINSERT INTO val(id)\nVALUES(10),(20);\n\n-- check data\nALTER TABLE tab WITH CHECK CHECK CONSTRAINT fk_val;\n\n-- check is_trusted\nSELECT name, is_not_trusted, is_not_for_replication\nFROM sys.foreign_keys\nWHERE is_not_trusted = 1;\n", "label": 1}, {"text_1": "SQL: insert records is not in order", "text_2": "UPDATE Customers SET Parking_Cost = p.Parking_Cost\nFROM Customers c INNER JOIN Parking p ON c.Parking_ID = p.Parking_ID \nWHERE c.Parking_ID = 1\n", "label": 1}, {"text_1": "How to convert Epoch time to date?", "text_2": "08-JUL-11 08.00.03.000000000 AM\n", "label": 1}, {"text_1": "Replace Data With Key on 2 table in SQL Server", "text_2": "select * from table2\nunion all\nselect * from table1 t1\nwhere not exists (select 1 from table2 t2\n where t2.code = t1.code)\n", "label": 1}, {"text_1": "User-sortable records", "text_2": "SELECT w.*\nFROM (\n SELECT widget_id, level AS widget_order\n FROM widget_orders\n START WITH\n user_id = :myuser\n AND prev_widget_id = 0\n CONNECT BY\n user_id = PRIOR user_id\n AND prev_widget_id = PRIOR widget_id\n ) o\nJOIN widgets w\nON w.widget_id = o.widget_id\nORDER BY\n widget_order\n", "label": 1}, {"text_1": "How to append th, st, nd and rd for dates of the day in rdlc report?", "text_2": "Public Shared Function AddOrdinal(num As Integer) As String\n If num <= 0 Then\n Return num.ToString()\n End If\n Select Case num Mod 100\n Case 11, 12, 13\n Return num & \"th\"\n End Select\n Select Case num Mod 10\n Case 1\n Return num & \"st\"\n Case 2\n Return num & \"nd\"\n Case 3\n Return num & \"rd\"\n Case Else\n Return num & \"th\"\n End Select\nEnd Function\n", "label": 1}, {"text_1": "Updating a number of row with a single SQL query in Oracle DBMS", "text_2": "UPDATE A\n SET zip= '355'\n WHERE id in ('1','4');\n", "label": 1}, {"text_1": "Insert from multiple related tables during database migrating", "text_2": "SET IDENTITY_INSERT ON\n", "label": 1}, {"text_1": "SQL - find next and previous rows given a particular WHERE clause", "text_2": "SELECT * FROM `bb_topics` \n WHERE `topic_id` = \n (select min(`topic_id`) FROM `bb_topics` where `topic_id` > 123\n and `topic_poster` = 5)\n or `topic_id` = \n (select max(`topic_id`) FROM `bb_topics` where `topic_id` < 123\n and `topic_poster` = 5)\n", "label": 1}, {"text_1": "Is there any way to set the default value of all columns in a mysql database at a time?", "text_2": "UPDATE table_name\n SET column_name = new_value \n WHERE column_name = old_value;\n", "label": 1}, {"text_1": "How to override precedence in SQL*Plus?", "text_2": "SELECT *\nFROM ((select * from tab1 minus select * from tab2)\n UNION\n (select * from tab2 minus select * from tab1)) AS symdiff\n", "label": 1}, {"text_1": "Mysql group and sum based on condition", "text_2": "select m.code, sum(total)\nfrom mytable m\ninner join (select distinct code from mytable where `to_update`=1) t on m.code=t.code\ngroup by m.code\n", "label": 1}, {"text_1": "How to show the names of non-participants in the last sending quiz in each division?", "text_2": "select A.QuizID, a.Username \nfrom UserQuiz a join \n (select max(quizID) quizID from dbo.Quiz where IsSent = 1) b\n on a.QuizId = b.quizID\n", "label": 1}, {"text_1": "SQL join on different select count result-tables", "text_2": " select \n a.location, a.amount_A,\n b.number_x,\n c.errors\n from (\n select_satement_A\n ) as a\n left join (\n select_satement_B\n ) as b on a.location = b.location\n left join (\n select_satement_C\n ) as c on a.location = c.location\n", "label": 1}, {"text_1": "Row Count in Result using CTE", "text_2": " select Id,\n Type,\n Description, \n count(*) over () as \"RowCount\"\n from wo\n", "label": 1}, {"text_1": "ms-access: specifying formatting for a column", "text_2": "SELECT\n some_text, \n \",\" & some_text & \",\" AS with_commas, \n IIf(Not IsNull(some_text), \",\" & some_text & \",\", Null) AS with_commas_ignore_nulls\nFROM YourTable;\n", "label": 1}, {"text_1": "SQL Server: How to get the value of a XML element specifying an attribute?", "text_2": "declare @prm VARCHAR(10)='en_US';\nselect @X.value('(/translations/value[@lang=sql:variable(\"@prm\")])[1]','varchar(max)');\n", "label": 1}, {"text_1": "How to make ORDER SIBLINGS BY?", "text_2": "For any number of levels:\nWITH RECURSIVE t AS (\n SELECT ARRAY[emp_id] AS hierarchy\n ,emp_id\n ,manager_id\n ,emp_name\n FROM recursive_test\n WHERE manager_id = 0\n\n UNION ALL\n SELECT t.hierarchy || a.emp_id\n ,a.emp_id\n ,a.manager_id\n ,a.emp_name\n FROM recursive_test a\n JOIN t ON a.manager_id = t.emp_id\n )\nSELECT emp_id\n ,manager_id\n ,emp_name\nFROM t\nORDER BY hierarchy;\n", "label": 1}, {"text_1": "Looking for missing entries", "text_2": "SELECT DISTINCT [Unique Ref]\nFROM TABLE_NAME\nEXCEPT\nSELECT DISTINCT [Unique Ref]\nFROM TABLE_NAME\nWHERE USERNAME == 'DAVIDMI09'\n", "label": 1}, {"text_1": "sql server - adding two columns together from sub queries", "text_2": "SELECT A.ID, A.field, \n (select CONVERT(INT, vchr_Number)\n from tbl_two B\n where B.int_ParentId = A.ID) +\n (select CONVERT(INT, vchr_Number)\n from tbl_three C\n where C.int_ParentId = A.ID) as 'SumOfNumbers',\nFrom tbl_Something A\n", "label": 1}, {"text_1": "how to generate unique sequence number -sql", "text_2": "UPDATE `table` SET `num` = `num` + 1 WHERE `num` >= 2\n", "label": 1}, {"text_1": "Add column with default value 0.0", "text_2": "CREATE TABLE #temp1(a int, b int)\nINSERT #temp1 values(1,1),(2,2)\n\nDECLARE @var numeric(10,1) set @var = 0.0\n SELECT a,\n b,\n @var c\n INTO #tmp2\n FROM #temp1\n\n SELECT * from #tmp2\n", "label": 1}, {"text_1": "Difference between JSON and SQL", "text_2": "select * from cars where colour = 'green'\nupdate cars set colour='blue' where colour='red'\n", "label": 1}, {"text_1": "MongoDB (Mgo v2) Projection returns parent struct", "text_2": "db.buildings.aggregate([\n{\n \"$match\":\n {\n \"_id\": buildingID,\n \"p\": {\n \"$elemMatch\": {\"l\": fNum}\n }\n }\n},\n{\n \"$project\":\n {\n nrOfFloors: {\n \"$size\": \"$p\"\n }\n }\n}])\n", "label": 1}, {"text_1": "order by multiple columns", "text_2": "with grp(Name,ImpFile,TimeGroup,ImpTime) as \n(\n select cast(null as varchar(5)), ImpFile, max(ImpTime) as TimeGroup, \n max(ImpTime) as ImpTime\n from people \n group by ImpFile \n\n union all\n\n select p.Name, p.ImpFile, ldr.TimeGroup, p.ImpTime\n from people p\n inner join grp ldr -- leader\n on ldr.name is null and ldr.ImpFile = p.ImpFile\n)\nselect Name, ImpFile, ImpTime\nfrom grp \norder by TimeGroup desc, \n\n case \n when Name is null then 2 -- leader last\n else 1 -- followers first\n end,\n\n Name\n", "label": 1}, {"text_1": "Incorporate DST into SQL script", "text_2": "('2014-01-01 00:00:00', '2014-03-09 02:00:00', 0)\n('2014-03-09 02:00:00', '2014-11-02 03:00:00', 60)\n('2014-11-02 03:00:00', '2015-01-01 00:00:00', 0)\n", "label": 1}, {"text_1": "Maximum number of IN clauses to use index in MySQL", "text_2": " id: 1\n select_type: SIMPLE\n table: t\n type: ref\npossible_keys: a\n key: a\n key_len: 7 <--- two columns' length\n ref: const,const <--- only two values for index columns `a` and `b`\n rows: 4\n Extra: Using where; Using index\n", "label": 1}, {"text_1": "Implementing a \"Both, Either-or, but Not Null\" Requirement in a Database", "text_2": "INSERT INTO Instruction (InstructionId, TextId) VALUES (1, 1);\nINSERT INTO Text (InstructionId) VALUES (1);\nCOMMIT;\n", "label": 1}, {"text_1": "The most efficient way to check a matrix offset", "text_2": "SELECT word\n FROM mytable\n WHERE (rounded = false AND height = 2 AND backness = 3)\nUNION\nSELECT word\n FROM mytable\n WHERE (rounded = true AND height = 2 AND backness = 1)\nUNION\nSELECT word\n FROM mytable\n WHERE (rounded = true AND height = 2 AND backness = 3)\nUNION\nSELECT word\n FROM mytable\n WHERE (rounded = true AND height = 1 AND backness = 2)\nUNION\nSELECT word\n FROM mytable\n WHERE (rounded = true AND height = 3 AND backness = 2)\n", "label": 1}, {"text_1": "how to use join that pull comma seperated values from MySQL", "text_2": "| NAME | CUISINE_ID | GROUP_CONCAT(C.CUISINE_NAME) |\n|------|------------|------------------------------|\n| abc | 1,2,6,8 | Nepali,Indian,Thai,Korean |\n", "label": 1}, {"text_1": "SQL get number of columns in a particular row having a particular value", "text_2": "SELECT u1, u1paid, u2, u2paid, u3, u3pai, u4, u4paid, u5, u5paid\n , CASE u1paid WHEN 'Yes' THEN 1 ELSE 0 END\n + CASE u2paid WHEN 'Yes' THEN 1 ELSE 0 END\n + CASE u3paid WHEN 'Yes' THEN 1 ELSE 0 END\n + CASE u4paid WHEN 'Yes' THEN 1 ELSE 0 END\n + CASE u5paid WHEN 'Yes' THEN 1 ELSE 0 END\n AS no_of_paid_columns\n FROM trackbill\n", "label": 1}, {"text_1": "How to UNPIVOT to split columns into rows?", "text_2": "OPTION (FORCE ORDER)\n", "label": 1}, {"text_1": "Oracle auto add current date", "text_2": "CREATE OR REPLACE TRIGGER trg_products\n BEFORE INSERT OR UPDATE ON products\n FOR EACH ROW\nBEGIN\n :new.dt := sysdate;\nEND;\n", "label": 1}, {"text_1": "user-Defined SQL Function gives error \"Invalid column name 'Employee_Name'.\"", "text_2": "SELECT FirstName,\n LastName,\n PhoneNumber\n FROM Employees\n WHERE EmployeeId = ...\n", "label": 1}, {"text_1": "How do I use CTE for this", "text_2": "advId name CountOfmanager\n1 King 9\n2 Maceij 4\n3 Los 2\n4 Los1 0\n5 Griff 0\n6 SA 2\n7 CASSANDRA 0\n8 Jason 0\n9 Smith 0\n10 Akee 1\n11 Manasa 0\n12 Akee 0\n13 Manasa 0\n", "label": 1}, {"text_1": "Converting id's in int[] elements in another table Postgres", "text_2": "select dt.id, array_agg(point(p.x, p.y))\nfrom pointtable p\njoin (\n select id, unnest(points) as p\n from linetable\n) as dt on p.id = dt.p\ngroup by dt.id\norder by dt.id;\n", "label": 1}, {"text_1": "Delete one row from same rows", "text_2": "DELETE T\nFROM (\n SELECT TOP 1 *\n FROM YourTable \n WHERE [first]=1 and [second]=2\n) T;\n", "label": 1}, {"text_1": "How to skip a matched result of a subquery?", "text_2": "select * from tabName A\nwhere A.ArtId !=\n(\n select min(ArtId)\n from tabName B\n group by Title\n having A.Title=B.Title\n);\n", "label": 1}, {"text_1": "\"Unfavourable\" execution plan with Postgres and PostGIS", "text_2": "UPDATE sgclasstab_id68 SET att_1496 = (\n SELECT sgclasstab_id67.att_1115 \n FROM sgclasstab_id67, sggeofacelist, sggeopointlist \n WHERE ((sgclasstab_id67.att_1114=sggeofacelist.oid )) \n AND ((sgclasstab_id68.att_1139=sggeopointlist.oid )) \n AND (ST_Intersects(sggeofacelist.feature,(sggeopointlist.feature))) \n AND (sggeofacelist.oid=sgclasstab_id67.att_1114) \n)\n", "label": 1}, {"text_1": "How to check which database exists and use it in the function?", "text_2": "DECLARE @dbName VARCHAR(20)\nSET @dbName = CASE WHEN DB_ID('DB1') IS NULL THEN 'DB2' ELSE 'DB1' END;\n\nIF @dbName = 'DB1' \n SELECT * FROM DB1.dbo.testtable;\nELSE\n SELECT * FROM DB2.dbo.testtable;\n", "label": 1}, {"text_1": "Count one-to-one relationship in grails", "text_2": "HQL\ndef result = VoiceUser.executeQuery('SELECT COUNT(user) FROM VoiceUser AS user INNER JOIN user.licenceType AS licence WHERE licence.code = :code', [code: 'A'])[0]\n", "label": 1}, {"text_1": "SQL Stored procedure, Output rows as columns for summary", "text_2": "EXEC(@SQL)\n -- OR\nEXEC SP_EXECUTESQL(@SQL)\n", "label": 1}, {"text_1": "Update on game statistic. SQL", "text_2": "UPDATE game_stats gs\nSET gs.data1 = '0', gs.data2= '0', gs.data3= '0'\nWHERE exists\n(SELECT u.id\nFROM users u \nWHERE u.is_valid='true' AND\nu.id = gs.userid)\n", "label": 1}, {"text_1": "Get information from 2 tables", "text_2": "select distinct t2.location\nfrom table2 t2\ninner join table1 t1 \n on t2.location = t1.location\nwhere \n t1.organization = '001'\n and t2.userid = 'User1' \n", "label": 1}, {"text_1": "giving priority to values in an SQL stmt", "text_2": "ORDER BY CASE t.Category WHEN 'algorithm' THEN 0\n WHEN 'k-means' THEN 1\n WHEN 'statistics' THEN 2\n WHEN 'clustering' THEN 3\n WHEN 'science' THEN 4 END\n", "label": 1}, {"text_1": "Creation of all possible combinations with SQL Server", "text_2": "DECLARE @Item TABLE (ItemId int PRIMARY KEY, Name varchar(50));\n\nDECLARE @Item_SubItem TABLE (ItemId int, SubitemId int, \n PRIMARY KEY (ItemId,SubItemId));\n\nDECLARE @SubItem TABLE (SubitemId int PRIMARY KEY, Name varchar(50));\n", "label": 1}, {"text_1": "Is it possible to concatenate column values into a string using CTE?", "text_2": "SELECT myId,\n STUFF((SELECT ',' + rtrim(convert(char(50),Name))\n FROM namestable b\n WHERE a.myId = b.myId\n FOR XML PATH('')),1,1,'') Names\nFROM namestable a\nGROUP BY myId\n", "label": 1}, {"text_1": "Update 1 column based on changing values in another column", "text_2": ";WITH CTE AS (\nSELECT *,\nROW_NUMBER()OVER(ORDER BY ID) rnka\nFROM Table1)\n\n\nUPDATE t\nSET [Start/End] = CASE WHEN t1.ID is null or t2.ID is null\n THEN 1\n WHEN t.RecordID <> t1.RecordID OR t.RecordID <> t2.RecordID\n THEN 1 END \nFROM CTE t\nLEFT JOIN CTE t1\n ON t1.rnka = t.rnka - 1\nLEFT JOIN CTE t2\n ON t2.rnka = t.rnka + 1\n", "label": 1}, {"text_1": "Comparing grouped data", "text_2": "select groupId, checksum_agg(name)\nfrom #Grouping2\ngroup by groupId;\n", "label": 1}, {"text_1": "MySQL ALTER column to last position in table", "text_2": "ALTER TABLE test MODIFY first_history_column AFTER dummy\nALTER TABLE test DROP dummy\n", "label": 1}, {"text_1": "How to arrange date/time into AM in/out and PM in/out", "text_2": "TRANSFORM Min(tm.Date) AS MinOfDate\nSELECT Format([Date],\"dd/mm/yyyy\") AS dt, tm.EmpID\nFROM tm\nGROUP BY Format([Date],\"dd/mm/yyyy\"), tm.EmpID\nPIVOT tm.InOutMode;\n", "label": 1}, {"text_1": "Updating a column based on another column", "text_2": "CREATE OR REPLACE VIEW type_vw AS (\n SELECT\n ID, \n CASE\n WHEN Food = 'Y' THEN 'Food'\n WHEN Drink = 'Y' THEN 'Drink'\n WHEN Animal = 'Y' THEN 'Animal'\n END as Type\n FROM tbl\n);\n", "label": 1}, {"text_1": "SQL Comparison of Dates", "text_2": "1. FROM\n2. ON\n3. OUTER\n4. WHERE\n5. GROUP BY\n6. CUBE | ROLLUP\n7. HAVING\n8. SELECT\n9. DISTINCT\n10. ORDER BY\n11. TOP\n", "label": 1}, {"text_1": "Issuing a lock and timeout value on a Oracle database table", "text_2": "create table app_lock ( application_name varchar2(100) not null);\n\ninsert into app_lock values ('myapp');\n\ncommit;\n\nselect application_name from app_lock where application_name = 'myapp' for update;\n", "label": 1}, {"text_1": "How to store user specific data in a database", "text_2": "User ID | User Name | Full Name | Email Address\n", "label": 1}, {"text_1": "INNER JOIN in MySQL", "text_2": "SELECT f.*\nFROM FRIENDS f\nLEFT JOIN ORDERS o\n ON f.ID = o.friendID\nWHERE o.ID IS NULL;\n", "label": 1}, {"text_1": "Query always return all the data", "text_2": "MySQL> SELECT 1 + 1, '' + '', '1abc' + 1;\n+-------+---------+------------+\n| 1 + 1 | '' + '' | '1abc' + 1 |\n+-------+---------+------------+\n| 2 | 0 | 2 |\n+-------+---------+------------+\n1 row in set, 1 warning (0.00 sec)\n", "label": 1}, {"text_1": "Best practices re sharing IDbConnection or connection string/factory in your .Net code", "text_2": "public void Save()\n{ \n using (ConnectionManager mrg = ConnectionManager.GetManager(\"SQLConnectionString\")\n {\n using (SQLCommand cmd = new SQLCommand)\n {\n cmd.connection = mgr.Connection\n // More ADO Code Here\n }\n\n _childObject.Save(); //this child object follows the same pattern with a using ConnectionManager.\n }\n}\n", "label": 1}, {"text_1": "What is the best way to give last elements/items of DB table", "text_2": "Dim count = ltable.Rows.Count()\nFor i As Integer = count - 4 To count - 1\n Dim s = ltable.Rows(i)\nNext i\n", "label": 1}, {"text_1": "Select Database names and extended properties in SQL Server", "text_2": "SELECT db.Name, #EP.PropertyName, #EP.PropertyValue\nFROM sys.databases db\nLEFT OUTER JOIN #EP\n ON db.name = #EP.DatabaseName\n", "label": 1}, {"text_1": "Return row with the max value of one column per group", "text_2": "SELECT DISTINCT\n id\n ,first_value(round) OVER (PARTITION BY id ORDER BY round DESC) AS round\n ,first_value(score) OVER (PARTITION BY id ORDER BY round DESC) AS score\nFROM SCORES\nWHERE id IN (1,2,3)\nORDER BY id;\n", "label": 1}, {"text_1": "How to insert into a table from another table and from user input?", "text_2": "INSERT INTO books (borrower_name, isbn) \nSELECT 'Jane', isbn \n FROM table_name\n-- WHERE id = ? \n", "label": 1}, {"text_1": "How are XML and JSON used in conjunction with SQL?", "text_2": "var data = []\nwhile (row = fetch_from_database())\n data.push(row.name)\nvar json = json_encode(data)\nprint json\n", "label": 1}, {"text_1": "NOT IN Select statement returning 0 values", "text_2": "select id, code\nfrom data.test \nwhere id not in (select id from data.test where code = 23 and id is not null) and\n id in ('abc', 'def', 'ghi', 'jkl', 'mno', 'pqr') \n", "label": 1}, {"text_1": "How to change the length of a column in a SQL Server table via T-SQL", "text_2": "ALTER TABLE YourTable\nALTER COLUMN Col1 VARCHAR(20)\n", "label": 1}, {"text_1": "Is it possible to add more than one foreign key to one field in table", "text_2": "SELECT *\nFROM Products P LEFT JOIN AdditionalFields A ON P.AdditionalFields_ID = A.AdditionalFields_ID\n", "label": 1}, {"text_1": "Oracle NUMBER to TIME", "text_2": "CREATE TABLE times ( time ) AS\n SELECT 9 FROM DUAL\nUNION ALL SELECT 1.2 FROM DUAL\nUNION ALL SELECT 15.53 FROM DUAL\nUNION ALL SELECT 24.62 FROM DUAL;\n", "label": 1}, {"text_1": "Cant fetch records that have null values in cloumns", "text_2": "SELECT *\nFROM\nSTUDENT S,COURSE C\nWHERE\nS.COURSE_ID=C.COURSE_ID\n", "label": 1}, {"text_1": "SQL Nested Select - Access", "text_2": "PIVOT ([SalesReg Union].[Month]) IN ('Jan', 'Feb', 'Mar')\n", "label": 1}, {"text_1": "SQL Union query simplification", "text_2": "SELECT\nt.id,\nb.id,\nCOUNT(b.id),\nt.threshold\n\nFROM\ncurrent_stock c\ninner join article a on a.id = c.article_id\ninner join delivery d on d.id = a.delivery_id\ninner join product p on p.product_code = a.product_product_code\ninner join brand b on b.id = p.brand_id\ninner join threshold t on t.brand_id = b.id\n\nWHERE\nd.store_id = 'E260'\n\nGROUP BY b.id\nHAVING COUNT(b.id) <= t.threshold\n", "label": 1}, {"text_1": "SQL query to copy column contingent on contents", "text_2": "INSERT INTO my_table (Date, Name, Age, City, Status)\nSELECT DATE_ADD (Date, INTERVAL 7 DAY), Name, Age, City, \n CASE WHEN Status IN ('Hold', 'Pending') THEN 'Needs Examining'\n ELSE '' END AS Status\nFROM my_table\n", "label": 1}, {"text_1": "copy a SQL Server 2008 database and rename it", "text_2": "USE [master];\nGO\nIF DB_ID('DB-B') IS NOT NULL\nBEGIN\n ALTER DATABASE [DB-B] SET SINGLE_USER WITH ROLLBACK IMMEDIATE;\n DROP DATABASE [DB-B];\nEND\nGO\n", "label": 1}, {"text_1": "Using group by on multiple columns", "text_2": "select Subject, Count(*)\nfrom Subject_Selection\ngroup by Subject\n", "label": 1}, {"text_1": "How do I write this sql query", "text_2": "SELECT src.c_id, src.s_fname, c \nFROM (\n SELECT c.c_id, s.s_fname, count(r.c_id) AS c, p.pos_id\n FROM results r, candidates c, student s,positioning p, organization o \n WHERE r.c_id = c.c_id \n AND c.sid = s.sid \n AND c.pos_id = p.pos_id \n AND o.org_id = c.org_id \n AND o.org_id = 1\n GROUP BY c.c_id\n) src\nGROUP BY src.pos_id;\n", "label": 1}, {"text_1": "Data validation in sql", "text_2": "StartTimestamp EndTimestamp\n----------------------- -----------------------\n2011-05-23 10:00:00.000 2011-05-23 13:00:00.000\n2011-05-23 08:00:00.000 2011-05-23 12:00:00.000\n2011-05-23 12:00:00.000 2011-05-23 16:00:00.000\n", "label": 1}, {"text_1": "How to restrict SQL columns based on id of requester?", "text_2": "SELECT column_name \n FROM ColumnPerms \n WHERE user_or_role = '@manager'\n AND table = 'Payroll'\n AND column_name IN ('first_name', 'last_name', 'hire_date', 'base_salary', 'bonus')\n", "label": 1}, {"text_1": "Autoincrement Id and key problem (MySQL)", "text_2": "ALTER TABLE `table` ADD COLUMN `id` INT(11) NOT NULL AUTO_INCREMENT, \nDROP PRIMARY KEY, \nADD PRIMARY KEY (`id`)\n", "label": 1}, {"text_1": "Optimizing queries based on clustered and non-clustered indexes in SQL?", "text_2": "1000 -> 20, 1\n2000 -> 20, 2\n", "label": 1}, {"text_1": "Insert Bytes array INTO varbinary(max) record", "text_2": "RemoteSQLcmd = New SqlCommand(\"INSERT INTO Table(1) Values (newid(), ProductID, @bin_value\", RemoteSQLConn)\nRemoteSQLcmd.Parameters.AddWithValue(@bin_value\", imSource) ;\n", "label": 1}, {"text_1": "Get cross data of multiple tables in MySQL", "text_2": "SELECT *\nFROM customer\nINNER JOIN address\nON customer.street = address.street\n AND customer.street_number = address.street_number\nINNER JOIN cluster\nON address.cluster = cluster.id\n", "label": 1}, {"text_1": "How to obtain Local IP Address of PC within Oracle ApEx ", "text_2": "select sys_context('userenv','ip_address') \n from dual;\n", "label": 1}, {"text_1": "Multiple Formula on PostgreSQL", "text_2": "select\n table_name,\n 2.5*((r-i)/(r+(6*i)-(7.5*n)+1)) as tera,\n (r-(2*i)-n)/(r+(2*i)-n) as tera2\nfrom\n (\n select\n table_name,\n sum(case when wavelength between 340 and 345 then reflectance end) as r,\n sum(case when wavelength between 350 and 355 then reflectance end) as i,\n sum(case when wavelength between 360 and 365 then reflectance end) as n\n from\n (\n select 'table 1' as table_name, * from test\n union all\n select 'table 2', * from test\n union all\n select 'table 3', * from test \n union all\n select 'table 4', * from test \n ) as all_tables\n group by\n table_name\n ) vars\n", "label": 1}, {"text_1": "SQL query from flat file", "text_2": "declare @t table\n(\n name varchar(max),\n email1 varchar(max),\n email2 varchar(max),\n email3 varchar(max),\n email4 varchar(max)\n)\n\ninsert into @t \n values ('name1a','email1a','email2a','email3a','email4a')\ninsert into @t \n values ('name2b','email1b','email2b','email3b','email4b')\n\n select * from @t\n\nSELECT name, email \nFROM\n(\nSELECT name, email1, email2, email3, email4\nFROM @t) p\nUNPIVOT\n (email FOR emails IN \n (email1, email2, email3, email4)\n)AS unpvt\n \n", "label": 1}, {"text_1": "How to get the count of distinct values until a time period Impala/SQL?", "text_2": "SELECT \"DayC\", COUNT(DISTINCT \"ID\")\nFROM sales\ncross JOIN days \nWHERE \"Day\" <= \"DayC\"\nGROUP BY \"DayC\"\n", "label": 1}, {"text_1": "This SELECT query takes 180 seconds to finish", "text_2": "CREATE TABLE `filler` (\n `id` int(11) NOT NULL AUTO_INCREMENT,\n PRIMARY KEY (`id`)\n) \n", "label": 1}, {"text_1": "Select a specific date for the current year", "text_2": "SELECT DATEADD(YEAR,YEAR(GETDATE()) - 2000,'20000531')\n", "label": 1}, {"text_1": "Adding a padding 0 to a SQL column", "text_2": "SELECT RIGHT('00000' + <string>, 5)\n", "label": 1}, {"text_1": "ON DUPLICATE KEY update (with multiple where clauses)", "text_2": "ALTER TABLE records ADD CONSTRAINT tb_uq UNIQUE (p_id, c_id)\n", "label": 1}, {"text_1": "Oracle Transform rows into column and combined duplicate rows", "text_2": " LOCATION |PROPERTIES | VALUE \n -----------|-----------|--------\n Texas | Latitude | 21.391 \n Texas | Longitude | 54.12 \n Detroit | Latitude | 24.23 \n Detroit | Longitude | 54.23 \n New York | Latitude | 24.239 \n New York | Longitude | 55.5 \n", "label": 1}, {"text_1": "sql function with two parameters. Call from VB .NET", "text_2": "Result = Convert.ToInt32(cmd.ExecuteScalar())\n", "label": 1}, {"text_1": "SQL Server Split", "text_2": "380 1\n380 14\n380 280\n", "label": 1}, {"text_1": "Identifiers in a Diamond Relationship between Tables", "text_2": "Table A\n-------\n100\n101\n102\n\nTable B\n-------\n100 1\n100 2\n101 1\n\nTable C\n-------\n100 1\n100 2\n101 1\n\n\nTable D\n-------\n100 1 1\n100 2 1\n100 1 2\n101 1 1\n", "label": 1}, {"text_1": "How do locks work in a insert...select statement?", "text_2": " set transaction isolation level serializable\n begin tran\n insert into Invoice with (item,OrderNumber) \n select 'ItemA', max(OrderNumber)+1 \n from Orders\n where item='ItemA'\n\n waitfor delay '00:00:05'\n\n commit tran \n", "label": 1}, {"text_1": "Fastest way to perform nested bulk inserts with scope_identity() usage?", "text_2": "DROP TABLE tblRelated;\nDROP TABLE tblBase;\nDROP PROCEDURE stp_InsertMultipleRecordsToMultipleTables;\nDROP TYPE udt_base;\nDROP TYPE udt_related;\nDROP TYPE udt_idMap;\nGO\n", "label": 1}, {"text_1": "How to perform string concatenation in PL/SQL?", "text_2": " '''' || '&1' || ''''\n", "label": 1}, {"text_1": "Where Clause That Grabs Values From A Table And If It Returns Null It Grabs Only Nulls", "text_2": "select t1.*\nfrom table1 t1\nwhere exists (select 1\n from table2 t2\n where t1.user = t2.username or t1.user is null and t2.user is null\n );\n", "label": 1}, {"text_1": "Put values from specific tag in a json array into plain array", "text_2": "array\n{1,2,4,8,16}\n", "label": 1}, {"text_1": "How do you sort a query by sum of distinct values?", "text_2": "SELECT item, SUM(sales) totalSales\nFROM sales\nGROUP BY item\n", "label": 1}, {"text_1": "extract values from a data frame based on a vector of row numbers in R", "text_2": "df[,\"Species\"][x]\n", "label": 1}, {"text_1": "creating parent child relationship when migrating data (sql server 2008)", "text_2": "insert into Customer (Name,Surname)\n select Name,Surname from staging_table;\n", "label": 1}, {"text_1": "Changing precision of numeric column in Oracle", "text_2": "alter table EVAPP_FEES rename column AMOUNT to AMOUNT_OLD;\n\nalter table EVAPP_FEES add AMOUNT NUMBER(14,2);\n\nupdate EVAPP_FEES set AMOUNT = AMOUNT_OLD;\n\nalter table EVAPP_FEES drop column AMOUNT_OLD;\n", "label": 1}, {"text_1": "Sequential Group By in sql server", "text_2": "WITH T\n AS (SELECT *,\n ID - ROW_NUMBER() OVER (PARTITION BY [STATUS] ORDER BY [ID]) AS Grp\n FROM YourTable)\nSELECT [STATUS],\n SUM([VALUE]) AS [SUM(VALUE)]\nFROM T\nGROUP BY [STATUS],\n Grp\nORDER BY MIN(ID)\n", "label": 1}, {"text_1": "Mysql left join, group by, count and union all", "text_2": "\u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557\n\u2551 product_name \u2551 Product_Count \u2551\n\u2560\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2563\n\u2551 Name 1 \u2551 2 \u2551\n\u2551 Name 2 \u2551 3 \u2551\n\u2551 Name 3 \u2551 7 \u2551\n\u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255d\n", "label": 1}, {"text_1": "Select 1st and 2nd Record before record X", "text_2": "SELECT t2.cEventData1,\n Occurances = COUNT(*)\nFROM T t1\n OUTER APPLY\n ( SELECT TOP 2 t2.dEventTime, t2.SeqNo, t2.cEventData1\n FROM T t2\n WHERE t1.InteractionKey = t2.InteractionKey\n AND t1.dEventTime > t2.dEventTime\n ORDER BY t2.dEventTime DESC\n ) t2\nWHERE t1.cEventData1 = 'Disconnect'\nGROUP BY t2.cEventData1;\n", "label": 1}, {"text_1": "Simple SQL code evades me.. Unionize two mismatched tables", "text_2": "SELECT\n *,\n (SELECT TOP 1 Name FROM Blah WHERE Blah.SomeID = MyTable.SomeID) AS ExtraCol\nFROM\n MyTable\n", "label": 1}, {"text_1": "How to sum up time field in SQL Server", "text_2": ";WITH w(e, mw) AS\n(\n SELECT EmployeeID, SUM(DATEDIFF(MINUTE, '0:00:00', WrkHrs)) \n FROM dbo.table \n -- WHERE ...\n GROUP BY EmployeeID\n)\nSELECT EmployeeID = e,\n WrkHrs = RTRIM(mw/60) + ':' + RIGHT('0' + RTRIM(mw%60),2)\n FROM w;\n", "label": 1}, {"text_1": "Storing multiple tags in one column", "text_2": "file_id tag_id\n------- ------\n 1 1\n 2 2\n 2 3\n", "label": 1}, {"text_1": "Converting id's in int[] elements in another table Postgres", "text_2": " id | array_agg \n----+-------------------------------------------\n 1 | {\"(1,0)\",\"(2,1)\",\"(5,6)\",\"(7,0)\",\"(2,4)\"}\n 2 | {\"(2,4)\",\"(4,4)\",\"(7,0)\",\"(5,6)\",\"(2,1)\"}\n 3 | {\"(1,0)\",\"(5,9)\"}\n", "label": 1}, {"text_1": "SQL - partially order by list of id's", "text_2": "\nmysql> SELECT FIELD('ej', 'Hej', 'ej', 'Heja', 'hej', 'foo');\n -> 2\nmysql> SELECT FIELD('fo', 'Hej', 'ej', 'Heja', 'hej', 'foo');\n -> 0\n", "label": 1}, {"text_1": "sql how to get consecutive appearance of value", "text_2": "value result Result Sum\n----- ----------- -----------\nA 1 4\n", "label": 1}, {"text_1": "SELECT TOP N with variable", "text_2": "declare @RndQuesnCount table (recid int,conceptid int,mindisplaycount int)\ninsert into @RndQuesnCount(Recid,conceptID,MinDisplayCount) values\n(1, 3839, 2),\n(2, 4802, 3)\n\ndeclare @QuesTable table (QuesCompID int,Ques_ConceptDtlID int)\ninsert into @QuesTable(QuesCompID,Ques_ConceptDtlID) values\n(88, 4802),\n(89, 4802),\n(90, 4802),\n(91, 4802),\n(92, 4802),\n(93, 4802)\n", "label": 1}, {"text_1": "Dynamic alternative to pivot with CASE and GROUP BY", "text_2": "SELECT * FROM crosstab(\n 'SELECT bar, 1 AS cat, feh\n FROM tbl_org\n ORDER BY bar, feh')\n AS ct (bar text, val1 int, val2 int, val3 int); -- more columns?\n", "label": 1}, {"text_1": "SQL - How to list items which are below the average", "text_2": "SELECT t.Test_name, s.*, sc.*\n FROM Tests t\n JOIN Scores sc\n ON t.id_Tests = sc.Tests_id_Tests\n JOIN Students s\n ON sc.Students_id_Students = s.id_Students\n WHERE sc.result <\n (select avg(x.result)\n from scores x\n where sc.Tests_id_Tests = x.Tests_id_Tests)\n", "label": 1}, {"text_1": "Force MySQL to use two indexes on a Join", "text_2": "select t.* from t1 as t where t.i=2 and t.j=3 or t.i=3 and t.j=2\n", "label": 1}, {"text_1": "Checking date with less than or equal to 10 days", "text_2": "DATEDIFF(DAY,start_date,end_date) <= 10 AND DATEDIFF(DAY,start_date,end_date) >= 40;\n", "label": 1}, {"text_1": "How to count occurencies of two dependent columns in mysql", "text_2": "SELECT 1 as set, W1 as W, L1 as L FROM <table>\nUNION ALL\nSELECT 2, W2 as W, L2 as L FROM <table>\nUNION ALL\nSELECT 3, W3 as W, L3 as L FROM <table>\nUNION ALL\nSELECT 4, W4 as W, L4 as L FROM <table>\nUNION ALL\nSELECT 5, W5 as W, L5 as L FROM <table>\n", "label": 1}, {"text_1": "MySQL - alternatives to nested subqueries when limiting aggregate data in a correlated subquery", "text_2": "SELECT AVG(d.DailyData1) Data1_20DayAvg \n --- other aggregate stuff on d (Datatable)\nFROM \n ( SELECT '2012-01-23' AS DateChecked\n ) AS dd\n JOIN\n DataTable AS d\n ON\n d.Date <= dd.DateChecked\n AND\n d.Date >= COALESCE( \n ( SELECT DailyData1 \n FROM DataTable AS last20 \n WHERE Date <= dd.DateChecked \n AND (other conditions for last20)\n ORDER BY Date DESC \n LIMIT 1 OFFSET 19\n ), '1001-01-01' )\nWHERE (other conditions for d Datatable)\n", "label": 1}, {"text_1": "DB2 alias in WHERE clause", "text_2": "SELECT a.*, b.tech_id as user \n FROM users a \nINNER JOIN newsletter b ON b.tech_id = a.newsletter_id\nORDER BY b.tech_id\nFETCH FIRST 1 ROW ONLY;\n", "label": 1}, {"text_1": "ASP Time formatting - Change default formatting?", "text_2": "dim rawDate : rawDate = cDate(value)\n", "label": 1}, {"text_1": "SQL Server 2008: delete duplicate rows", "text_2": "WITH cte AS (SELECT *,ROW_NUMBER() OVER(PARTITION BY uniqueid ORDER BY col2)'RowRank'\n FROM Table)\nDELETE FROM cte \nWHERE RowRank > 1\n", "label": 1}, {"text_1": "Selecting a subset of rows that exceed a percentage of total values", "text_2": "WITH cte AS\n(\n SELECT *, ROW_NUMBER() OVER(PARTITION BY [User] ORDER BY Revenue DESC) AS rn\n FROM t \n), cte2 AS\n(\n SELECT c.Customer, c.[User], c.[Revenue]\n ,percentile = 1.0 * Revenue / NULLIF(c3.s,0)\n ,running_percentile = 1.0 * c2.s / NULLIF(c3.s,0)\n FROM cte c\n CROSS APPLY\n (SELECT SUM(Revenue) AS s\n FROM cte c2\n WHERE c.[User] = c2.[User]\n AND c2.rn <= c.rn) c2\n CROSS APPLY\n (SELECT SUM(Revenue) AS s\n FROM cte c2\n WHERE c.[User] = c2.[User]) AS c3\n) \nSELECT *\nFROM cte2\nWHERE running_percentile <= 0.8;\n", "label": 1}, {"text_1": "querying years that contains multiple fields in oracle db", "text_2": "select year\nfrom data\ngroup by year\nhaving count(case when ltr not in ('a','b','c') then 1 end) = 0\n", "label": 1}, {"text_1": "Oracle: query on key/value pairs stored in one of the columns?", "text_2": "SELECT * FROM T WHERE prop1= :val1 AND prop2= :val2 AND prop3= :val3\n", "label": 1}, {"text_1": "Rank query results based on how many of the WHERE conditions are satisfied", "text_2": "... \nORDER BY (CASE WHEN Condition1 THEN 1 ELSE 0 END\n + CASE WHEN Condition2 THEN 1 ELSE 0 END\n + CASE WHEN Condition3 THEN 1 ELSE 0 END) DESC;\n", "label": 1}, {"text_1": "Sum of subcategory in database?", "text_2": "select\n sub_category,\n sum(amount) as total\nfrom mytable\ngroup by sub_category\nwhere category = 'Children'\n", "label": 1}, {"text_1": "Confusion with Oracle CONNECT BY", "text_2": " CREATE TABLE step1 AS\n SELECT 1 \"LEVEL\", X from mytable\n WHERE x = 1;\n SELECT * FROM step1;\n\n LEVEL X\n ---------- ----------\n 1 1\n", "label": 1}, {"text_1": "how to join 4 tables in microsoft access with one table as the base?", "text_2": "SELECT DollarValue FROM Cars\nUNION ALL\nSELECT DollarValue FROM TVs\nUNION ALL\nSELECT DollarValue FROM Toys\n", "label": 1}, {"text_1": "MySQL - Conditional COUNT with GROUP BY", "text_2": "SELECT puid, COUNT(DISTINCT CASE WHEN droid_v > 0 THEN droid_v ELSE 0 END) - 1 AS droid /* -1 for the case where droid_v is 0 */\n , COUNT(DISTINCT sig_v) AS sig\n , SUM(NoExt) AS hits\n", "label": 1}, {"text_1": "OWB wb_rt_constants definition", "text_2": "col execution_audit_status format a20\n\nselect distinct e.audit_status,\n wb_rt_constants.to_string(e.audit_status) as execution_audit_status\n from wb_rt_audit_executions e;\n\nAUDIT_STATUS EXECUTION_AUDIT_STAT\n------------ --------------------\n 16002 BUSY\n 16004 COMPLETE\n", "label": 1}, {"text_1": "DISTINCT Is not working in inner join", "text_2": "SELECT\n users.fbid, \n users.name,\n maxRecords.points\nFROM\n users\n JOIN\n (\n SELECT\n MAX(players_records.points) AS points,\n players_records.user_id\n FROM\n players_records\n GROUP BY\n players_records.user_id\n ) AS maxRecords\n ON maxRecords.user_id=users.fbid\nORDER BY \n maxRecords.points DESC \nLIMIT 5\n", "label": 1}, {"text_1": "SELECT maximum and minimum value from a table", "text_2": "select fname, lname, Salary\nfrom Employees\nwhere Salary = (select min(Salary) from Employees) or \n Salary = (select max(Salary) from Employees)\n", "label": 1}, {"text_1": "MySQL querying rostered shifts over a number of days - simpler way?", "text_2": " (Date = '2012-04-16' AND Time >= '20:00:00')\n OR\n (Date = '2012-04-17' AND Time <= '08:00:00')\n", "label": 1}, {"text_1": "Oracle define field name in query, use in where", "text_2": "select acct_id\n , sum(amt_due_per3) as tot_amt_due_per3\n , sum(amt_due_per4) as tot_amt_due_per4\n , abs (sum(amt_due_per3) + sum(amt_due_per4)) as cutoffAmt\nfrom ( select acct_id\n , amt_due_per3\n , amt_due_per4\n from mytable\n where acct_id = '4679721000')\ngroup by acct_id\nhaving abs (sum(amt_due_per3) + sum(amt_due_per4)) > 100.0\n", "label": 1}, {"text_1": "How to migrate MySQL databases to my local machine", "text_2": "mysql -u root -p < export.sql\n", "label": 1}, {"text_1": "How to represent relational division(basic algebra expression) in terms of SQL", "text_2": "create table Boats(\n bid int,\n bname varchar(50),\n color varchar(50)\n);\n\ncreate table Reserves(\n sid int,\n bid int,\n day date\n);\n", "label": 1}, {"text_1": "SELECT STATMENT", "text_2": " Create View ProjectWithTesters\n As \n Select proj_id, \n t1.name + ' ' + t1.surname tester1,\n t2.name + ' ' + t2.surname tester2,\n t3.name + ' ' + t3.surname tester3\n From Project p \n Left Join Emp t1 On t1.emp_id = p.Tester_1\n Left Join Emp t2 On t2.emp_id = p.Tester_2\n Left Join Emp t2 On t3.emp_id = p.Tester_3\n", "label": 1}, {"text_1": "orderBy several Columns - Doctrine QueryBuilder", "text_2": "$qb = $em->createQueryBuilder();\n$qb\n ->select('entity', 'IF(col1, col1, col2) as orderCol')\n ->from('Namespace/Entity', 'entity')\n ->orderBy('orderCol', 'DESC')\n", "label": 1}, {"text_1": "Create a view with ORDER BY clause", "text_2": "SalesOrderID OrderDate CustomerID AccountNumber TotalDue\n------------ ---------- ---------- -------------- ----------\n43793 2005-07-22 11000 10-4030-011000 3756.989\n51522 2007-07-22 11000 10-4030-011000 2587.8769\n57418 2007-11-04 11000 10-4030-011000 2770.2682\n51493 2007-07-20 11001 10-4030-011001 2674.0227\n43767 2005-07-18 11001 10-4030-011001 3729.364\n", "label": 1}, {"text_1": "How to kill a process/query in DB2", "text_2": "db2 force application (xx)\n", "label": 1}, {"text_1": "postgresql :: retrieve row matching exact condition or number of rows matching part of condition", "text_2": "SELECT count(*) as total_count, --count of permission records for object\n bool_or(user_id = 1 AND readable) as user_readable, -- user has read permission, null if no permission record\n bool_or(user_id = 1 AND writable) as user_writable, -- user has write permission, null if no permission record\nFROM permission\nWHERE object_id = 123456\n", "label": 1}, {"text_1": "TSQL - Insert values in table based on lookup table", "text_2": "UPDATE m\nSET m.categorygroup = c.categorygroup\nFROM maindata m\nJOIN creditorlist c\n ON m.creditorname = c.creditorname;\n", "label": 1}, {"text_1": "How do I easily keep records in a database linked together?", "text_2": "Policy newPolicy = null;\nforeach(Policy policy in policyList)\n{\n Policy masterPolicy = policy.MasterPolicyId.HasValue ? newPolicy : null;\n newPolicy = Convert(policy, masterPolicy); \n\n}\n", "label": 1}, {"text_1": "Query execution is taking too long", "text_2": "update email e\n set email_status_id = 2\n where exists (select 1 from unsubscribed u where u.email = e.email);\n", "label": 1}, {"text_1": "SQL Query Inner Join with Temp Table", "text_2": "WITH XOperLU (xopername, xoperdesc)\n AS\n (\n SELECT xopername, CAST(xoperdesc AS VARCHAR(20))\n FROM (\n VALUES ('Street', 'SS'), \n ('Town', 'TW') \n ) AS XOperLU (xopername, xoperdesc)\n ) SELECT T1.COLUMN_NAME as COLUMN_NAME, T1.DATA_TYPE as DATA_TYPE, S1.xoperdesc AS Description FROM INFORMATION_SCHEMA.COLUMNS AS T1 \n INNER JOIN XOperLU AS S1\n ON S1.xopername = T1.COLUMN_NAME\n WHERE (TABLE_SCHEMA = 'dbo') AND (TABLE_NAME = 'Clients')\n", "label": 1}, {"text_1": "Select a part of a selected item in sql", "text_2": "select substring('Charmina (Female)',\n charindex('(','Charmina (Female)')+1,\n LEN('Charmina (Female)')-charindex('(','Charmina (Female)')-1)\n", "label": 1}, {"text_1": "skip copying to tmp table on disk mysql", "text_2": "[mysqld]\ntmpdir=/var/tmpfs\ntmp_table_size=2K\n", "label": 1}, {"text_1": "Should I use Excel or Access", "text_2": "'This code goes into a VBA-Module\n'and can be access on a Worksheet calling =myScan(\"test\")\nPublic Function myScan(strWorker As String)\n Table1.Cells(2, 1) = \"1\"\n Table1.Cells(2, 2) = strWorker\n Table1.Cells(2, 3) = Now()\nEnd Function\n", "label": 1}, {"text_1": "SQL Searching by MAX()", "text_2": "SELECT DOC_NAME\nFROM DOCUMENTS\nWHERE (DELIVERY_TIMESTAMP, ORDERID) IN (\n SELECT TOP 1 DELIVERY_TIMESTAMP, ORDERID\n FROM DOCUMENTS\n ORDER BY DELIVERY_TIMESTAMP DESC, ORDERID DESC\n)\n", "label": 1}, {"text_1": "Dynamics Ax new table with ID which auto-increments", "text_2": "public void create(boolean _append = false)\n\n{\n\n ;\n\n super(_append);\n\n\n\n FirstTable.AXSeqEDT = NumberSeq::newGetNum(HRMParameters::numRefAXSeqEDT(),true).num();\n\n}\n", "label": 1}, {"text_1": "How to select records that have multiple values in sql?", "text_2": "SELECT DISTINCT user_id, subscription_plan_id, created_at\nFROM subscriptions s\nWHERE user_id IN (\n SELECT user_id\n FROM subscriptions\n WHERE \n created_at BETWEEN '2014-01-01' AND '2014-01-31'\n GROUP BY\n user_id\n HAVING\n COUNT(DISTINCT subscription_plan_id) > 1)\nAND created_at BETWEEN '2014-01-01' AND '2014-01-31'\nORDER BY user_id, created_at\n", "label": 1}, {"text_1": "Can we link SQL scripts inside other SQL script in MySQL?", "text_2": "$ mysql -s < script1.sql\nFirst hello from script1\nHello from script2\nSecond hello from script1\n", "label": 1}, {"text_1": "Issue with multiple rows combining into single row", "text_2": "select x.cert_number,\n y1.name as owner_name,\n y2.name as carrier_name,\n y3.name as destination_name\nfrom table_x x\nleft join table_y y1\n on x.cert_number = y1.cert_number\n and y1.type = 'owner'\nleft join table_y y2\n on x.cert_number = y2.cert_number\n and y2.type = 'carrier'\nleft join table_y y3\n on x.cert_number = y3.cert_number\n and y3.type = 'destination';\n", "label": 1}, {"text_1": "Average of the Sum of X in MySQL", "text_2": "SELECT SUM(TACMrgin) / count(distinct month(date))\nFROM report_sales_month\nWHERE year(date) = 2013;\n", "label": 1}, {"text_1": "Selecting only rows with the highest value of one field, grouped by another field", "text_2": "select name,school,max(points) from table group by name,school\n", "label": 1}, {"text_1": "GROUP BY tsql, multiple records to return one", "text_2": "select t.*\nfrom (select t.*,\n row_number() over (partition by INSTR_ID\n order by (case when PRC_TYP = 'CLO' then 1\n when PRC_TYPE = 'LST' then 2\n else 3\n end)\n ) as seqnum\n from table t\n ) t\nwhere seqnum = 1;\n", "label": 1}, {"text_1": "Properly referencing documents in mongodb (relations)?", "text_2": "db.students.find({schoolId: <school-id>})\n", "label": 1}, {"text_1": "Creating a View using stored procedure", "text_2": "create procedure ProcToUseView\nas\nselect Col\nfrom MyView\n", "label": 1}, {"text_1": "SQL Performance: Using Union and Subqueries", "text_2": "SELECT DISTINCT f2.friend_id \n FROM friends AS f1\n JOIN friends AS f2 ON f1.friend_id=f2.user_id OR f2.user_id=1\n WHERE f1.user_id=1;\n", "label": 1}, {"text_1": "sql pivot with oracle?", "text_2": "SELECT Id,\nCASE p_name when 'name' THEN P_value end as Name,\nCASE p_name when 'path' THEN p_value end as Path\nFROM yourTableNameHere\n", "label": 1}, {"text_1": "Why SQL Server sql query returns empty list?", "text_2": "WHERE t6.Attiva = 1 \nAND (t1.Istante BETWEEN '2015-09-03 00:16:50.693' AND '2015-09-03 23:16:50.693')\nAND (t1.Partizione = 0 OR t1.Partizione = 6)\nAND t1.IdCorsia = 1\nAND t2.IdTransiti = t1.Id\nAND t6.Id = t1.IdCorsia\nORDER BY t1.Istante DESC\n", "label": 1}, {"text_1": "Select min, max and one row that has a special FK", "text_2": "SELECT \n MIN(\"FROM_X\") AS \"FROM\",\n MAX(\"TO_X\") AS \"TO\",\n max(case when project = 'break' then from_x else null end) as \"BREAK FROM\",\n max(case when project = 'break' then to_x else null end) as \"BREAK TO\",\n (MAX(\"TO_X\") - MIN(\"FROM_X\"))*24 AS TIME_SPENT,\n \"DAY\"\nFROM ATTENDANCE_HOURS\nGROUP BY DAY\n", "label": 1}, {"text_1": "Subtracting/Adding to a Where clause timestamp condition", "text_2": "where search_date >= causedat - interval '30' minute\nand search_date <= causedat + interval '30' minute;\n", "label": 1}, {"text_1": "comma separated values or table variable in case of using IN clause", "text_2": "DECLARE @UsersInTable TABLE (\n UserID INT\n)\n\nINSERT INTO @UsersInTable\nVALUES (1),(2),(3),(4),(5),(6),(7),(8),(9),(10)\n\nSELECT *\nFROM [dbo].[User] U\nWHERE U.UserID IN (\n SELECT UserID\n FROM @UsersInTable\n)\n", "label": 1}, {"text_1": "SQL more elegant combination of boolean checks possible?", "text_2": "select * from [TABLE1]\nwhere [path] = 'RECEIVE'\nand [src_ip] not regexp '^(10\\\\.48\\\\.20\\\\.10$|0\\\\.|127\\\\.)'\norder by [date], [time] desc\n", "label": 1}, {"text_1": "Why does SELECT ... WHERE id = a returns a result if value is 0", "text_2": "where id = 'a'\n", "label": 1}, {"text_1": "String concatenation in SQL server", "text_2": "DECLARE @foo TABLE(ID INT IDENTITY(1,1), col NVARCHAR(MAX));\n\nINSERT @foo(col) SELECT N'c,d,e,f,g';\nINSERT @foo(col) SELECT N'c,e,b';\nINSERT @foo(col) SELECT N'd,e,f,x,a,e';\n\nDECLARE @string NVARCHAR(MAX) = N'a,b,c,d';\n\n;WITH x AS\n(\n SELECT f.ID, c.Item FROM @foo AS f\n CROSS APPLY dbo.SplitStrings(f.col) AS c\n), y AS\n(\n SELECT ID, Item FROM x\n UNION\n SELECT x.ID, s.Item\n FROM dbo.SplitStrings(@string) AS s\n CROSS JOIN x\n)\nSELECT DISTINCT ID, Items = STUFF((SELECT ',' + Item \n FROM y AS y2 WHERE y2.ID = y.ID \n FOR XML PATH(''), TYPE).value('.[1]', 'nvarchar(max)'), 1, 1, N'')\nFROM y;\n", "label": 1}, {"text_1": "combining multiple different sql into one", "text_2": "SELECT SUM(status = 1) totalActive,\n SUM(status = 0) totalInactive\nFROM tableName\n", "label": 1}, {"text_1": "SQL: Joining two tables with email adresses in SQL Server", "text_2": "Results (identical to your desired results):\n| PersonID | CustomerID | FirstName | LastName | Email | ZipCode |\n| 8712 | 22 | Jeff | Carson | jeffcar@mail.com | 81712 |\n| 8916 | 29 | Jane | Doe | jane@doe.net | 51211 |\n| 9181 | 37 | Gina | Andersen | gina@gmail.com | 21147 |\n| 9515 | 37 | Ben | Andersen | ben88@gmail.com | 21147 |\n| NULL | 42 | Brad | Cole | brad@company.org | 39261 |\n", "label": 1}, {"text_1": "Getting date string from getdate method", "text_2": "select replace(replace(replace(\n convert(varchar(16),getDate(),120),' ',''),'-',''),':','')\n", "label": 1}, {"text_1": "SQL Server - juxstaposition of verses", "text_2": "SELECT zoo.name, animals.species, count(*) AS number\nFROM ANIMALS\nLEFT JOIN zoos ON animals.zoo_id = zoo.id\nGROUP BY zoo.id, species\n", "label": 1}, {"text_1": "Multiple INNER JOIN returns null", "text_2": "SELECT t1.grp_id, \n t1.email_id, \n coalesce(t2.sam_subject, '') sam_subject, \n coalesce(t3.subject, '') subject\nFROM t1\nleft JOIN t2 \n ON t2.sam_msg_id = t1.email_id \nleft JOIN t3 \n ON t1.email_id = t3.id\nWHERE t1.grp_id = '1' \n", "label": 1}, {"text_1": "Shift manipulation in SQL to get counts", "text_2": "SELECT EID,\n sum(case when shift = 'd' then 1 else 0 end) as dayshifts,\n sum(case when shift = 'n' then 1 else 0 end) as nightshifts,\n count(distinct case when shift in ('d', 'n') then cast(in_time as date) end) as total\nFROM Attendance a\nWHERE (in_time BETWEEN CONVERT(DATETIME, '2014-01-07 00:00:00', 102) AND\n CONVERT(DATETIME, '2014-07-31 00:00:00', 102)) AND\n PID = 'A002';\n", "label": 1}, {"text_1": "Android SQLite display \u00e5\u00e4\u00f6", "text_2": "<meta charset=\"UTF-8\">\n", "label": 1}, {"text_1": "Need feedback on an SQL Request (MySQL, GROUP BY behavior)", "text_2": "JOIN\n message m\n ON m.conversation_id = cu.conversation_id\nJOIN\n (SELECT conversation_id, MAX(id) AS id FROM message GROUP BY conversation_id) AS filter\n ON filter.conversation_id = cu.conversation_id\n AND filter.id = m.id\n", "label": 1}, {"text_1": "Storing complete class object into database in iPhone", "text_2": "NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];\nNSData * encodedObject = [NSKeyedArchiver archivedDataWithRootObject:rootObject];\n\n[defaults setObject:encodedObject forKey:kSaveArchiveKey];\n[defaults synchronize];\n", "label": 1}, {"text_1": "Procedurally transform subquery into join", "text_2": " SELECT x.*,\n COALESCE(z.mc, 0)\n FROM TABLE_X x\nLEFT JOIN (SELECT y.col,\n MAX(y.example_col) 'mc'\n FROM TABLE_Y y\n GROUP BY y.col) z ON z.col = x.col\n", "label": 1}, {"text_1": "Selecting first and last day of 2 separate months only given MM-YYYY date", "text_2": "//extract MM/YYYY from 'MM/YYYY-MM/YYYY'\nlocal stringvar MMYYYY := Split({?dates},\"-\")[2];\n//extract MM from 'MM/YYYY'\nlocal numbervar MM := ToNumber(Split(MMYYYY,\"/\")[1]);\n//extract YYYY from 'MM/YYYY'\nlocal numbervar YYYY := ToNumber(Split(MMYYYY,\"/\")[2]);\n//calculate first day of selected month, add a month, subtract a day, return last day of selected month\nDateAdd(\"m\",1,Date(YYYY,MM,1))-1;\n", "label": 1}, {"text_1": "How to write SQL - check for A5 Or if not exist then A6 AND A7", "text_2": "UNION\nSELECT 'A5+A6/A7' AS MSG WHERE NOT EXISTS (<A5 query>)\n AND ( NOT EXISTS(<A6 query>) OR NOT EXISTS(<A7 query>) )\n", "label": 1}, {"text_1": "Incrementing Rank Value in Column", "text_2": "select customer, product,\n row_number() over (partition by customer order by rank) as rank\nfrom t;\n", "label": 1}, {"text_1": "What is the Best Approach for Database Development Android", "text_2": "+----+-------------+---------+---------+---------+---------+---------+---------+\n| id | id_question | choice1 | choice2 | choice3 | choice4 | choice5 | correct |\n+----+-------------+---------+---------+---------+---------+---------+---------+\n", "label": 1}, {"text_1": "How to display 2 digits after dot in PostgreSQL?", "text_2": "select round(cast(your_float_column as decimal(10,2)), 2, 1)\nfrom your_table\n", "label": 1}, {"text_1": "Dynamically pivoting a table Oracle", "text_2": "select c_id,\n p_id,\n max(case when r_key= 'KEY1' then r_value end) KEY1,\n max(case when r_key= 'KEY2' then r_value end) KEY2,\n max(case when r_key= 'KEY3' then r_value end) KEY3,\n max(case when r_key= 'KEY4' then r_value end) KEY4,\n max(case when r_key= 'KEY5' then r_value end) KEY5\nfrom s_projectroles\ngroup by c_id, p_id\n", "label": 1}, {"text_1": "Database design for user entries (using mysql)", "text_2": "SELECT fields, i, want from activities WHERE userid=?\n", "label": 1}, {"text_1": "Delete multiple occurrences of the same ID # and code in a junction table", "text_2": "SELECT KHA_ID,\n ICD_FK,\n COUNT(1) -- the number of duplicates\n FROM ICD_Junction\n GROUP\n BY KHA_ID,\n ICD_FK\nHAVING COUNT(1) > 1\n;\n", "label": 1}, {"text_1": "Send key-value objects to postgres in queries", "text_2": "create function get_products(p_mapping text)\n returns table (name text, location text)\nas \n$$\n with elements (name, map) as (\n select json_object_keys(map::json) as name, map::json\n from json_array_elements_text(p_mapping::json) as map\n )\n select name, trim(both '\"' from (map -> name)::text) as location\n from elements;\n$$\nlanguage sql;\n", "label": 1}, {"text_1": "How does Select query work with Distinct clause", "text_2": "SELECT Dept_id, DISTINCT Job_id\n", "label": 1}, {"text_1": "How to figure out if mysql index fits entirely in memory", "text_2": "InnoDB (Caches Data and Index Pages)\nSELECT FLOOR(SUM(data_length+index_length)/POWER(1024,2)) InnoDBSizeMB\nFROM information_schema.tables WHERE engine='InnoDB';\n", "label": 1}, {"text_1": "postgresql merge text[]", "text_2": " SELECT array_concat(t) FROM a GROUP BY n;\n", "label": 1}, {"text_1": "how to avoid column in 'where' clause if parameter is 'NOT PASSED' postgresql", "text_2": "CREATE TABLE employee\n ( name varchar NOT NULL PRIMARY KEY\n , age integer\n , salary integer\n );\n\nINSERT INTO employee ( name , age , salary ) VALUES\n ( 'Alice' , 13 , 3 )\n,( 'Bob' , 11 , 5 )\n,( 'Charlotte' , 15 , 9 )\n,( 'David' , 17 , 10 )\n ;\n", "label": 1}, {"text_1": "Variant use of the GROUP BY clause in TSQL", "text_2": "SELECT O.ID, V.ID\nFROM Originating AS O, ValueSet AS V\nWHERE O.ID = V.OriginatingID\nAND\n(V.OriginatingID, V.DateStamp) IN\n(\n SELECT OriginatingID, Max(DateStamp)\n FROM ValueSet\n GROUP BY OriginatingID\n)\n", "label": 1}, {"text_1": "Best way to compare VARCHAR2 with CHAR", "text_2": "SELECT table1.ID, table2.ID\nFROM table1\nJOIN table2 ON table2.value = RTRIM(table1.value)\nWHERE table1.VALUE = RPAD('123-45', 12)\n", "label": 1}, {"text_1": "How to create DATE datatype in a create query in oracle database?", "text_2": "SQL> select to_date('31/05/14','DD/MM/YY') from dual\n 2 /\n\nTO_DATE('31/05/14','DD/MM/\n--------------------------\nMay 31 2014 12:00 AM\n\nSQL> \n", "label": 1}, {"text_1": "Oracle: Joins two tables to duplicate rows for 2 table", "text_2": "SELECT Table1.*,Table2.* \nFROM Table2,Table1\n", "label": 1}, {"text_1": "MySQL query returning empty set", "text_2": "SELECT *\nFROM a\nLEFT JOIN b ON a.col = c.col // note: joining a->b\nLEFT JOIN c ON a.col = c.col // note: joining a->c\n", "label": 1}, {"text_1": "Can I use a GROUP BY in the first SELECT when CROSS APPLY is used further on?", "text_2": "With \nCTE1 \nas \n( \n select fe.snap_name,fe.snap_accountid, fe.snap_entitlementcategory, fe.snap_entitlementcode, fi.invoicenumber, fi.totalamount \n from \n FilteredInvoice fi \n join FilteredSNAP_entitlement fe on fi.accountid = fe.snap_accountid \n group by fe.snap_name,fe.snap_accountid, fe.snap_entitlementcategory, fe.snap_entitlementcode, fi.invoicenumber, fi.totalamount \n)\nSELECT *\nFROM CTE1\n;\n", "label": 1}, {"text_1": "MySql Character to Date Format conversion returns null", "text_2": "SELECT STR_TO_DATE('26-Nov-2011', '%d-%b-%Y') dte;\n", "label": 1}, {"text_1": "Is there a group limit for Regep_replace in Oracle? (with regexp_replace issue)", "text_2": "SELECT regexp_substr(str, '[^\\[:space:]]+', 1, LEVEL) number_group, LEVEL \nFROM (SELECT regexp_replace('363031393634816909877808647715885542447721', '([0-9]{4})', '\\1 ') str FROM test)\nCONNECT BY LEVEL <= LENGTH(str) - LENGTH(REPLACE(str, ' ')) + 1;\n", "label": 1}, {"text_1": "How do i build a hierarchical database with apache Cassandra", "text_2": "paths { #colum family \n \"/some/path\" { # key\n \"type\" : \"file|directory\" #column, either file or directory, if this is a file or a directory\n \"data\" : \"??\" # if this is a file, the data for the file. you don't want to be storing very large files in cassandra in one column\n }\n}\n", "label": 1}, {"text_1": "SQl query required for the below Scenario", "text_2": "finum part fparinum flevel\n25 CF061W 0 1\n26 FA061w 25 2\n27 hrd20600 25 2\n35 sd1201 25 2\n28 f1024 27 3\n", "label": 1}, {"text_1": "Find differences between table entries in Sqlite3", "text_2": "SELECT last.hostname,\n last.os,\n last.javaversions,\n this.javaversions\nFROM hostdata AS last\nJOIN hostdata AS this ON last.entrydate = 'lastmonth'\n AND this.entrydate = 'thismonth'\n AND last.hostname = this.hostname\nWHERE last.javaversions <> this.javaversions\n", "label": 1}, {"text_1": "How to write trigger to update row in another table?", "text_2": "CREATE TRIGGER dbo.TrgEventsConfigUpdate\nON dbo.EventsConfig\nAFTER UPDATE\nAS \n UPDATE insp\n SET IsRepaired = 1\n FROM dbo.Inspections insp\n INNER JOIN Inserted i ON i.InspectionId = insp.Id\n INNER JOIN Deleted d ON d.Id = i.Id\n WHERE i.[Event] = -1 AND d.[Event] <> -1\n", "label": 1}, {"text_1": "Adding varchar value and datetime in MS SQL", "text_2": "Select Fulltime + CAST(Hour as DATETIME)\n", "label": 1}, {"text_1": "Mysql - Query UPDATE at vnum END in number 7", "text_2": "UPDATE `item_proto_copy2` \nSET `socket_pct`='1' \nWHERE RIGHT(`vnum`, 1) = '7' AND `type`=1\n", "label": 1}, {"text_1": "Nested Query not executing as expected", "text_2": "Select CourseName from Catalog where ID = (Select PrevCoursesID from PreviousCourses where Username = 'admin')\n", "label": 1}, {"text_1": "TSQL Trying to clean up and cast a messy string field to a decimal to perform a SUM function", "text_2": "SELECT CAST(Fare AS MONEY)\nFROM Table1\n", "label": 1}, {"text_1": "how to order by count when joining another table and using 2 fields to count", "text_2": "SELECT \n SUM(CASE \n WHEN venue.idVenue=plans.endingAt \n OR venue.idVenue=plans.startingAt\n THEN 1\n ELSE 0\n END\n ) AS NumberOf,\n venue.idVenue\nFROM venue\nINNER JOIN plans ON venue.idVenue=plans.endingAt \n OR venue.idVenue=plans.startingAt \nWHERE \n venue.idLocation = 3\nGROUP BY\n venue.idVenue\n", "label": 1}, {"text_1": "A database Schema to store a content type and a sub content (ANDROID _ SQLITE :)", "text_2": "_id, company_name\n", "label": 1}, {"text_1": "Passing a variable into an IN clause within a SQL function?", "text_2": "SELECT *\nFROM tblMyTable\nWHERE ID IN ( SELECT Value FROM fnNTextToIntTable(@MyList) )\n", "label": 1}, {"text_1": "Oracle SQL academic issue. Cursors, Loops and Functions", "text_2": "DECLARE\nl_max_date DATE:=TO_DATE(1, 'J');--minimum date that can be entered in oracle database\ncursor carcur IS \nSELECT * FROM i_car;\nCURSOR c1(v_car_registration VARCHAR2) IS \n SELECT * from i_booking a\n WHERE a.registration=v_car_registration;\n BEGIN\n For car_rec in carcur \n LOOP\n l_max_date:=TO_DATE(1, 'J');\n for rec in c1(car_rec.registration)\n loop\n IF rec.date_reserved > l_max_date \n then\n l_max_date:=rec.date_reserved ;\n end IF;\n end loop;\n dbms_output.put_line('car_registration--'||car_rec.registration||'the recent date--'||l_max_date);\n END LOOP;\n end;\n", "label": 1}, {"text_1": "SQL Server : group by week off by 1 day", "text_2": "print dateadd(week, datediff(week, 0, '27 jan 2012 00:00'),-1)\nprint dateadd(week, datediff(week, 0, '28 jan 2012 00:00'),-1)\nprint dateadd(week, datediff(week, 0, '29 jan 2012 00:00'),-1)\nprint dateadd(week, datediff(week, 0, '30 jan 2012 00:00'),-1)\nprint dateadd(week, datediff(week, 0, '31 jan 2012 00:00'),-1)\n", "label": 1}, {"text_1": "How do I extract the elements of xml column?", "text_2": "SELECT colunaxml.query('(/(v | a | b | c)/r)')\n", "label": 1}, {"text_1": "Replacing/Converting 1 to A with Oracle/PLSQL", "text_2": "WITH service_level as (select 1 service_level from dual\nunion all\nselect 2 service_level from dual union all\nselect 3 service_level from dual)\nselect decode(service_level,1,'A',2,'B',3,'C') from service_level\nunion all\nSELECT v_wv_wp_crew.*,\n Substr(v_wv_wp_crew.winter_supp_id, 1, 6) AS CostCenter,\n Substr(v_wv_wp_crew.winter_supp_id, 8, 11) AS Crew_Supp_ID\nFROM v_wv_wp_crew\nWHERE crew_on_road >= '13-FEB-12'\nAND ( operation = 2\n OR operation = 3 );\n", "label": 1}, {"text_1": "LibreOffice Base - Difficulties with SQL query", "text_2": "SELECT X.\"Type\", \n SUM(X.\"Bad\") AS \"Bad\",\n SUM(X.\"Good\") AS \"Good\",\n SUM(X.\"Delicious\") AS \"Delicious\",\n SUM(X.\"Total\") AS \"Total\" \nFROM (SELECT \"Type\",\n CASEWHEN(\"Taste\" = 'Bad',1,0) AS \"Bad\",\n CASEWHEN(\"Taste\" = 'Good',1,0) AS \"Good\",\n CASEWHEN(\"Taste\" = 'Delicious',1,0) AS \"Delicious\",\n 1 AS \"Total\" FROM \"YourTableName\") X \nGROUP BY \"Type\"\n", "label": 1}, {"text_1": "Redis: Wrong data in wrong tables", "text_2": "client1.set(\"someKey\", \"teacherID\", function(err){\n // ...\n});\n\nclient2.set(\"someKey\", \"studentID\", function(err){\n // ...\n});\n", "label": 1}, {"text_1": "Renumbering items in a list with SQL queries?", "text_2": "AND id_list = '$id_pl'\n", "label": 1}, {"text_1": "Multi-user web app - Database design", "text_2": "Task_Status table\n(user_id, task_id, task_date, completed)\n", "label": 1}, {"text_1": "Test Remote Database Access Host", "text_2": "mysql -h your_ddbb_server_ip -u your_user -p your_database_name\n", "label": 1}, {"text_1": "Basic SQL user-defined functions, not working properly", "text_2": "SELECT round(calc_winning_percentage(1000, 29), 3);\n", "label": 1}, {"text_1": "MySQL: query to create a row for every primary key in parent row", "text_2": "insert into foo (user_id, name)\nselect id, 'This fixed string'\nfrom users\n", "label": 1}, {"text_1": "Oracle - order by in subquery of union all", "text_2": "select max('MUHC') as org\n , max(aa) as aa\n , max(messagetime) keep (dense_rank last order by id) as messagetime \n from buffer_messages\ngroup by aa\n", "label": 1}, {"text_1": "sql - getting the count of employee in each grade in a specific format", "text_2": "SELECT @Grades=coalesce(@Grades + ' ','') +Cast(COUNT(t1.EMP_GRADE) as Varchar(2))+' -' From @tab1 t\nLeft Join @tab1 t1 On t1.EMP_GRADE= t.EMP_GRADE And t1.Emp_id= t.Emp_id \nAnd t1.EMP_GRADE<>'A3' -- Replace conditions here\nGroup By t1.EMP_GRADE,t.EMP_GRADE\n", "label": 1}, {"text_1": "SQL query for to get values from 2 combined table at very fast rate", "text_2": "UID NAME\n1 a\n2 b\n", "label": 1}, {"text_1": "Finding the spanning forest (WITH RECURSIVE, PostgreSQL 9.5)", "text_2": "| allidents |\n|--------------------|\n| Lydia,Mary,Nancy |\n| Albert,Bob,Charles |\n| X,Y |\n| Zoe |\n", "label": 1}, {"text_1": "why does this insert statement not work in mysql?", "text_2": "INSERT INTO t1 \nSELECT * FROM t1;\n", "label": 1}, {"text_1": "Combining 2 select statements in the same query on one column", "text_2": "WITH A AS\n(\n select a,b,c,d from tablea;\n),\nB AS \n(\n select d,e,f,g from tableb;\n)\nSELECT a, b, c, A.d, e, f, g \nFROM A\nINNER JOIN B\n ON A.d = B.d\n", "label": 1}, {"text_1": "run sql query from two tables with where clause from one table", "text_2": "SELECT SUM(t1.Payments) \nfrom Table1 t1 \nJOIN Table2 t2 on t1.SSN = t2.SSN and t2.City = 'New York'\n", "label": 1}, {"text_1": "SQL Server 2005 \"FOR XML PATH\" Multiple tags with same name", "text_2": "<person xmlns:xsi=\"uri\">\n <description xsi:type=\"me:age\">32</description>\n <name>Alice</name>\n <description xsi:type=\"me:height\">6 Foot</description>\n</person>\n<person xmlns:xsi=\"uri\">\n <description xsi:type=\"me:age\">24</description>\n <name>Bob</name>\n <description xsi:type=\"me:height\">5 Feet 5 Inches</description>\n</person>\n", "label": 1}, {"text_1": "MySQL: Clone multiple rows in Table A and related rows in Table B", "text_2": "insert into b (a_fk, some_field)\nselect \n (select max(a2.id) from a a2\n where a2.id <> a1.id\n and a2.field1 = a1.field1\n and a2.field2 = a1.field2\n and a2.field3 = a1.field3), \n b.some_field\nfrom b\njoin a a1 on a1.id = b.a_fk\nwhere (criteria)\n", "label": 1}, {"text_1": "Not retrieving any data from a search query", "text_2": "SELECT u FROM Userdetails u WHERE u.username = :username\n", "label": 1}, {"text_1": "Group query and top n records SQL", "text_2": "SELECT pid, min(Price)\nfrom table\nWhere Color='green'\ngroup by pid\n", "label": 1}, {"text_1": "Update with nested subquery (sum) to get restricton on update clause", "text_2": "UPDATE table1 W\n INNER JOIN (\n SELECT B.field6, SUM(A.field2) AS field2 \n FROM table2 A\n INNER JOIN table3 B ON A.id = B.id\n INNER JOIN table4 P ON P.field6 = B.field6\n GROUP BY B.field6\n ) B ON W.field6 = B.field6\nSET W.Field1 = B.Field2\n", "label": 1}, {"text_1": "SQL Query. limit an update per rows if condition is X and Y for the same ID number", "text_2": "update customers c\n set Customer_OverallPoints = (select (case when sum(t.Trans_PointsEarned) > 4 then 4\n else sum(t.Trans_PointsEarned)\n end)\n from tblTrans t\n where t.TransId = c.CustomerId\n );\n", "label": 1}, {"text_1": "Scala ActiveRecord performance issue when used with play framework", "text_2": "User.where(_.email === \"test\")\n .select(u => User(u.email, u.firstName, u.surname))\n .headOption\n", "label": 1}, {"text_1": "MYSQL SELECT statement inside CONCAT function", "text_2": "SELECT\n foo.latest_id,\n CONCAT_WS('<-', a.date, foo.group_concat) AS date_chain\nFROM(\n SELECT \n latest_id, \n GROUP_CONCAT(date ORDER BY date DESC SEPARATOR '<-') AS group_concat\n FROM alias\n WHERE latest_id IS NOT NULL\n GROUP BY latest_id\n) foo\nLEFT JOIN alias a ON\n foo.latest_id = a.id\n", "label": 1}, {"text_1": "How to do Group by operation in SQL?", "text_2": "| FORM_TITLE | COLUMN_1 |\n|----------------------|----------|\n| EXTERNAL - pass/fail | 2 |\n| Test - pass/fail | 0 |\n", "label": 1}, {"text_1": "Append results from one column into results of another column", "text_2": "use test\nDROP TABLE IF EXISTS colors;\nCREATE TABLE colors (color VARCHAR(20),old_color VARCHAR(20));\nINSERT INTO colors VALUES\n('red','dark red '),\n('blue','navy blue'),\n('red','light red'),\n('green','green');\nSELECT * FROM colors;\nSELECT * FROM\n(SELECT DISTINCT color FROM colors\nUNION SELECT DISTINCT old_color color FROM colors) A;\n", "label": 1}, {"text_1": "MySQL Delete From Select", "text_2": "DELETE \n FROM tbl_rate \n WHERE Rate_ID IN\n(\n SELECT Rate_ID\n FROM\n (\n SELECT Rate_ID... --- Your original query goes here\n ) q\n);\n", "label": 1}, {"text_1": "Best way to exclude outdated data from a search in PostgreSQL", "text_2": "INSERT INTO idx_control(tbl, value)\nVALUES ('mytbl', '2013-1-1 0:0');\n", "label": 1}, {"text_1": "Getting a sum for every distinct value in a database", "text_2": "SELECT m.name, count(mp.player_id) as count\nFROM managers_players mp\ninner join managers m\non mp.manager_id = m.id\ninner join players p\non p.id = mp.player_id\ngroup by m.id\norder by count DESC;\n", "label": 1}, {"text_1": "Dynamic Multi Insert with DBI placeholders for many sets of VALUES", "text_2": "my $stmt = 'UPDATE Widget SET foo=?'\nmy @params = $foo;\n\nif ($set_far) {\n $stmt .= ', far=?';\n push @params, $far;\n}\n\n{\n my @where;\n\n if ($check_boo) {\n push @where, 'boo=?';\n push @params, $boo;\n }\n\n if ($check_bar) {\n push @where, 'bar=?';\n push @params, $bar;\n }\n\n $stmt .= ' WHERE ' . join ' AND ', map \"($_)\", @where\n if @where;\n}\n\n$dbh->do($stmt, undef, @params);\n", "label": 1}, {"text_1": "Oracle where condition priority", "text_2": "SELECT COUNT(*) FROM TAB WHERE B = 0 AND IS_NUMBER(A) = 123;\n", "label": 1}, {"text_1": "SQL: group by -1 is doing nothing with grouping by other columns?", "text_2": "group by a, c, (case when a = 'F' then b end)\n", "label": 1}, {"text_1": "delete results of a select with a JOIN", "text_2": "DELETE FROM users \nUSING users AS u LEFT JOIN images AS i ON u.id = i.user_id \nWHERE i.user_id IS NULL;\n", "label": 1}, {"text_1": "Compare dates same column mySQL Laravel", "text_2": "$tasks = DB::table('tasks')\n->select(array(DB::raw(\"TIMESTAMPDIFF(DAY, (SELECT MIN(start) FROM tasks), start) AS offset\"), DB::raw(\"TIMESTAMPDIFF(DAY, start, end) AS length\"), 'user_id', 'name', 'desc','start','end','finished'))\n->where('temp_id', $id)\n->orderBy('start')\n->get();\n", "label": 1}, {"text_1": "JFreeChart using numeric query ORACLE", "text_2": "select intrvl || ' with value '|| count(*) v\nfrom\n(select case \n when time >= 23 then '23 =< TIME'\n when time < 23 and time >= 22.3 then '23 > TIME >= 22,3'\n when time < 22.3 and time >= 21.6 then '22,3 > TIME >= 21,6'\n when time < 21.6 and time >= 20.9 then '21,6 > TIME >= 20,9'\n else '20,9 > TIME'\n end intrvl, time\nfrom t)\ngroup by intrvl\n", "label": 1}, {"text_1": "SQL How to transform ROWS to COLUMNS and COLUMNS TO ROWS? db2", "text_2": "CLASS ADSL VOIP IPTV\n\nIN 1 15 20\nOUT 5 12 14\nINPROGRESS 10 11 17\n", "label": 1}, {"text_1": "right join does not work properly", "text_2": "SELECT *\n FROM (SELECT enid\n , SUM(COMMENT) AS Comments\n FROM entity_epoch\n GROUP BY enid) a\n RIGHT JOIN\n entity B ON A.enid = B.enid\n", "label": 1}, {"text_1": "@@IDENTITY and trigger issue", "text_2": "WITH\n sorted_data AS\n(\n SELECT\n ROW_NUMBER() OVER (ORDER BY field1) AS set_id, -- DO NOT include a PARTITION here\n *\n FROM\n inserted\n)\nINSERT INTO\n myTable (\n id,\n field1,\n field2\n )\nSELECT\n (SELECT ISNULL(MAX(id), 0) FROM myTable WITH(TABLOCKX)) + set_id,\n @p1,\n @p2\nFROM\n sorted_data\n", "label": 1}, {"text_1": "Getting the value of no grouping column", "text_2": "with CTE AS (SELECT col1 , MAX( col3 ) AS mx3 FROM myTable GROUP BY col1)\nSELECT A.*\nFROM MyTable A\nINNER JOIN CTE\n on A.col1 = B.Col1\nand A.col3= cte.mx3\n", "label": 1}, {"text_1": "Split string and iterate for each value in a stored procedure", "text_2": "SQL> set serveroutput on\nSQL> EXEC get_query('COMP1,COMP2,COMP3,COMP4');\nCompany code no.1 = COMP1\nCompany code no.2 = COMP2\nCompany code no.3 = COMP3\nCompany code no.4 = COMP4\n\nPL/SQL procedure successfully completed.\n\nSQL>\n", "label": 1}, {"text_1": "How to do autoincrement based on last value from another table?", "text_2": "INSERT INTO @t (ID,VID,Sname,Rname)\nSelect (select MAX(ID) FROM @t) + id as Id,ROW_NUMBER()OVER(partition by id ORDER BY VID)VID,Sname,Rname from @tt\n", "label": 1}, {"text_1": "How can I compare time in SQL Server?", "text_2": "declare @mytime datetime\nset @mytime = convert(datetime,@myfloat)\nselect @mytime\n-- Shows 1900-01-01 19:47:16.123\n", "label": 1}, {"text_1": "Count columns of joined table", "text_2": "WHERE l.local_date_time >= '2014-12-01'\nAND l.local_date_time < '2014-12-31'\n", "label": 1}, {"text_1": "SQL If A Then B Else C", "text_2": "DECLARE @temp_Customers TABLE (@cust int)\n\nIF (@Customers IS NOT NULL)\nBEGIN\n INSERT INTO @temp_Custoers\n SELECT * FROM dbo.iter$ListToTable(@Customers)\nEND\n", "label": 1}, {"text_1": "Sql Query to count same date entries", "text_2": "SELECT COUNT(1) AS entries, DATE_FORMAT(created_at,'%Y-%c') as month\nFROM wp_frm_items\nWHERE user_id =1\nGROUP BY DATE_FORMAT(created_at,'%Y-%c')\n", "label": 1}, {"text_1": "Improving join query postgresql/postgis", "text_2": "SELECT statistics.*,\n st_x(st_centroid(st_transform(geometry.geom, 2154))) AS x,\n st_y(st_centroid(st_transform(geometry.geom, 2154))) AS y\nFROM statistics\nJOIN geometry ON statistics.id = geometry.id \n", "label": 1}, {"text_1": "How to get number of occurance and the field value from a table", "text_2": "SELECT name, count(*) cnt\nFROM your_table\nGROUP BY name\nHAVING cnt > 1;\n", "label": 1}, {"text_1": "How to implement a cross-table global unique ID in MySQL5 (for comments assignment)", "text_2": "some_id\ncomment_id\n", "label": 1}, {"text_1": "How can I put a condition on a column on creation", "text_2": "ALTER TABLE `movies`\nADD constraint checkyear check (`year`in (2014,2015))\n", "label": 1}, {"text_1": "MySQL ORDER BY keyword match", "text_2": "select *\nfrom test\norder by\n CASE WHEN instr(name, 'tac') = 0 then 1 else 0 end,\n instr(name, 'tac') desc;\n", "label": 1}, {"text_1": "Combine three tables into one, or too many columns?", "text_2": "SELECT link_id, SUM(clicks)\nFROM period_stats\nWHERE period between @dateTime1 AND @dateTime2\nGROUP BY ...\n", "label": 1}, {"text_1": "CakePHP. Where to put scripts that populate database?", "text_2": "class AltersController extends AppController {\n\n public function edit($param1, $param2) {\n // code here to access the model\n $this->Alter->do_stuff();\n }\n\n}\n", "label": 1}, {"text_1": "Detect duplicated registries in Oracle", "text_2": "ColumnA ColumnB\n1 A\n2 A\n3 A\n", "label": 1}, {"text_1": "Working with multiple tables", "text_2": " SELECT o.itemID, \n i.description \n FROM orders o \nLEFT JOIN items i\n ON i.id = o.itemID\n GROUP BY o.itemID\n HAVING COUNT(*) = 1;\n", "label": 1}, {"text_1": "complex join in scope in Rails ActiveRecord", "text_2": "scope :event_stream_for, lambda{ |user\n joins(:events). # or joins(\"LEFT JOIN events ON events.user_id = users.id\").\n where([\"target_type=?\", \"Event\"]) \n}\n", "label": 1}, {"text_1": "Can an INSERT operation result in a deadlock?", "text_2": "begin transaction\ninsert into A values(1)\n", "label": 1}, {"text_1": "Fast way to get the difference of 2 columns in MySQL", "text_2": "SELECT DISTINCT page_title FROM a\n", "label": 1}, {"text_1": "Can I update two identical tables in with one query - MySQL", "text_2": "UPDATE tablea, tableb\nSET tablea.value = 'z', tableb.value = 'z'\nWHERE (tablea.id = tableb.id) AND (tablea.id = '3');\n", "label": 1}, {"text_1": "Separate tables for 1-1 relationship", "text_2": "Internship 1-----0,n Answer 0,n------1 Question\n", "label": 1}, {"text_1": "Access alias in subquery", "text_2": "SELECT INC.OIN\n ,(SELECT COUNT(*)\n FROM Incident \n WHERE CreatedOn BETWEEN '2011/1/1' AND '2011/1/31'\n AND Incident.OwnerIdName = INC.OIN ) as CasesOpened\n ,(SELECT COUNT(*)\n FROM IncidentResolution \n WHERE ActualEnd BETWEEN '2011/1/1' AND '2011/1/31'\n AND Incident.OwnerIdName = INC.OIN ) as CasesClosed\nfrom \n(Select OwnerIdName OIN\n FROM Incident) INc \n", "label": 1}, {"text_1": "INSERTs with sequential GUID key on clustered index not significantly faster", "text_2": "batchNumber NEWSEQUENTIALID()\n-------------------- -----------------\n1 2016\n2 1820\n3 1886\n4 1870\n5 4873\n6 3473\n7 3730\n8 3690\n9 1983\n10 2020\n11 1906\n12 5596\n13 2100\n14 1950\n15 2096\n16 1876\n17 5196\n18 2110\n19 2113\n20 7713\n", "label": 1}, {"text_1": "How can I get a COUNT(col) ... GROUP BY to use an index?", "text_2": "SQL> desc big_table\n Name Null? Type\n ----------------------------------- ------ -------------------\n ID NUMBER\n COL1 NUMBER\n COL2 VARCHAR2(30 CHAR)\n COL3 DATE\n COL4 NUMBER\n", "label": 1}, {"text_1": "Like statment not returning correct values", "text_2": " $keyword = (int) $_GET['term']. \"%\" ;\n", "label": 1}, {"text_1": "Import DayOfWeek Name as Bit in SQL", "text_2": "JobID JobDescription M Tu W Th F Sa Su\n100 Backup 1 0 0 0 0 0 0\n101 Reports 1 0 0 0 0 0 0\n102 Cleaning 0 1 0 0 0 0 0\n", "label": 1}, {"text_1": "SQL Query: How to rearrange the output (Transpose?)", "text_2": "| COL | CENTRAL | EAST | NORTH | SOUTH | WEST |\n-------------------------------------------------\n| M1 | 6233 | 3944 | 6233 | 12440 | 33736 |\n| M2 | 3636 | 14584 | 17743 | 20017 | 30532 |\n| M3 | 2 | 2 | 2 | 7 | 5 |\n| M4 | 6233 | 728 | 6233 | 8057 | 2184 |\n| M5 | 6717 | 953 | 6717 | 9724 | 2056 |\n| M6 | 6825 | 970 | 7369 | 13418 | 1944 |\n| M7 | 6825 | 970 | 7369 | 13418 | 1944 |\n", "label": 1}, {"text_1": "Concatenate fields using connect by prior", "text_2": "with my_tabe as\n(\n select 'M01' as scycle, '1' as sdate from dual union\n select 'M01' as scycle, '2' as sdate from dual union\n select 'M02' as scycle, '1' as sdate from dual\n)\nselect scycle, listagg (sdate, ',') \nwithin group (order by sdate) res\nfrom my_tabe\ngroup by scycle\n/ \n", "label": 1}, {"text_1": "Oracle Spatial Geometry covered by the most", "text_2": "STATE AREA\n------------------------------ ----------\nWyoming 8100.64988\n\n1 row selected.\n", "label": 1}, {"text_1": "Should I split this table into two?", "text_2": "1 bis\n", "label": 1}, {"text_1": "Sql query - getting rid of hard-coded values", "text_2": "CREATE TABLE constants (\n constant_set_id AS INT,\n constant_name AS VARCHAR(16),\n value AS AS VARCHAR(3)\n)\n\nINSERT INTO constants SELECT 1, 'Illustrated', 'I'\nINSERT INTO constants SELECT 1, 'FrontPage', 'FP'\nINSERT INTO constants SELECT 1, 'BackPage', 'BP'\nINSERT INTO constants SELECT 1, 'EDLP', 'ELP'\nINSERT INTO constants SELECT 1, 'SpecialPromo', 'PR'\n\nSELECT\n Name,\n MAX(CASE WHEN constants.constant_name = 'Illustrated' AND CHARINDEX(constants.value, data.S_Data) > 0 THEN 1 ELSE 0 END) AS Illustrated,\n etc, etc\nFROM\n data\nINNER JOIN\n constants\n ON constants.constant_set_id = 1\nGROUP BY\n data.name\n", "label": 1}, {"text_1": "Getting Access to return blank records?", "text_2": "Table: timeworked\nemployeeid fiscalmonth projectcode hoursworked\n1 janfy13 101 16\n2 janfy13 101 11\n1 janfy13 102 8\n\nTable: employees\n[employee id] manager\n1 Manager A\n2 Manager B\n\nTable: kronoscodes\nprojectcode projectname\n101 Project 101\n102 Project 102\n103 Project 103\n", "label": 1}, {"text_1": "Get xmltype in field in Oracle column CLOB", "text_2": "select xmlquery('/*/@type'\n passing xmltype(<clob column>)\n returning content)\nfrom <your table>;\n", "label": 1}, {"text_1": "How to get the latest message in each conversation of a certain user in SQL?", "text_2": "SELECT DISTINCT ON (user_id) *\nFROM (\n SELECT 'out' AS type, id, receiver_id AS user_id, body, created_at\n FROM messages \n WHERE sender_id = 1\n\n UNION ALL\n SELECT 'in' AS type, id, sender_id AS user_id, body, created_at\n FROM messages \n WHERE receiver_id = 1\n ) sub\nORDER BY user_id, created_at DESC;\n", "label": 1}, {"text_1": "Dynamic SQL column value duplicate and difference detection merge query", "text_2": "UPDATE myTable \n INNER JOIN temp \n ON [myTable].ID=temp.ID \nSET myTable.merged= [temp].[merged];\n", "label": 1}, {"text_1": "sql select most recent datetime for each member", "text_2": "SELECT \n cm.FNAME, \n cm.LNAME, \n cl.entry_access_point, \n cl.date_entered, \n cl.res_id, \n dbo.HourMinuteSecond(cl.date_entered, getUTCDate())[Day:Hour:Minute:Second]\n FROM cred.members cm, cred.allocate_log cl\n WHERE cm.member_id = cl.member_id AND\n cl.date_exited IS NULL AND \n cl.evt_id = @eventId AND\n date_entered >= ALL (\n SELECT cl.date_entered\n FROM cred.allocate_log cls\n WHERE cls.member_id = cm.member_id AND cls.evt_id = cl.evt_id)\n ORDER BY cl.date_entered\n", "label": 1}, {"text_1": "how to store data to database in HTML5", "text_2": "Blog Entry:\nMy Safari Browser SQLite Database Hello World Example\n\nAuthor:\nBen Nadel / Kinky Solutions\n\nLink:\n[http://www.bennadel.com/index.cfm?event=blog.view&id=1940][2]\n\nDate Posted:\nJun 11, 2010 at 9:38 AM\n", "label": 1}, {"text_1": "SQL qn:- comparing data in rows", "text_2": "seq number\n--- ------\n 1 1.88\n 2 9.99\n 3 8.76\n 4 9.88\n", "label": 1}, {"text_1": "Getting Ranges from a series of numbers from a table and storing all ranges in a string variable in PLSQL/Oracle Forms", "text_2": "SQL> SET SERVEROUTPUT ON\nSQL> BEGIN\n 2 p_get_list;\n 3 END;\n 4 /\n1-3,5-7,10-12,20-20\n\nPL/SQL procedure successfully completed.\n", "label": 1}, {"text_1": "Order Tables Schema Issue", "text_2": "OrderId (Primary Key)\nProductGroupId \n^(Now here with a ProductGroupId you will get a list of products(Multiple))\nCategoryId (Foreign Key)\nQuantity \nCost \nEmployeeId (Foreign Key)\n", "label": 1}, {"text_1": "Employees and departments database query with Sql ", "text_2": "select a.employeeid \nfrom dbo.EmpDept a, dbo.EmpDept b\nwhere a.employeeid = b.employeeid \n and a.deptid = 1\n and b.deptid = 2;\n", "label": 1}, {"text_1": "Optimize tables MySQL", "text_2": "select ng.*,\n (select kw_kd\n from kw_domain kd\n where kd.domain_kd = ng.id_domain and kd.selected_kd = 1\n order by kd.id_kd desc\n limit 1\n ) as kw_kd\nfrom domain ng;\n", "label": 1}, {"text_1": "Check if field in SQL contains specific alphanumeric format", "text_2": "SELECT * FROM [dbo].[TableName] \nWHERE [FieldName] NOT LIKE '[A-Z][0-9][0-9][0-9][0-9][0-9][0-9]'\n", "label": 1}, {"text_1": "SQL Join Query help", "text_2": ";with TravoltaMovies as\n(\n select\n m.yr\n ,count(*) as [Count]\n from actor as a\n join casting as c\n join movie as m\n on m.movieid = c.movieid\n on c.actorid = a.actorid\n where a.name = 'John Travolta'\n group by m.yr\n)\nselect\n*\nfrom TravoltaMovies as tm\nwhere tm.[Count] = (select max([Count]) from TravoltaMovies)\n", "label": 1}, {"text_1": "Splitting a table into two join tables", "text_2": "insert into phone(phone,type,user_id)\nselect phone,type,user_id from userphone\n", "label": 1}, {"text_1": "SQL optional join and default value", "text_2": "ORDER BY parent.data->>'f27' ASC NULLS LAST\n", "label": 1}, {"text_1": "SAS 9.2 running Oracle query indefinitely", "text_2": "proc sql;\n connect to oracle as db1 (user=user1 pw=pasw1 path=DB1);\n create table test_table as\n select *\n from connection to db1\n ( /* here we're in oracle */\n select * from test.table1 where rownum <20 \n )\n ;\n disconnect from db1;\nquit;\n", "label": 1}, {"text_1": "Is it bad practice to have some tables within a schema and some not?", "text_2": "SELECT columns \nFROM dbo.Table\n", "label": 1}, {"text_1": "Check for two decimal digit number in string", "text_2": "WITH cte AS (\nSELECT Col\nFROM set1\nWHERE Col = '' OR Col LIKE'+%' AND (CAST(REPLACE(REPLACE(Col,'+',''),'-','') AS INT) > 125)\n)\nSELECT * FROM cte\nUNION ALL\nSELECT Col\nFROM set2\nWHERE Col LIKE '%._'\n", "label": 1}, {"text_1": "Stripping a string in SQL Server", "text_2": "SELECT SUBSTRING(your_field, 1, \n LEN(your_field) - CHARINDEX('-', REVERSE(your_field)))\n", "label": 1}, {"text_1": "Help with a query count with multiple conditions?", "text_2": "SELECT COUNT(DISTINCT nid)\nFROM taxonomy_index a\nWHERE NOT EXISTS\n ( SELECT *\n FROM taxonomy_index b\n WHERE b.tid IN (35,45)\n AND NOT EXISTS\n ( SELECT *\n FROM taxonomy_index c\n WHERE c.tid = b.tid\n AND c.nid = a.nid\n )\n ) \n", "label": 1}, {"text_1": "Inline BLOB / BINARY data types in SQL / JDBC", "text_2": "-- SQL actually defines binary literals as such \n-- (as implemented by DB2, Derby, H2, HSQLDB, Ingres, MySQL, SQLite):\n<binary string literal> ::=\n X <quote> [ <space>... ] \n [ { <hexit> [ <space>... ] <hexit> [ <space>... ] }... ] <quote>\n\n<hexit> ::=\n <digit> | A | B | C | D | E | F | a | b | c | d | e | f\n", "label": 1}, {"text_1": "oracle 8 extract strings from string", "text_2": "select GetSurroundedText(mycolumn, '<>', '<>', ' ') from mytable;\n", "label": 1}, {"text_1": "Best database/solution for searching if any of db.item.tags is contained in given string", "text_2": "db.item.ensureIndex({ tags: 1 });\n", "label": 1}, {"text_1": "SQL, how to INSERT INTO table from a specific start number ID", "text_2": "...\nFROM table2\nWHERE ID > 10\n", "label": 1}, {"text_1": "sql query NVL string with apostrophes (')", "text_2": "SELECT * from tableA\nwhere COALESCE(parameter,CASE WHEN status in ('OPEN','CLOSED') then status ELSE '' END) = status\n and delete_flag != 'Y'\n", "label": 1}, {"text_1": "Table design and query to report rolling average of multiple site scores", "text_2": "SELECT MAX(score_key) & '06' AS roll_key, site_code, 'roll06' AS roll_period, MAX(score_date) AS roll_date, ROUND(AVG(audit_score),4) AS roll_score \nFROM (\nSELECT TOP 06 score_key, site_code, score_date, audit_score \nFROM strTable \nWHERE site_code='<<site_code>>' \nAND score_date BETWEEN DATESERIAL(YEAR(DATEADD('m',-6,DATE())),MONTH(DATEADD('m',-6,DATE()))+1,1) AND DATE() \nORDER BY score_date DESC) AS u\nGROUP BY site_code\nHAVING COUNT(audit_score) >= 5 \n", "label": 1}, {"text_1": "what join is caused by \"and\"?", "text_2": "SELECT UserId, RoleID\nFROM (select u.*, row_number() over (order by (select NULL)) as seqnum\n from UserProfile u\n where u.UserName = 'Adam'\n ) u join\n (select w.*, row_number() over (order by (select NULL)) as seqnum\n from webpages_Roles w\n WHERE w.RoleName = 'admin'\n ) w\n on u.seqnum = w.seqnum\n", "label": 1}, {"text_1": "Hive Insert Overwrite Table", "text_2": " INSERT OVERWRITE TABLE tabB SELECT a.Age FROM TableA WHERE a.Age > = 18\n", "label": 1}, {"text_1": "INSERTing a list of values received as input", "text_2": "DECLARE @List dbo.MyList;\n\nINSERT @List VALUES(4),(55),(66),(88),(978);\n\nEXEC dbo.MyProcedure @List = @List;\n", "label": 1}, {"text_1": "Is there possible to use in CASE statement in WHEN more columns?", "text_2": "CASE\nWHEN column_01 = 5 AND column_02 = 'NO' THEN\n value\nELSE\n value_other\n", "label": 1}, {"text_1": "Postgres date subtraction in a query", "text_2": "SELECT day::date\nFROM generate_series(CURRENT_DATE, CURRENT_DATE - interval '30 days', -interval '1 week') day\n", "label": 1}, {"text_1": "How select tablename from user_table", "text_2": "create table t1(n number)\n/\ncreate table t2(n number)\n/\ncreate table t13(n number)\n/\ninsert into t1(n) values(1)\n/\ninsert into t2(n) values(2)\n/\ninsert into t13(n) values(13)\n/\n", "label": 1}, {"text_1": "SQL 'Or' operator. How does it work in the following scenario?", "text_2": "TRUE and UNKNOWN: UNKNOWN\nTRUE or UNKNOWN: TRUE\n\nFALSE and UNKNOWN: FALSE\nFALSE or UNKNOWN: UNKNOWN\n", "label": 1}, {"text_1": "Comparing int value with null returns zero records", "text_2": "Column IS NULL\n", "label": 1}, {"text_1": "SQL: Redundant WHERE clause specifying column is > 0?", "text_2": "SELECT x.region, x.name, x.population \n FROM bbc x \n JOIN (SELECT y.region, \n MAX(y.population) AS max_pop\n FROM bbc y \n GROUP BY y.region) z ON z.region = x.region \n AND z.max_pop = x.population\n", "label": 1}, {"text_1": "Multiple Updates with table comparison in MySQL", "text_2": "UPDATE temporary_table\n INNER JOIN Devices_table\n ON Devices_table.Brand = temporary_table.Brand\n AND Devices_table.SerialNumber = temporary_table.SerialNumber\nSET temporary_table.DeviceID = Devices_table.DeviceID;\n", "label": 1}, {"text_1": "Find top N receipt records that fulfill quantity on hand", "text_2": "SELECT *\nFROM (\n SELECT *,\n SUM(quantityReceived) OVER (ORDER BY dateReceived DESC) psum\n FROM mytable\n ) q\nWHERE onHand > psum - quantityReceived\n", "label": 1}, {"text_1": "MYSQL Update two tables with their values", "text_2": "set @rn := 0;\n\nupdate b\n set field1 = (@rn := @rn + 1)\n where b.field1 is null\n order by b.id;\n", "label": 1}, {"text_1": "Android: SQLite Databasing -- ADDING and CURSORS", "text_2": " Comment newComment = cursorToComment(cursor);\n", "label": 1}, {"text_1": "Arrange duplicates and number the records in a sequence - MySQL", "text_2": "\u2554\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557\n\u2551 ID \u2551 NAME \u2551 ACCOUNT \u2551 DUPLICATESR_NO \u2551\n\u2560\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2563\n\u2551 1 \u2551 ABC \u2551 PQR \u2551 1 \u2551\n\u2551 2 \u2551 DEF \u2551 PQR \u2551 1 \u2551\n\u2551 3 \u2551 ABC \u2551 PQR \u2551 2 \u2551\n\u2551 4 \u2551 XYZ \u2551 ABC \u2551 1 \u2551\n\u2551 5 \u2551 DEF \u2551 PQR \u2551 2 \u2551\n\u2551 6 \u2551 DEF \u2551 ABC \u2551 1 \u2551\n\u255a\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255d\n", "label": 1}, {"text_1": "how to get a percentage depending on a column value?", "text_2": "Date CustomerName percentage\n---------- ------------ ---------------------\n2015-04-29 Sam 50%\n2015-04-30 Sam 0%\n2015-05-01 Sam 0%\n", "label": 1}, {"text_1": "MySQL - Select data from relational tables A, B, C, D, E if record was not found on Table F", "text_2": "LEFT JOIN attends ON attends.lecture_id = users_lectures.lecture_id\n", "label": 1}, {"text_1": "How to select top N rows with the sum of certain column meet some requirement in SQLite?", "text_2": "id value\n---------- ----------\n1 50\n2 150\n3 80\n", "label": 1}, {"text_1": "Player to class database relationship in a game", "text_2": "ClassSkills:\nClassID\nSkillID\n", "label": 1}, {"text_1": "automatically set the value of one variable depending on another variable's value in sql table", "text_2": "UPDATE Order\nSet TotalPrice = NumberOfItems * \n (SELECT Price FROM Food WHERE Food.FoodId = Order.FoodId)\n", "label": 1}, {"text_1": "calculate the difference of the time between In and out", "text_2": "SELECT *, \n ROW_NUMBER() \n OVER ( \n ORDER BY TIME)RN \nINTO #TEMP1 \nFROM TABLE1 \n\nSELECT T.EMP_ID, \n T.TIME, \n T.[IN/OUT], \n CASE WHEN DIFF/3600 <10 THEN '0' ELSE '' END + CAST(DIFF/3600 AS VARCHAR( \n 2)) + \n ':' \n + CASE WHEN DIFF%3600/60 < 10 THEN '0' ELSE '' END + CAST(DIFF%3600/60 AS \n VARCHAR(2)) \n + ':00' minutes \nFROM (SELECT t1.*, \n DATEDIFF(SECOND, t1.TIME, t2.TIME) diff \n FROM #TEMP1 t1 \n LEFT JOIN #TEMP1 t2 \n ON t1.RN = t2.RN - 1)T \n", "label": 1}, {"text_1": "Compute percents from SUM() in the same SELECT sql query", "text_2": "SELECT property_name\n ,round((count(value_a = value_b OR NULL) * 100.0) / count(*), 2) AS pct\nFROM my_obj\nGROUP BY 1;\n", "label": 1}, {"text_1": "Transposing many columns in Hive", "text_2": "select t.customer, p.parameter,\n (case p.parameter\n where 'a' then status_a\n where 'b' then status_b\n . . .\n end) as status\nfrom t cross join\n (select 'a' as parameter union all\n select 'b' union all\n . . .\n ) p;\n", "label": 1}, {"text_1": "How do i design database and get data by Category in android", "text_2": "id title content address\n1 GeneralPark xxxxxxxxxxx 1234road\n2 GreatMuseum wwwwwwwwww 9877road\n", "label": 1}, {"text_1": "How to grant sendmail permission to sql server user?", "text_2": "USE msdb;\n--add our user\nCREATE USER ClarkKent FOR LOGIN ClarkKent; \n--give this user rights to use dbmail\nexec sp_addrolemember 'DatabaseMailUserRole', 'ClarkKent'\n", "label": 1}, {"text_1": "Get SQL xml attribute value using variable", "text_2": "set @Attribute = 'Keyword/Word)[1]'', ''varchar(max)'') select @@version --'\n", "label": 1}, {"text_1": "Optimizing bulk update with two inner joins and calculation", "text_2": "UPDATE offer_lines ol\n SET discounted_price = (p.price - (p.price * o.discount_percentage / 100))\nFROM products p, offers o\nWHERE ol.offer_id = o.id AND\n ol.product_id = p.id AND\n ol.offer_id = 2;\n", "label": 1}, {"text_1": "regular expression for line seperated different lengthy words", "text_2": " select regexp_substr('abc\n def\n ghi', '[[:alpha:]]+', 1 ,level)\n from dual\nconnect by regexp_substr('abc\ndef\nghi', '[[:alpha:]]+', 1 ,level) is not null\n", "label": 1}, {"text_1": "Designing a table with a column need to stored in four different languages", "text_2": "2 en The English text for article 2\n2 dr The French text for article 2\n2 de The German text for article 2\n3 en The English text for article 3\n3 dr The French text for article 3\n3 de The German text for article 3\n3 sw Oh wait, article 3 also needed Swahili text!\n", "label": 1}, {"text_1": "Summarize totals given multiple conditions", "text_2": "with cte_winners as (\n select\n case when winner then m.player1 else m.player2 end as player,\n count(*) as wins_v_opp,\n sum(count(*)) over() - count(*) as loses_v_opp\n from matches as m\n where player1 in (4200, 4201) and player2 in (4200, 4201)\n group by player\n)\nselect *\nfrom players as p\n left outer join cte_winners as cw on cw.player = p.id\nwhere p.id in (4200, 4201)\n", "label": 1}, {"text_1": "Alter All Triggers via T-SQL", "text_2": "EXEC sp_helptext 'TriggerName'\n", "label": 1}, {"text_1": "How can I use SQL Server to determine the number of minutes someone worked in every Hour of the day?", "text_2": "empid hour minutes_worked\n----------- ----------- --------------\n103 10 30\n103 11 60\n103 12 45\n", "label": 1}, {"text_1": "case statement if table present", "text_2": "WHEN EXEC('(select COUNT(*) from SYSSET..chqpass D where D.COMP_DIR =''xyz'' and D.DOCU_DT >''01/01/2015'' and D.AMT = 2556 )') <> 0 \n", "label": 1}, {"text_1": "How do I get all rows that contains a string in a field (SQL)?", "text_2": "select * from articles where tag like '%php,%' or tag like '%,php%'\n", "label": 1}, {"text_1": "Select appointments for a specific date for a specific staff member", "text_2": "SELECT *\nFROM appointment a\nJOIN tattoo t ON t.id = a.tattooID\nJOIN staff s ON s.id = t.staffID\nWHERE a.date = '2015-10-03' AND s.name = 'Bob';\n", "label": 1}, {"text_1": "Trigger: BEFORE INSERT", "text_2": "ALTER TABLE SubActivity\n ADD CONSTRAINT CK_SubActivity_Date CHECK (dbo.ufnIsSubactivityDateValid(ActivityID, SubActivityDate) = 1);\n", "label": 1}, {"text_1": "Sum fields created with case when statement", "text_2": "SELECT m . * , max( m.id ) as max_id, max( submitted_on ) AS max_submitted_on, \n ifnull( max(CASE WHEN mission =1 THEN score END ) , 0 ) AS mission_1_score, \n ifnull( max(CASE WHEN mission =2 THEN score END ) , 0 ) AS mission_2_score,\n (ifnull( max(CASE WHEN mission =1 THEN score END ) , 0 ) +\n ifnull( max(CASE WHEN mission =2 THEN score END ) , 0 )\n ) AS total_score\n", "label": 1}, {"text_1": "setting the column of a table as the result of a calculation between another column in the same table and a column on a different table", "text_2": "CREATE TRIGGER calc_col_trigger\nON table1\n AFTER INSERT,UPDATE\nAS\n\nDECLARE @id int;\nSET @id = (SELECT id FROM inserted)\n-- get a unique identifier from the inserted record\n\nUPDATE table1 \nset calculated_column = <calculation>\nFROM table1 \n JOIN table2 \n ON table1.column1 = table2.column2 \nwhere table1.id = @id;\n", "label": 1}, {"text_1": "PL/SQL Trigger in Oracle errors", "text_2": "CREATE TABLE equipe\n( ID_EQ number(6) not null,\nNOM varchar2(50),\nENREGIS number(6),\nID_CAPITAINE number(6),\nID_ENT number(6),\nCONSTRAINT equipe_pk PRIMARY KEY (ID_EQ)\n);\n", "label": 1}, {"text_1": "Convert a Text to a DateTime in access", "text_2": "Tue Jan 18 10:10:57 2011\n", "label": 1}, {"text_1": "Find value using EXIST keyword", "text_2": "Select DISTINCT dbo.Course.Code\nFrom dbo.Course c\nWhere dbo.Course.CourseYear = 2000 AND \nEXISTS (Select * From dbo.course Where (dbo.course.day = 'Sunday' and dbo.Course.CourseYear = 2000 and dbo.course.Code = c.Code))and \nEXISTS (Select * From dbo.course Where (dbo.course.day = 'Monday' and dbo.Course.CourseYear = 2000 and dbo.course.Code = c.Code))\n", "label": 1}, {"text_1": "How to get substring before first numeric value with TSQL?", "text_2": "| COLUMN_0 |\n|----------|\n| ABC-X |\n| ABC-XY |\n| XYZ-A |\n| OP- |\n| HJK |\n", "label": 1}, {"text_1": "Left join with nearest value without duplicates", "text_2": "if((select 1 from sys.tables where name = 'temp_tableb') is not null) begin drop table temp_tableb end\nselect * into temp_tableb from tableb\n", "label": 1}, {"text_1": "Database script issues with linked server", "text_2": "SELECT * FROM [UVWXYZ].[DB2].[your_schema].[your_table];\n", "label": 1}, {"text_1": "How to find the SQL medians for a grouping", "text_2": "WITH CTE AS\n( SELECT Code,\n Value, \n [half1] = NTILE(2) OVER(PARTITION BY Code ORDER BY Value), \n [half2] = NTILE(2) OVER(PARTITION BY Code ORDER BY Value DESC)\n FROM T\n WHERE Value IS NOT NULL\n)\nSELECT Code,\n (MAX(CASE WHEN Half1 = 1 THEN Value END) + \n MIN(CASE WHEN Half2 = 1 THEN Value END)) / 2.0\nFROM CTE\nGROUP BY Code;\n", "label": 1}, {"text_1": "How to Search Using Multiple Parameters While Including Nulls in Results in SQL-Server", "text_2": "SELECT D.Name\nFROM demographics D\nWHERE (D.City LIKE @cityVar OR @cityVar == '%')\n AND (D.Sex LIKE @sexVar OR @sexVar == '%')\n AND (D.Age LIKE @ageVar OR @ageVar == '%')\n", "label": 1}, {"text_1": "SQL Date Modification", "text_2": " = CURDATE() - DAYOFYEAR(CURDATE()) + 1\n", "label": 1}, {"text_1": "How to combine multiple rows into one with nulled values where row values differ", "text_2": "declare @t table(A int, b varchar(10), c varchar(max), d int)\n\ninsert @t values(10, null, 'text', null)\ninsert @t values(4, 'abc', 'text', null)\ninsert @t values(10, 'def', 'text', null)\n\n\nselect case when max(rna) > 1 then null else min(a) end, \ncase when max(rnb) > 1 then null else min(b) end, \ncase when max(rnc) > 1 then null else min(c) end, \ncase when max(rnd) > 1 then null else min(d) end \n from \n(\nselect rna = rank() over(order by a),\nrnb = rank() over(order by b),\nrnc = rank() over(order by c),\nrnd = rank() over(order by d),\na, b,c,d\n from @t\n ) e\n", "label": 1}, {"text_1": "Multiple WHERE clause inputs to T-SQL stored procedure", "text_2": "IF @ActivityCode IS NOT NULL\nBEGIN\n\n SELECT ...\n FROM ...\n WHERE ActivityCode = @ActivityCode\n\nEND\nELSE\nBEGIN\n\n SELECT ...\n FROM ...\n\nEND\n", "label": 1}, {"text_1": "Outer Join One table with result of Select Query", "text_2": "timestamp phase_1 phase_2 phase_3\n2014-03-04 12:00:00 0 0 0\n2014-03-05 02:00:00 0 0 0\n2014=03-06 01:00:00 0 0 0\n2014-03-07 00:00:00 0 0 0\n", "label": 1}, {"text_1": "For loop in SQL", "text_2": "INSERT INTO t (colname) VALUES ('value1'), ('value2'), ..., ('value70');\n", "label": 1}, {"text_1": "Create stored procedure which returns in one OUT param database version (Oracle)", "text_2": "var mycursor refcursor\nexec getVersion(:mycursor)\nprint mycursor\n", "label": 1}, {"text_1": "if field E contain \"MSD__CMT_Change\" then", "text_2": "select id\n , d\n , decode(d, 'MSD_CHANGE', \n decode(lead(d, 1, d) over(order by id), 'MSD_CMT_CHANGE', \n lead(e, 1, e) over(order by id) , e \n ) \n ,e) e\n from t1\n order by id\n", "label": 1}, {"text_1": "two where conditions on the same column", "text_2": "DELETE FROM demo2 WHERE `id` \n not in ('s1', 's2', 's3')\nAND `id` not like 'c%';\n", "label": 1}, {"text_1": "Auto-increment column: differences in SQL syntax between Oracle and MySQL", "text_2": "INSERT INTO category\nVALUES (seq_category_id.nextval, 'some title');\n", "label": 1}, {"text_1": "Replace REGEXP_SUBSTR in SQL Server", "text_2": "CREATE TABLE table_name ( name VARCHAR(50) );\nINSERT INTO table_name\nSELECT 'AE 344592001H 6186694' UNION ALL\nSELECT 'AE_161038002_6044777' UNION ALL\nSELECT 'BC_VIVS_HNB011A_1WAM' UNION ALL\nSELECT 'BC_56230A_30SP' UNION ALL\nSELECT 'CG_3334902_NETWK_ ACTLM_3334912' UNION ALL\nSELECT 'CG_3334574_HMO1_CORACT_3334575' UNION ALL\nSELECT 'CG_3207160_POSC_1502AH_3207161' UNION ALL\nSELECT 'UH_141015_RHM' UNION ALL\nSELECT 'UH_127757_RIV' UNION ALL\nSELECT 'UH 523725 RIV' UNION ALL\nSELECT 'BS_W0055785_C500_M0005672';\n", "label": 1}, {"text_1": "Simple select query not working?", "text_2": "SELECT * FROM listings WHERE PROVINCE LIKE '%Bakersfield%'\n", "label": 1}, {"text_1": "Conditional aggregate database queries and their performance implications", "text_2": "Select SUM(Case When bitcol = 1 Then 1 Else 0 End) as True_Count\n , SUM(Case When bitcol = 0 Then 1 Else 0 End) as False_Count\n\nFrom Table;\n", "label": 1}, {"text_1": "Extracting specific column values embedded within composite Strings of codes", "text_2": "SELECT SUBSTRING(@s, PATINDEX('%[^0-9][0-9][0-9][0-9][^0-9]%', @s) + 1, 3)\n", "label": 1}, {"text_1": "how would I make this query in microsoft access", "text_2": "SELECT NameTable.ID,[Name],Age,location,[time],[grade],NameTable.[and so on]\nFROM NameTable\nINNER JOIN AdditonalTable\nON NameTable.ID=AdditionalTable.ID\nWHERE [Name] = [Enter name:]\n", "label": 1}, {"text_1": "Multiplicate two fields from different columns - SQL", "text_2": "select p.Product,\np.Game,\np.Quantity * q.Price as calculated_column\nfrom Producttab p\ninner join gametab q on p.Game = q.GameID\nwhere p.Product = 3;\n", "label": 1}, {"text_1": "Referencing a XML database file", "text_2": "<?xml version=\"1.0\" encoding=\"UTF-8\" standalone=\"yes\"?>\n<attributes>\n <attr path=\"/service-calls/companyA/floor[@num='1']/error\" status=\"fixed\" \n cause=\"user clicked malformed attachment\" />\n <attr path=\"/service-calls/companyB/floor[@num='4']/error\" status=\"replaced computer\" \n cause=\"malware worm\" />\n</attributes>\n", "label": 1}, {"text_1": "MySQL Iterate over column names", "text_2": "(SELECT 'Column1' AS `COLUMN_NAME`, COUNT(Column1) AS Count FROM my_table)\nUNION ALL\n(SELECT 'Column2' AS `COLUMN_NAME`, COUNT(Column2) AS Count FROM my_table)\n-- ...\nORDER BY Count DESC\n", "label": 1}, {"text_1": "sql query group", "text_2": "select x.Id\n , CASE counter\n WHEN 1 THEN x.Account_Type\n ELSE 'BOTH'\n END AS Account_Type\nfrom (\n select Id, Count(DISTINCT(acc)) AS counter, MAX(acc) As Account_Type\n from @table\n GROUP BY Id\n) x\n", "label": 1}, {"text_1": "appending row number in sql select statement with row value", "text_2": "| NAME |\n-----------------------\n| 1 ABC, 2 DEF, 3 GHI |\n", "label": 1}, {"text_1": "Spring Batch - Is it suitable for this usecase?", "text_2": "<int-jdbc:stored-proc-inbound-channel-adapter/>\n", "label": 1}, {"text_1": "How to find all connected subgraphs of an undirected graph", "text_2": "+-------+--------------+---------+\n| Ident | GroupMembers | GroupID |\n+-------+--------------+---------+\n| a | a,b,c, | 1 |\n| b | a,b,c, | 1 |\n| c | a,b,c, | 1 |\n+-------+--------------+---------+\n", "label": 1}, {"text_1": "Postgresql substring to extract between angle brackets and quotes", "text_2": "SELECT (regexp_matches(myxml, '<Request[^>]*?\\s+scale=\"\"(\\d+)\"\"'))[1] AS scale FROM mytable;\n", "label": 1}, {"text_1": "postgres equivalent to all_constraints", "text_2": "select tc.constraint_name, rc.delete_rule\nfrom information_schema.table_constraints tc\njoin information_schema.referential_constraints rc using (constraint_name)\nwhere tc.table_name = 'my_table';\n", "label": 1}, {"text_1": "Is it possible to do so without using nested SELECTS?", "text_2": "select *\n from table\n where qty = (select max(qty) from table)\n", "label": 1}, {"text_1": "Reference alias (calculated in SELECT) in WHERE clause", "text_2": "SELECT BalanceDue FROM (\n SELECT (InvoiceTotal - PaymentTotal - CreditTotal) AS BalanceDue\n FROM Invoices\n) AS x\nWHERE BalanceDue > 0;\n", "label": 1}, {"text_1": "Atomic Read and Write with Entity Framework", "text_2": "public class Record\n{\n public int Id { get; set; }\n\n public string State { get; set; }\n\n // Add this property.\n public byte[] Concurrency { get; set; }\n\n public class Configuration : EntityTypeConfiguration<Record>\n {\n public Configuration()\n {\n this.HasKey(t => t.Id);\n\n this.Property(t => t.State)\n .HasMaxLength(50)\n .IsRequired();\n\n // Add this config to tell EF that this\n // property/column should be used for \n // concurrency checking.\n this.Property(t => t.Concurrency)\n .IsRowVersion();\n }\n }\n}\n", "label": 1}, {"text_1": "Database as fileformat", "text_2": "select * from <tablename> order by measurementNum\nselect * from Measurement where measurementSetID=<setID> order by measurementNum\n", "label": 1}, {"text_1": "SQL: Getting items which have a max value in another tables column, but also match some cross table clauses", "text_2": "select Files.*\nfrom\n Files inner join\n (\n select first_value(FolderId)\n over (partition by TypeId, Path order by Version desc) as FolderId\n from Folders\n ) Folders\n on Folders.FolderId = Files.FolderId\n", "label": 1}, {"text_1": "How to vectorize an SQL update query in R", "text_2": "sapply(unname(split(res, time(res))), function(z) paste0(\n \"UPDATE table SET \", \n toString(paste0(names(z), \"=\", z)), \n \" WHERE dt='\", time(z), \"'\"))\n", "label": 1}, {"text_1": "SQL: Is there a possibility to convert numbers (1,2,3,4...) to letters (A,B,C,D...)", "text_2": "WITH Ranks AS (\n SELECT\n Num = Dense_Rank() OVER (ORDER BY T.Sequence),\n T.Col1,\n T.Col2\n FROM\n dbo.YourTable T\n)\nSELECT\n *,\n LetterCode =\n (\n SELECT Char(65 + (R.Num - X.Low) / X.Div % 26)\n FROM\n (\n SELECT 18279, 475254, 17576\n UNION ALL SELECT 703, 18278, 676\n UNION ALL SELECT 27, 702, 26\n UNION ALL SELECT 1, 26, 1\n ) X (Low, High, Div) \n WHERE R.Num >= X.Low\n FOR XML PATH(''), TYPE\n ).value('.[1]', 'varchar(4)')\nFROM Ranks R\nORDER BY R.Num\n;\n", "label": 1}, {"text_1": "SQL where equal to expression", "text_2": "select * \nfrom tableA JOIN \ntableB ON tableA.id=tableB.id \nwhere tableB.someId IN (select id \n from otherTable \n where anotherId = 1)\n", "label": 1}, {"text_1": "LINQ to SQL SOUNDEX - possible?", "text_2": " [Function(Name=\"SoundEx\", IsComposable = true)]\n public string SoundsLike(string input)\n {\n throw new NotImplementedException();\n }\n", "label": 1}, {"text_1": "Oracle Constraints", "text_2": "SQL> insert into owner_mobile values(1,1);\n", "label": 1}, {"text_1": "SQL Query WITH CASE in WHERE clause", "text_2": "ID Name AddressID CompanyID Address IsHQ RowNum\n1 Company 1 1 1 Address 1 1 1\n2 Company 2 5 2 Address 5 1 1\n3 Company 3 7 3 Address 7 0 1\n", "label": 1}, {"text_1": "SELECT TOP COALESCE and bigint", "text_2": "\nDECLARE @limit bigint\nSELECT SQL_VARIANT_PROPERTY(COALESCE(@limit, 9223372036854775807),'BaseType') \nSELECT SQL_VARIANT_PROPERTY(9223372036854775807, 'BaseType') BaseType\n", "label": 1}, {"text_1": "SQL LIKE with special characters", "text_2": "SELECT ASCII('\u00e6' COLLATE Albanian_CI_AI), ASCII('\u00e6' COLLATE Latin1_General_CI_AS) \n", "label": 1}, {"text_1": "Strange delete query, is it written correctly?", "text_2": "delete v1 from vaccine_patient_details as v1\nwhere v1.vacc_pat_guid <> \n (Select top 1 v.vacc_pat_guid \n from vaccine_patient_details as v \n where v.patient_guid = v1.patient_guid and \n v.vaccine_guid = v1.vaccine_guid \n order by v.date_given desc)\n", "label": 1}, {"text_1": "Update values of column so that it forms unique constraint with other column", "text_2": "MERGE INTO a\nUSING (\n SELECT * FROM\n (SELECT\n a.ROWID as ID,\n a1,\n ROW_NUMBER() OVER (PARTITION BY a1 ORDER BY a2) AS RowA\n FROM a) TableA\n INNER JOIN\n (SELECT b2, ROW_NUMBER() OVER (Order by b2) AS RowB\n FROM b) TableB\n ON Tablea.RowA = TableB.RowB) AtoB\nON (a.ROWID = AtoB.ID)\nWHEN MATCHED THEN UPDATE SET a.a2 = AtoB.b2\n", "label": 1}, {"text_1": "Best way to implement a database of lottery numbers?", "text_2": "table lottery\n---------------\nid | total_numbers | country | whatever\n", "label": 1}, {"text_1": "Copy specific data from one table to another in sql", "text_2": "SELECT c.ChallanNo, c.REFERENCENO , c.STEPNO FROM CHALLAN c\nINNER JOIN CURRENTREPORT cr\non c.REFERENCENO = cr.REFERENCENO\nWHERE RECEIVEDDATE IN (SELECT MIN(RECEIVEDDATE)\nFROM CHALLAN cn\nGROUP BY (STEPNO))\n", "label": 1}, {"text_1": "customer expense query", "text_2": "Spent Year\n----------- -----------\n65 2010\n220 2011\n\nSpent Year Month\n----------- ----------- -----------\n60 2010 1\n220 2011 1\n5 2010 12\n\nSpent Year HalfYear\n----------- ----------- --------\n60 2010 First\n220 2011 First\n5 2010 Second\n\nSpent Year Quarter\n----------- ----------- -----------\n60 2010 1\n220 2011 1\n5 2010 4\n\nSpent Year Week\n----------- ----------- -----------\n220 2011 1\n5 2010 52\n60 2010 53\n", "label": 1}, {"text_1": "Trigger not working correctly", "text_2": "UPDATE invoices\n SET Amount = Amount - OLD.amount\nWHERE id = OLD.InvoiceId;\n", "label": 1}, {"text_1": "How to include these requirements in my database design?", "text_2": "Id EmployeeId OrganisationLevelId StartDate EndDate IsActive\n271 110 13 20/09/2011 NULL true\n", "label": 1}, {"text_1": "Find rows based on two coloumns in two tables", "text_2": "SELECT ...\nFROM MyTable JOIN Table2 USING (OID)\nWHERE Table2.PID = 47;\n", "label": 1}, {"text_1": "Filter results if not contained in another column", "text_2": "nodetochild.objects.exclude(childid=nodetochild.objects.values_list('Nodeid', flat=True)).only('id', 'childid')\n", "label": 1}, {"text_1": "performance related to join and where", "text_2": "\nSTEP 1\n The type of query is SELECT.\n\n FROM TABLE\n b\n Nested iteration.\n Table Scan.\n Forward scan.\n Positioning at start of table.\n Using I/O Size 2 Kbytes for data pages.\n With LRU Buffer Replacement Strategy for data pages.\n\n FROM TABLE\n a\n Nested iteration.\n Table Scan.\n Forward scan.\n Positioning at start of table.\n Using I/O Size 2 Kbytes for data pages.\n With LRU Buffer Replacement Strategy for data pages.\n", "label": 1}, {"text_1": "Oracle 11gR2 - View Function Columns Evaluation", "text_2": " Column Projection Information (identified by operation id):\n -----------------------------------------------------------\n ...\n 3 - \"A\".\"ID\"[NUMBER,22], \"A\".\"FUNCTION_COLUMN\"[NUMBER,22]\n 4 - (#keys=1) \"ID\"[NUMBER,22]\n 5 - \"ID\"[NUMBER,22] \n", "label": 1}, {"text_1": "Duplicating group by clause in select", "text_2": "SELECT \n expr.dayhour, \n COUNT(*) as qty,\n AVG(workms+queuems+0.0) as avgTimeMs\nFROM datalog d\nOUTER APPLY (\n SELECT DATEADD(HOUR,datepart(hour,d.inquirydate),cast(cast(d.inquirydate as date) as datetime)) as dayhour\n) AS expr\nWHERE inquirydate>'20140101' \nGROUP BY expr.dayhour;\n", "label": 1}, {"text_1": "Sql - Fetch next value to replace variable value", "text_2": "SELECT * \nINTO [bbb].[table1]\nFROM [aaa].[table1]\nWHERE 1 != 1\n\nSELECT * \nINTO [bbb].[table2]\nFROM [aaa].[table2]\nWHERE 1 != 1\n\nSELECT * \nINTO [bbb].[table3]\nFROM [aaa].[table3]\nWHERE 1 != 1\n", "label": 1}, {"text_1": "SQL to get the one to many mapping (like reverse CASE WHEN THEN END or decode in Oracle)", "text_2": "WHERE (REGION = 1 and IOG in (1,2,14,37,72,101) ) or\n (REGION = 7 and IOG in (11,22,48,77) ) or\n (REGION = 3 and IOG in (7,13,18,24,39) )\n", "label": 1}, {"text_1": "What is the best way to store 2d arrays in Redis?", "text_2": " local maxCount = redis.call(\"GET\", KEYS[1]);\n local ret = {};\n for i = 0, maxCount, 1 do\n table.insert(ret, redis.call(\"LRANGE\", \"entry:\" .. KEYS[1] .. \":\" .. i, 0, -1);\n end\n return ret ;\n", "label": 1}, {"text_1": "How can I change an URL inside a field in MySQL?", "text_2": "cat my_sql_dump.sql | mysql -h hostname -u username -p databasename\n", "label": 1}, {"text_1": "Find rows with duplicate values in a column", "text_2": "SELECT author_id, author_name -- omit the name here, if you just need ids\nFROM (\n SELECT author_id, author_name\n , count(*) OVER (PARTITION BY author_name) AS ct\n FROM author_data\n ) sub\nWHERE ct > 1;\n", "label": 1}, {"text_1": "Replace 44 to 0 in MYSQL?", "text_2": "mysql> SELECT CONCAT('0', SUBSTR(4476384424131, 3));\n+-----------------------------------------+\n| CONCAT('0', SUBSTR(4476384424131, 3)) |\n+-----------------------------------------+\n| 076384424131 |\n+-----------------------------------------+\n", "label": 1}, {"text_1": "Multiple locations and different user privileges for database", "text_2": "CREATE TABLE SomeTable -- with location-sensitive data\n(\n Col1 ... Col N,\n LocationId INT\n);\n", "label": 1}, {"text_1": "Partial SQL insert in haskelldb", "text_2": "insC1 db x = insert db test_tbl1 (c1 <<- (Just x) # c2 << _default)\ninsC2 db x = insert db test_tbl2 (c1 << _default # c2 <<- (Just x))\n", "label": 1}, {"text_1": "How can I get time-based data for each state based on local server time?", "text_2": "state\n id int\n name text\n tz varchar\n", "label": 1}, {"text_1": "MySQL - GROUP_CONCAT() on names of temporary table columns?", "text_2": "<cfscript> \n // Select the data and use prefix to get column list\n qr = qry.execute(sql='SELECT * FROM foo');\n writedump(qr.getPrefix().columnlist);\n\n // Also get the columns from SHOW COLUMNS using valuelist\n colqr = qry.execute(sql='SHOW COLUMNS FROM foo');\n writedump(ValueList(colqr.getResult().field));\n</cfscript>\n", "label": 1}, {"text_1": "how to remove multiple semicolons from this data below using pl/sql", "text_2": "select \nREGEXP_REPLACE(';ghulam.nabi@yahoo.com.pk;NOCBSS@yahoo.com.pk;;;fo.n2@yahoo.com.pk;;mumtaz.akhta@yahoo.com.pk','(;){2,}',';') as s\nfrom dual\n", "label": 1}, {"text_1": "SQL : count records per 5 minute intervals (including zeros)", "text_2": "select bucket_start, bucket_end, count(context_id)\nfrom buckets b\nleft join responses r \n on (r.response_time >= b.bucket_start and \n r.response_time < b.bucket_end)\ngroup by b.bucket_start, b.bucket_end\n", "label": 1}, {"text_1": "dd/MM/yyyy in SQL Server", "text_2": "SELECT ......\nWHERE so.entrydate BETWEEN '20091023' and '20091123 23:59:59'\n", "label": 1}, {"text_1": "How do I add a key to a row based on its \"group\"?", "text_2": "proc sort data=test;\nby id;\nrun;\n", "label": 1}, {"text_1": "Doing UPSERT when row is referenced by a FK", "text_2": "begin atomic\ndeclare addtl_id integer;\nset addtl_id = (select item_addtl_info_id from item where item.item_id = XXX);\nif addtl_id is null\nthen\n set addtl_id = (select addtl_info_id from new table \n (insert into addtl_info\n (addtl_info_text)\n values ('My brand new additional info')\n )\n );\n update item set item.item_addtl_info_id = addtl_id\n where item.item_id = XXX;\n\nelse\n update addtl_info set addtl_info_text = 'My updated additional info'\n where addtl_info.addtl_info_id = addtl_id;\nend if;\nend\n", "label": 1}, {"text_1": "Finding a Specific Date with SQL", "text_2": "SELECT * \nFROM TABLE_1\nWHERE CAL_DATE=DateSerial(2015, 1, 1);\n", "label": 1}, {"text_1": "Getting average column value per day from mySQL", "text_2": "SELECT `datetime`,AVG(`Value`) as AvgValue\nFROM TableName\nGROUP BY `datetime`\n", "label": 1}, {"text_1": "Multiple row's coulmns in one row's multiple columns", "text_2": "select id, patient, row_number() over (partition by id order by patient) as rnk\nfrom your_table\nwhere status='critical';\n", "label": 1}, {"text_1": "Order SQL request when each row contains id of the next one", "text_2": "create temp sequence rownum;\n\nWITH final_route AS\n(\n WITH RECURSIVE route AS\n (\n SELECT BusLineId, BusStopId, NextBusStopId\n FROM BusLine_BusStop\n WHERE IsFirstStop = 1\n UNION ALL\n SELECT b.BusLineId, b.BusStopId, b.NextBusStopId\n FROM BusLine_BusStop b\n INNER JOIN route r\n ON r.BusLineId = b.BusLineId\n AND r.NextBusStopId = b.BusStopId\n WHERE IsFirstStop = 0 or IsFirstStop is null\n )\n SELECT BusLineId, BusStopId, nextval('rownum') as rownum\n FROM route\n)\nSELECT BusLineId, BusStopId\nFROM final_route\nORDER BY BusLineId, rownum;\n", "label": 1}, {"text_1": "Calculate average from JSON column", "text_2": "SELECT t.id, avg(x::text::numeric) AS avg_speed\nFROM tbl t\n , json_array_elements(speed_data->'speed') x\nGROUP BY t.id;\n", "label": 1}, {"text_1": "MYSQL select \"all\" of the values rather than \"any\" of them?", "text_2": "SELECT u1.firstname\nFROM users u1\nINNER JOIN users u2\n ON u1.firstname = u2.firstname\n AND u1.lastname = 'foo'\n AND u2.lastname = 'bar'\nGROUP BY u1.firstname\n", "label": 1}, {"text_1": "SQL View displaying current status of a \"unit\" for every date that something changes with the \"unit\"", "text_2": "eff_date Name Location UnitSize\n----------------------- ---------- ---------- ----------\n2009-01-01 00:00:00.000 Unit 1 LocationA NULL\n2009-02-20 00:00:00.000 Unit 1 LocationA Size1\n2010-01-12 00:00:00.000 Unit 1 LocationA Size2\n2010-03-01 00:00:00.000 Unit 1 LocationB Size2\n2010-01-02 00:00:00.000 Unit 2 NULL Size9\n2010-03-03 00:00:00.000 Unit 2 Locationz Size9\n\n(6 row(s) affected)\n", "label": 1}, {"text_1": "How to define recursive foreign key on 2 columns", "text_2": "alter table Menu add constraint fk_same_parent_app\nforeign key (ParentId, AppId) references Menu(Id, AppId)\n", "label": 1}, {"text_1": "Duplicate data from one DB Table to another DB Table?", "text_2": "INSERT INTO dbo.DOG(list of columns)\n SELECT (list of columns)\n FROM SourceServer.ANIMAL2.dbo.DOG\n", "label": 1}, {"text_1": "Oracle SQL query question", "text_2": "Department Average\n1 15\n2 16\n3 17\n4 18\n", "label": 1}, {"text_1": "How to select 6 top records of each individual records at the database when selecting from all rows", "text_2": "select SUM(cast(PokemonExp as bigint)) as ToplamExp,\n MAX(PokemonLevel) as MaxPokeLevel,\n Count(PokemonId) as TotalPoke,UserId \nfrom (select p.*,\n row_number() over (partition by userid order by pokemanexp desc) as seqnum\n from tblUsersPokemons p\n ) p\nwhere seqnum <= 6\ngroup by UserId;\n", "label": 1}, {"text_1": "How to query for both posts and post upvotes in MySQL?", "text_2": "SELECT E.id\n , E.googleID\n , E.title\n , L.likeCount\n FROM elements E\n LEFT JOIN (\n SELECT elementId\n , COUNT(id) AS likeCount\n FROM likes\n GROUP BY elementId\n ) L ON L.elementId = E.id\n", "label": 1}, {"text_1": "Count the version numbers owned by customers", "text_2": "SELECT\n y.[Cust ID],\n Max(y.Version) AS MaxOfVersion\nFROM YourTable AS y\nGROUP BY y.[Cust ID];\n", "label": 1}, {"text_1": "Getting data from SQL Server database", "text_2": "SqlConnection conn = new SqlConnection(\"connection string goes here\");\nSqlCommand cmd = new SqlCommand(\"SELECT foo FROM ...\", conn);\n\nconn.Open();\nint age = (int)cmd.ExecuteScalar();\nconn.Close();\n", "label": 1}, {"text_1": "Calculate in a table with different cells - SQL Server / T-SQL", "text_2": "Team Sum of the team\n-------------------- ---------------\nBarcelona 45\nChelsea 71\nReal Madrid 46\n", "label": 1}, {"text_1": "Avoid repetition of rows in sqlite3", "text_2": "insert into t(col1, . . ., col14)\n select val1, . . ., val14\n where not exists (select 1 from t where col1 = val1 and col2 = val2 and . . .);\n", "label": 1}, {"text_1": "How can I have NHibernate only generate the SQL without executing it?", "text_2": "public String GetGeneratedSql(System.Linq.IQueryable queryable, ISession session)\n{\n var sessionImp = (ISessionImplementor) session;\n var nhLinqExpression = new NhLinqExpression(queryable.Expression, sessionImp.Factory);\n var translatorFactory = new ASTQueryTranslatorFactory();\n var translators = translatorFactory.CreateQueryTranslators(nhLinqExpression, null, false, sessionImp.EnabledFilters, sessionImp.Factory);\n\n return translators[0].SQLString;\n}\n", "label": 1}, {"text_1": "SQL - Select what is not in second table from assocciative", "text_2": "CREATE TABLE VACCINATION ( VACCINATION_NUMBER, VACCINATION_NAME ) AS\n SELECT 1, 'Vac 1' FROM DUAL\nUNION ALL SELECT 2, 'Vac 2' FROM DUAL\nUNION ALL SELECT 3, 'Vac 3' FROM DUAL\nUNION ALL SELECT 4, 'Vac 4' FROM DUAL;\n\nCREATE TABLE PERSON_VACCINATION ( VACCINATION_NUMBER, PERSON_NUMBER ) AS\n SELECT 1, 1 FROM DUAL\nUNION ALL SELECT 2, 1 FROM DUAL\nUNION ALL SELECT 3, 1 FROM DUAL\nUNION ALL SELECT 4, 1 FROM DUAL\nUNION ALL SELECT 1, 2 FROM DUAL\nUNION ALL SELECT 2, 2 FROM DUAL\nUNION ALL SELECT 3, 2 FROM DUAL;\n\nCREATE TABLE PERSON ( PERSON_NUMBER, PERSON_NAME ) AS\n SELECT 1, 'P1' FROM DUAL\nUNION ALL SELECT 2, 'P2' FROM DUAL\nUNION ALL SELECT 3, 'P3' FROM DUAL;\n", "label": 1}, {"text_1": "Oracle connect by with aggregation", "text_2": "select employee_id, last_name, manager_id, sales, suma, prior suma psuma,\n cast(suma / (prior suma + suma) as number(8, 4)) sumb\n from (\n with t as (SELECT employee_id, last_name, manager_id, sales, LEVEL lvl\n FROM employees\n where employee_id in (101, 108, 109, 110)\n CONNECT BY PRIOR employee_id = manager_id\n start with employee_id = 101)\n select employee_id, last_name, manager_id, sales, lvl,\n sum(sales) over (partition by manager_id) suma from t) t\n connect by prior employee_id = manager_id\n start with employee_id=101\n order siblings by employee_id\n", "label": 1}, {"text_1": "parse CSV file .. problem with managing primary key?", "text_2": "TRIGGER TABLE_OF_CSV_TRG BEFORE INSERT ON TABLE_OF_CSV \nFOR EACH ROW \nBEGIN\n <<COLUMN_SEQUENCES>>\n BEGIN\n IF :NEW.FIELD_ID IS NULL THEN\n SELECT FIELD_ID_SEQ.NEXTVAL INTO :NEW.FIELD_ID FROM DUAL;\n END IF;\n END COLUMN_SEQUENCES;\nEND;\n", "label": 1}, {"text_1": "HAVING clause properties", "text_2": "Answer: COUNT(DISTINCT length) = COUNT(length)\n", "label": 1}, {"text_1": "Filtering MySQL query result set to yield multiple occurences within a specific period of time", "text_2": "... ON cdr_records (originalCalledPartyNumber,dateTimeOrigination)\n", "label": 1}, {"text_1": "sql table row - column conversion", "text_2": "DECLARE @cols AS VARCHAR(MAX),\n @query AS VARCHAR(MAX)\n\nSET @cols = STUFF((SELECT distinct ',[' + Prodname +']'\n FROM Product c\n FOR XML PATH(''), TYPE\n ).value('.', 'VARCHAR(MAX)') \n ,1,1,'')\n\n\nSET @query = \n' SELECT * \n FROM \n (\n SELECT Prodname, \n pcode, \n Biiledamt\n FROM Product\n ) p\n PIVOT \n (\n SUM (Biiledamt)\n FOR Prodname IN (' + @cols + ')\n ) AS pvt\n'\n\n\nEXEC(@query)\n", "label": 1}, {"text_1": "SQL Decode - SELECT & WHERE", "text_2": "SELECT \n firstName,\n lastName,\n decodeMath,\n decodeEng,\nFROM \n (SELECT\n firstName,\n lastName,\n decode(mathMrk, 80, 'A', mathMrk) as decodeMath,\n decode(engMrk, 80, 'A', engMrk) as decodeEng,\n FROM table) tableview\nWHERE\n decodeMath IN ('A','B','C')\nOR decodeEng IN ('A','B');\n", "label": 1}, {"text_1": "Oracle Implicit Conversion of String to date?", "text_2": "WHERE mytable.mydatefield > TO_DATE('23-OCT-2015', 'DD-MON-YYYY')\n", "label": 1}, {"text_1": "List of tables to safely truncate in Magento?", "text_2": "More report tables\nreport_viewed_product_aggregated_daily\nreport_viewed_product_aggregated_monthly\nreport_viewed_product_aggregated_yearly\n", "label": 1}, {"text_1": "SQL query: only one dataset per specific attribut", "text_2": "\u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557\n\u2551 RESTAURANT \u2551 DISTRICT \u2551 LONGITUDE \u2551 LATITUDE \u2551\n\u2560\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2563\n\u2551 perseus \u2551 1 \u2551 80.879 \u2551 -56.00 \u2551\n\u2551 artica \u2551 2 \u2551 67.708 \u2551 -69.89 \u2551\n\u2551 petera \u2551 3 \u2551 89.00 \u2551 -78.89 \u2551\n\u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255d\n", "label": 1}, {"text_1": "SQL FROM_UNIXTIME Not Correct", "text_2": "SELECT @@global.time_zone;\n", "label": 1}, {"text_1": "Add timezone to Oracle 'DATE' result", "text_2": "SELECT TO_CHAR(FROM_TZ(CAST(x AS TIMESTAMP), 'America/New_York'),\n 'YYYY-MM-DD HH24:MI:SSTZHTZM') AS x\n", "label": 1}, {"text_1": "What can be the best model of SQL tables to keep rows of data with 82 columns?", "text_2": "CREATE TABLE deviceData\n ( deviceID INT\n , sessionID INT\n , setID INT\n , a int\n , b int\n , c int\n , d int\n , e int\n , f int\n , g int\n , h float\n , i float\n , j double\n , PRIMARY KEY (deviceID, sessionID, setID)\n ) ;\n", "label": 1}, {"text_1": "Where, either or not both clause SQL", "text_2": "SELECT enrolled.StudentID, student.LastName, student.FirstName, enrolled.courseID, max(enrolled.Quarter) as quarter\nFROM enrolled \nINNER JOIN student ON enrolled.studentID = student.SID\nGROUP BY enrolled.StudentID, student.LastName, student.FirstName, enrolled.courseID\nHAVING count(*) = 1\n", "label": 1}, {"text_1": "How to change the date format in sql queries", "text_2": "SELECT DATE_FORMAT(`date`, '%W @ %l:%i%p %d/%m/%Y') FROM cms_content\n", "label": 1}, {"text_1": "Join a Column with SELECT query in PostgreSQL", "text_2": "SELECT id, cast('ID1' AS varchar) AS \"ID1\" FROM \"supportContacts\"\n", "label": 1}, {"text_1": "Loop over datablock extremely slow (oracle forms, pl/sql)", "text_2": " if :block.number > :gobal.maxvalue then \n :gobal.maxvalue := :block.number;\n end if;\n if :system.last_record = 'TRUE' then\n do something with :global.maxvalue; -- we are on the last record of the query, so do something with the max value\n end if;\n", "label": 1}, {"text_1": "How to count rows by group in a SQL query", "text_2": "SELECT DISTINCT \n customer, \n quote_type,\n COUNT(*) OVER (partition by customer, quote_type order by customer) as type_total,\n COUNT(*) OVER (partition by customer order by customer) as customer_total\nFROM customers\n", "label": 1}, {"text_1": "Make a new user in SQL developer to create a new database", "text_2": "USER0> create user USER1 identified by PASSWORD;\n", "label": 1}, {"text_1": "Oracle trimspool only trailing blanks (not leading blanks)", "text_2": "no indent\n indent\n", "label": 1}, {"text_1": "How do I add Time in SQL?", "text_2": "--this does a few things\n-- 1) converts the time stored as a varchar to the time datatype\n-- 2) adds 90 minutes\n-- 3) converts the time result back to the varchar datatype\n\nselect convert(varchar(10), dateadd(mi, 90, convert(time, '1:30 PM')), 100)\n\n\n--this will show a final result of \"3:00PM\"\n", "label": 1}, {"text_1": "How do we control dynamic ordering by a Field in a table?", "text_2": "+----+--------------+----------+\n| id | question | position |\n+----+--------------+----------+\n| 1 | Question 1 | 1 |\n| 2 | Question 2 | 2 |\n| 3 | Question 3 | 3 |\n+----+--------------+----------+\n", "label": 1}, {"text_1": "How to generate hours between two hours in SQL Server?", "text_2": "DECLARE @timeFrom TIME = '09:00'\nDECLARE @timeTo TIME = '18:00'\n\n;with SourceHrs\nas\n(\n select @timeFrom as [Hours]\n UNION ALL\n SELECT DATEADD(MINUTE, 30, [Hours]) from SourceHrs WHERE [Hours] < @timeTo\n)\nSELECT CONVERT(VARCHAR(5),Hours,108) FROM SourceHrs\n", "label": 1}, {"text_1": "REGEXP_SUBSTR find groups", "text_2": "^(\\$E\\[([A-Z|a-z|0-9|_]+)\\]#)(\\$D\\[(.*)\\]#)?$\n", "label": 1}, {"text_1": "Having partitiion on all distinct values where new value can come", "text_2": "select * from shops partition (shops_unknown);\n", "label": 1}, {"text_1": "Can I update two fields in a single set statement?", "text_2": "SET (column_name, column_name, ...) = (subquery4) \n", "label": 1}, {"text_1": "Rolling calendar pivot in sql server?", "text_2": "Declare @sql nvarchar(max);\n\nSet @sql = '\n SELECT *\n FROM \n (\n SELECT \n t1.customer_code,\n t1.part_number,\n LEFT(DATENAME(month, [formatted_date]),3) as [Month],\n t1.quantity as [quantity] FROM FORECAST_VIEW as t1 \n where\n quantity <> 0 \n and formatted_date >= DATEADD(month, DATEDIFF(month, 0, GETDATE()), 0) \n ) as p\n pivot\n ( sum(quantity)\n for [Month] in ('+@cols+')\n ) as p\n order by customer_code, part_number;\n\nEXEC sp_executesql @sql;\n", "label": 1}, {"text_1": "MySQL SUM by if statement", "text_2": " SELECT \n `u.type`,\n SUM(CASE WHEN `custom_sum` = '' THEN `sum` ELSE `custom_sum` END)\nFROM \n `localhost-test` \nGROUP BY \n `type`\n", "label": 1}, {"text_1": "General rules for simplifying SQL statements", "text_2": "SELECT mi.id, SUM(mo.value) AS running_sum\nFROM mytable mi\nJOIN mytable mo\nON mo.id <= mi.id\nGROUP BY\n mi.id\n", "label": 1}, {"text_1": "Display row values as column header", "text_2": " A \n ------------ \n 12/17/2014 \n ------------ \n FREE |USED \n -------|-------\n 1 |0 \n 1 |0 \n 1 |0 \n", "label": 1}, {"text_1": "SQL - Finding if a single value meets criteria from one column", "text_2": "SELECT EID \n FROM Assignment15\n JOIN Cottage15 ON Assignment15.Cnum = Cottage15.Cnum\n WHERE Category IN (3,4) \n GROUP BY EID\n HAVING COUNT(DISTINCT Category) = 2\n", "label": 1}, {"text_1": "Sorting out in order a Convert to string Datetime in SQL Server and Crystal Report", "text_2": "ToText({datefield},\u201dMMM dd\u201d)\n", "label": 1}, {"text_1": "Copying data from one table to another different column names", "text_2": "BROWARD (broward_ID, name, dob, address) /*source*/\nTEMP (ID, name, address,dob) /*target*/\n", "label": 1}, {"text_1": "rails/activerecord: how to get SQL COUNT and SUM to work with Postgres (at heroku)", "text_2": "Beep.where(:store_id => 123).where(:survey_num => 2).sum(:numeric_score)\n=> 5\n", "label": 1}, {"text_1": "SQL Rows into Columns", "text_2": "PERSON SENIOR MID JUNIOR \n--------------- -------------------- -------------------- --------------------\nCARL JAVA PHP VB.NET \nGARY C# \nGARY VB.NET \nRALPH JAVASCRIPT RUBY \nRALPH PHP \n\n5 rows selected.\n", "label": 1}, {"text_1": "MAX in SELECT statement", "text_2": "INSERT INTO oitc_test (username, xpboost_expiration, level, exp, kills, games) \nSELECT o.username, o.xpboost_expiration, MAX(o.level), MAX(o.exp), os.kills, os.games \nFROM oitc o\nINNER JOIN oitc_sum os\n ON o.username = os.username\nGROUP BY o.username;\n", "label": 1}, {"text_1": "How to select all rows with a unique field, and get all fields in that row in the result set in MySQL?", "text_2": "SELECT (\n SELECT column_a \n FROM foo_table f2 \n WHERE f2.column_b = f1.column_b \n ORDER BY f2.date DESC\n LIMIT 1\n ) column_a,\n f1.column_b\nFROM foo_table f1\nGROUP BY f1.column_b;\n", "label": 1}, {"text_1": "How Non-Clustered affects Clustered Index (PK)", "text_2": "CREATE Table DTL_Event (ID INT not null , TYPE tinyint not null , Severity tinyint not null ,[Message] varchar(1000) not null , ReferenceTypeId int ,ReferenceId int\n\n ,ParentId int , ParentTypeId int ,Created datetime , primary key (ID))\n", "label": 1}, {"text_1": "MySQL Calculate Percentage from one table", "text_2": "select techUser_id, result, count(*) num\nfrom inspection \ngroup by techUser_id, result\norder by num\n", "label": 1}, {"text_1": "Search between min and max in database from $_GET data in codeigniter", "text_2": "<a href=\"<?php echo base_url() ?>Controller/Method/MinYear/MaxYead\"></a>\n<a href=\"<?php echo base_url() ?>welome/diff/2013/2016\"></a>\n", "label": 1}, {"text_1": "SQL: Combinations by Type", "text_2": "select row_number() over (order by combo_id) row_id\n , pvt.*\n from (select combo_id, type, val from Down)\n pivot (max(val) \"SET\"\n for (type) in ('a' A\n ,'b' B\n ,'c' C)) pvt;\n", "label": 1}, {"text_1": "Should order_products table be denormalized?", "text_2": "SELECT *\nFROM product_history\nWHERE product_id = $my_product_id\nAND valid_from <= $my_date\nORDER BY valid_from DESC\nLIMIT 1;\n", "label": 1}, {"text_1": "Inserting and selecting row Id in one statement", "text_2": "insert into tTest \n ( loca\n ,name\n )\nOUTPUT inserted.id\n values (\n @loc\n ,@name\n );\n", "label": 1}, {"text_1": "sql to group sort and concat two columns into one text field", "text_2": "select y, max(sys_connect_by_path(x, ' | ')) trans\nfrom (\nselect y, x, row_number() over (partition by y order by x) cur, row_number() over (partition by y order by x) - 1 prev \nfrom (select col1 y, col2 x from test_table\nunion \nselect col1 y, col3 x from test_table)\n)\nconnect by prior cur = prev and prior y = y\nstart with cur = 1\ngroup by y\n", "label": 1}, {"text_1": "How to join on multiple columns in sql server", "text_2": "SELECT r.IndusName, r.NTLogin\nFROM ResourceLevel r\nINNER JOIN HierarchyLevel h\nON r.NTLogin IN (h.NTLevel1, h.NTLevel2, h.NTLevel3, h.NTLevel4, h.NTLevel5)\n", "label": 1}, {"text_1": "inner join with extra conditions", "text_2": "ID VALUE REF TYPE\n6 200 15 image\n7 400 15 image\n8 250 15 image\n9 500 15 image\n", "label": 1}, {"text_1": "How do you move a partitioned table from one tablespace to another in Oracle 11g?", "text_2": "procedure setDefNdxPart (a_tname in varchar2, a_destTS in varchar2) is\ncursor iCur(vTname varchar2) is\n select index_name\n from user_part_indexes\n where index_name in (select index_name\n from user_indexes where table_name = vTname);\nbegin\nfor iRow in iCur(a_tname) loop\n sqlStmnt := 'alter index '||iRow.index_name||\n ' modify default attributes '||\n ' tablespace '||a_destTS;\nexecute immediate sqlStmnt;\nend loop;\n\nend setDefNdxPart;\n", "label": 1}, {"text_1": "Getting previous column values in a new column", "text_2": "SELECT @a as Prev, @a:=COL1 as Current\nFROM MYTABLE\nORDER BY COL1;\n", "label": 1}, {"text_1": "Help calculating complex sum in hierarchical dataset", "text_2": "-- drop table assembly;\n\ncreate table assembly (\n part_id number, \n parent_part_id number,\n quantity number\n);\n\ninsert into assembly values (2, 1, 2);\ninsert into assembly values (3, 2, 10);\ninsert into assembly values (4, 1, 2);\ninsert into assembly values (5, 4, 1);\ninsert into assembly values (3, 5, 5);\n", "label": 1}, {"text_1": "Efficiently joining/merging based on matching part of a string", "text_2": "pattern = cats('/\\b(',substr(upcase(first_name),1,1),'|',upcase(first_name),').?\\s?',upcase(last_name),'\\b/');\n", "label": 1}, {"text_1": "Escaping ampersands in JSON for Oracle", "text_2": "SQL> SELECT '{\"this is the JSON '|| chr(38)||chr(38) ||' it contains an ampersand\"}' str FROM dual;\n\nSTR\n------------------------------------------------\n{\"this is the JSON && it contains an ampersand\"}\n\nSQL>\n", "label": 1}, {"text_1": "Best Linq2Sql equivalent of IsNull(Max(id))", "text_2": "context.Table\n .Select(row => row.Id)\n .OrderBy(id => id)\n .LastOrDefault()\n", "label": 1}, {"text_1": "How do I calculate the difference over time using one database table?", "text_2": "SELECT \n cur.Date, \n cur.Player, \n prev.Score AS ScoreLastWeek,\n cur.Score AS ScoreNow,\n cur.Score - prev.Score AS Change\nFROM\n Scores cur\n INNER JOIN\n Scores prev\n ON cur.Player = prev.Player\n AND cur.Date = DateAdd(\"d\", 7, prev.Date)\n", "label": 1}, {"text_1": "Parse Dataframe string column into Street, City, State & Zip code", "text_2": " street city state zip country\n1 727 Wright Brothers Ln Las Vegas NV 89119 USA\n", "label": 1}, {"text_1": "Dynamic cursor in inner loop. Multiple cursors", "text_2": "open department_cursor; \nopen person_cursor;\n", "label": 1}, {"text_1": "How to SELECT from a many to many linking-table with three Foreign Keys ??? Pic in desc", "text_2": "SELECT * FROM `st_glowne_others` go\nLEFT JOIN `st_glowne` ON `st_glowne`.name = go.st_glowne\nLEFT JOIN `st_pages` ON `st_pages`.name = go.st_pages\nLEFT JOIN `st_components` ON `st_components`.name = go.st_components\n", "label": 1}, {"text_1": "mysql Why variable is not changing in if", "text_2": "SELECT rn, id, category_id, title\n FROM\n(\n SELECT *, @a := IF(@c = category_id, @a + 1, 1) rn, @c := category_id\n FROM photos CROSS JOIN (SELECT @c := NULL, @a := 0) i\n ORDER BY category_id\n) q\n WHERE rn <= 4;\n", "label": 1}, {"text_1": "Multiple max results", "text_2": "select\n max(t1.date) as date1,\n max(t2.date) as date2,\n t1.id2,\n t1.id2\nfrom `table` t1\nleft join `table` t2 on t2.id1 = t1.id1 and t2.id2 = t1.id2 and t2.date < t1.date\ngroup by id1, id2;\n", "label": 1}, {"text_1": "how to trim trailing spaces from every columns in all tables in PostgreSQL database", "text_2": "select \n 'UPDATE '||quote_ident(c.table_name)||' SET '||c.COLUMN_NAME||'=TRIM('||quote_ident(c.COLUMN_NAME)||') \n WHERE '||quote_ident(c.COLUMN_NAME)||' ILIKE ''% '' ' as script\nfrom (\n select \n table_name,COLUMN_NAME\n from \n INFORMATION_SCHEMA.COLUMNS \n where \n table_name LIKE 'tbl_%' and (data_type='text' or data_type='character varying')\n ) c\n", "label": 1}, {"text_1": "PostgresSQL Subqueries One-To-Many Relationship Search", "text_2": "SELECT e.employee_id, e.first_name, e.last_name\n FROM employee e JOIN employee_skills es\n ON es.employee_id = e.employee_id \n WHERE es.skill_id IN(1, 2)\n GROUP BY e.employee_id, e.first_name, e.last_name\nHAVING COUNT(DISTINCT es.skill_id) = 2\n", "label": 1}, {"text_1": "Oracle VPD column masking, how can I change the default (null) value to XXX", "text_2": "SQL> set role none;\n\nRole set.\n\nSQL> select *\n 2 from tablea;\n\n ID YOUR_SEC_COL\n---------- ------------------------------\n 1\n 2\n\nSQL> select *\n 2 from v_tablea;\n\n ID YOUR_SEC_COL\n---------- ------------------------------\n 1 xxxxxx\n 2 xxxxxx\n\nSQL> set role all;\n\nRole set.\n\nSQL> select *\n 2 from v_tablea;\n\n ID YOUR_SEC_COL\n---------- ------------------------------\n 1 secret text1\n 2 secret text2\n\nSQL> select *\n 2 from tablea;\n\n ID YOUR_SEC_COL\n---------- ------------------------------\n 1 secret text1\n 2 secret text2\n", "label": 1}, {"text_1": "SQL Logic doesn't work", "text_2": "Insert Into #Punch values ('04O')\nInsert into #Punch values ('02P')\nInsert into #Punch values ('00D')\nInsert into #Punch values ('02{')\nInsert into #Punch values ('09}')\n", "label": 1}, {"text_1": "How to decide which fields must be indexed in a database table", "text_2": "CREATE TABLE Business_hours\n( shop_id INT NOT NULL \n, day INT NOT NULL\n--- other columns\n, CONSTRAINT Business_hours_PK\n PRIMARY KEY (shop_id, day, type, start_time, end_time) -- your clustered index\n) \n", "label": 1}, {"text_1": "Unpredictable query performance in Postgresql", "text_2": "with bc as (\nselect aid\nfrom b join c on b.cid = c.bid\nand b.timestamp between ? and ?\nand c.name = ?\n)\nselect a.id\nfrom a\nwhere exists (select 1 from bc)\nand exists (select 1 from bc where a.id = bc.aid)\nlimit 200\n", "label": 1}, {"text_1": "Text replace with regex in SQL Server", "text_2": "<span class=\"myclass_12\"></span>\n<span class=\"myclass_234\"></span>\n<span class=\"myclass_4546\"></span>\n", "label": 1}, {"text_1": "how to compare input with two columns of a table using a single sql statement?", "text_2": "SELECT id FROM admin WHERE Firstname+Lastname = 'testlast'\n", "label": 1}, {"text_1": "how to query for items not in a set of id's - cleaning up data", "text_2": "10476 \n13212 \n", "label": 1}, {"text_1": "MySQL count types per day", "text_2": "select date,\n sum(case when type = 'type_a' then 1 else 0 end) as type_a,\n sum(case when type = 'type_b' then 1 else 0 end) as type_b\nfrom tbl\ngroup by date\n", "label": 1}, {"text_1": "Write the array function from Postgres in Oracle Syntax", "text_2": "SELECT main.*\n , cast( collect(SELECT columnA \n FROM tableB alt \n WHERE alt.columnB = main.columnB)\n as typ_columnA_nt ) AS columnAs_to_tableA\nFROM tableA main\n", "label": 1}, {"text_1": "SQL music playlist database design", "text_2": "id name\n", "label": 1}, {"text_1": "Is the GROUP BY clause in SQL redundant?", "text_2": "SELECT (2 * (x + y)) / z + 1 AS a, MyFunction(x, y) AS b, SUM(z)\nFROM AnotherTable\nGROUP BY a, b\n", "label": 1}, {"text_1": "Is MySQL naturally slow at this kind of query, or do I have it misconfigured?", "text_2": "SELECT\n r.whatever,\n m.whatever,\n -- ...\nFROM\n recipients r\n INNER JOIN messages m ON r.message_id = m.id\n LEFT JOIN message_readers mr ON mr.read_by_id = r.id \n AND mr.message_id = m.id\nWHERE\n r.id = $user_id\n AND mr.read_by_id IS NULL\n", "label": 1}, {"text_1": "Synchronous MySQL query with NodeJS and KnexJS", "text_2": "var getNotes = function(owner) {\n if(owner !== undefined) {\n return knex.table('tblnotes').where('public',1).orWhere({ownerName : owner}).select('noteId');\n }\n else {\n return knex.table('tblnotes').where('public',1).select('noteId');\n }\n}\n", "label": 1}, {"text_1": "SQL sum of 3 columns", "text_2": "SELECT SUM(A) + SUM(B) + SUM(C) as \"subtotal\" FROM alphabet WHERE id IN (1,5,378);\n", "label": 1}, {"text_1": "Select user entries and following entries at the same time with MySQL", "text_2": "SELECT\n photos.*\nFROM\n photos\nWHERE\n photos.uid = $current_uid\nOR\n photos.uid IN (SELECT following FROM follows WHERE follower = $current_uid)\n", "label": 1}, {"text_1": "Is there a `connect by` alternative in MySQL?", "text_2": "delete from paths where descendant in\n(select descendant from paths where ancestor = 6)\n", "label": 1}, {"text_1": "SQL issue: Inserting values into one clumn, same amount of EMPTY values in every other column", "text_2": "COL_A COL_B COL_C\n===== ===== =====\n1 Test 123\n2 NULL NULL \n3 NULL 234\n", "label": 1}, {"text_1": "SQL Server : how to group values by month interval with offset", "text_2": "| INDEX | FROM | TO | 286 |\n----------------------------------------------------------\n| -1 | December, 31 2011 | December, 31 2011 | 10*** |\n| 0 | January, 01 2012 | January, 02 2012 | 35 |\n| 4 | May, 01 2012 | May, 01 2012 | 5 |\n| 5 | June, 01 2012 | June, 01 2012 | 6 |\n", "label": 1}, {"text_1": "SQL query to get customers based on other columns", "text_2": "SELECT customer_id, recipient_id, COUNT(DISTINCT product_id)\nFROM table_a\nGROUP BY customer_id, recipient_id\nHAVING COUNT(DISTINCT product_id)>1\n", "label": 1}, {"text_1": "Finding most recent date based on consecutive dates", "text_2": ";WITH cte AS (\n SELECT EmployeeID, AbsenceDate\n FROM dbo.EmployeeAbsence\n WHERE AbsenceDate = CAST(GETDATE() AS DATE)\n UNION ALL\n SELECT e.EmployeeID, e.AbsenceDate\n FROM cte\n INNER JOIN dbo.EmployeeAbsence e ON e.EmployeeID = cte.EmployeeID \n AND e.AbsenceDate = DATEADD(d,1,cte.AbsenceDate)\n )\nSELECT cte.EmployeeID, MAX(cte.AbsenceDate) \nFROM cte\nGROUP BY cte.EmployeeID\n", "label": 1}, {"text_1": "Composite foreign keys", "text_2": "PersonId int FOREIGN KEY REFERENCES People(PersonId)\n", "label": 1}, {"text_1": "SQL MYSQL Select records excluding rows where any duplicates exist", "text_2": "UPDATE t\nJOIN (\n SELECT bill_of_lading, COUNT(*)\n FROM t\n GROUP BY bill_of_lading\n HAVING COUNT(*) = 1\n) AS selection USING (bill_of_lading)\nSET shipping_rate = 220\n", "label": 1}, {"text_1": "Should I use the inserted table in this trigger to set a default value for a nullable foreign key?", "text_2": "ALTER TABLE [dbo].[Advertisers] ADD CONSTRAINT [DF_Advertisers_Currency_Id] DEFAULT ((101)) FOR [Currency_Id]\nGO\n", "label": 1}, {"text_1": "Doing an atomic update of the first instance in a QuerySet", "text_2": "svn revert --recursive . \n", "label": 1}, {"text_1": "mysql trigger to change user status after a certain amount of points has been reached", "text_2": "CREATE PROCEDURE refreshUserStatuses\n UPDATE users u\n JOIN statues s ON u.userPoints BETWEEN s.minimumPoints AND s.maximumPoints\n SET u.userStatus = s.statusName;\n", "label": 1}, {"text_1": "Get Last message loaded based on message type", "text_2": "RowNumber = ROW_NUMBER() OVER(PARTITION BY Messages.MessageTypeId \n ORDER BY Messages.MessageDate DESC,\n Messages.MessageID DESC)\n", "label": 1}, {"text_1": "vertica check if unique elements for each group from two columns are identical", "text_2": "select t.gid, max(val)\nfrom (select t.gid,\n (case when not exists (select 1 from invertica t2 where t.gid = t2.gid and t.a = t2.b)\n then 0\n when not exists (select 1 from invertica t2 where t.gid = t2.gid and t.b = t2.a)\n then 0\n else 1\n end) as val\n from invertica t\n ) t\ngroup by t.gid;\n", "label": 1}, {"text_1": "SQL query to get customers based on other columns", "text_2": "SELECT customer_id, recipient_id, Product_ID\nFROM table_a\nGROUP BY customer_id, recipient_id, Product_ID\nHAVING COUNT(*)>1;\n", "label": 1}, {"text_1": "SQL: Only Rounded numbers shown, everything else: Useless", "text_2": "select 2.0/7 as Value\n", "label": 1}, {"text_1": "How to Multiply all values within a column with SQL like SUM()", "text_2": "3.1780538303479453\n", "label": 1}, {"text_1": "SQL - Display two counts as columns from same table", "text_2": "select sum(case when column1 = 'x' and column2 = 'y' and column3 = 'z' then 1 else 0\n end) as new_column1,\n sum(case when column1 = 'xx' and column2 = 'yy' and column3 = 'zz' then 1 else 0\n end) as new_column2\nfrom table1 ;\n", "label": 1}, {"text_1": "Set autoincrement on a primary key without recreating the tables", "text_2": "CREATE TABLE dbo.table1\n(\nmycolumn INT PRIMARY KEY,\ncolumn1 CHAR(10),\ncolumn2 CHAR(10)\n)\n\nINSERT INTO dbo.table1\nSELECT TOP (100) ROW_NUMBER() OVER (ORDER BY (SELECT 0))\nFROM master..spt_values v1, master..spt_values v2\n", "label": 1}, {"text_1": "Wufoo's Database Schema - How would you design it?", "text_2": "Filled_form (form_id, column_id, value)\n", "label": 1}, {"text_1": "SQL: Update Multiple Rows With Different values", "text_2": "UPDATE [PO]\nSET TotalCost = (SELECT SUM(Cost) FROM [PO-Lines] WHERE [PO-Lines].POId = [PO].ID)\n", "label": 1}, {"text_1": "Ordering results by the sum of each row", "text_2": "SELECT date, ( IFNULL(Count1,0) + IFNULL(Count2,0) + IFNULL(Count3,0) + IFNULL(Count4,0)) as TOTAL\nFROM TABLE\nGROUP BY data\nORDER BY ( IFNULL(Count1,0) + IFNULL(Count2,0) + IFNULL(Count3,0) + IFNULL(Count4,0)) DESC\nLIMIT 0,100;\n", "label": 1}, {"text_1": "SQLPLUS saving to file", "text_2": "save test.sql create\n", "label": 1}, {"text_1": "Recognize a sort order in a table", "text_2": "group_id order_used_nr_times\n-------- -------------------\n1 3\n2 3\n3 1\n4 1\n5 3\n", "label": 1}, {"text_1": "How to write trigger to update row in another table?", "text_2": "CREATE TRIGGER dbo.TrgEventsConfigInsert\nON dbo.EventsConfig\nAFTER INSERT\nAS \n UPDATE insp\n SET IsRepaired = 1\n FROM dbo.Inspections insp\n INNER JOIN Inserted i ON i.InspectionId = insp.Id\n WHERE i.[Event] = -1\n", "label": 1}, {"text_1": "How to select according to langague in sql?", "text_2": "where char_length(col) = length(col)\n", "label": 1}, {"text_1": "How to decreasing value based on other column in SQL", "text_2": "with cte as (\n Select ID_CLIent, Counter, Length, Amount, row_number() \n over (partition by ID_CLient order by counter) RN\nfrom foo)\n\nSelect ID_Client\n , Counter\n , Length\n , Amount\n , sum(Counter) over (Partition by ID_CLIENT order by ID_Client, RN) as Value1\n , Amount - sum(Counter) over (Partition by ID_CLIENT order by ID_Client, RN) as Value2 \n from cte c\n order by ID_Client\n", "label": 1}, {"text_1": "SQL Server: Best way to concatenate multiple columns?", "text_2": "SELECT ISNULL(CAST(Col1 AS VARCHAR(50)),'')\n + COALESCE(CONVERT(VARCHAR(50),Col2),'')\n", "label": 1}, {"text_1": "Query 2 different items within the same field and the same table", "text_2": "SELECT s.master_id\n , s.eventdate\n , s.code\n , s.term\n , p.surname\n , p.forename\n FROM srch s\n INNER\n JOIN person p \n ON p.entity_id = s.master_id\n WHERE ( s.code LIKE 'C10..%' OR s.code LIKE 'R110%' )\n GROUP\n BY s.master_id\n , s.eventdate\n , s.code\n , s.term\n , p.surname\n , p.forename\nHAVING SUM(CASE WHEN s.code LIKE 'C10..%' THEN 1 ELSE 0 END) > 0\n AND SUM(CASE WHEN s.code LIKE 'R110%' THEN 1 ELSE 0 END) > 0\n ORDER BY s.master_id\n", "label": 1}, {"text_1": "(SQL) Pulling specifc data from a big list where certain dates fall within a specific quarter", "text_2": ",DATEPART(year,lastchgdate) as Year,DATEPART(quarter,lastchgdate) AS Quarter,rank\n", "label": 1}, {"text_1": "Override column value in WHERE clause?", "text_2": "$res = mysql_query(\"SELECT author FROM news WHERE id=\" . $_REQUEST['id'] .\" AND author LIKE ('a%')\");\n", "label": 1}, {"text_1": "Changing a 0 or 1 value to \"Yes\" and \"No\" in APEX report", "text_2": "SELECT my_bool_to_str( cv_lodged ) cv_lodged,\n other_columns\n FROM students\n", "label": 1}, {"text_1": "SQL Join for multiple tables", "text_2": "SELECT C.*\nFROM Class AS C \nWHERE c.ClassID NOT IN(SELECT bc.ClassID\n FROM BatchClass bc\n INNER JOIN Batch b ON B.BatchId = BC.BatchId\n WHERE b.status = 'Enrolled');\n", "label": 1}, {"text_1": "sql double count in join statement", "text_2": "TableAID Value\n1 B1-1\n1 B1-2\n2 B2-1\n2 B2-2\n4 B4-1\n4 B4-2\n", "label": 1}, {"text_1": "Only the latest data show on table", "text_2": "SELECT TOP 1 Data FROM Table ORDER BY Date DESC\n", "label": 1}, {"text_1": "How can I return the total records from my SQL statement", "text_2": "SELECT COUNT(1)\n FROM (\n select year(createdat)\n , count(id)\n from memberevents\n where memberid=22\n group by year(createdat)\n ) a\n", "label": 1}, {"text_1": "Conversion failed when converting from a character string to uniqueidentifier", "text_2": " DECLARE @vPortalUID NVARCHAR(36)\n SET @vPortalUID='2A66057D-F4E5-4E2B-B2F1-38C51A96D385'\n DECLARE @nPortalUID AS UNIQUEIDENTIFIER\n SET @nPortalUID = CAST(@vPortalUID AS UNIQUEIDENTIFIER)\n PRINT @nPortalUID\n", "label": 1}, {"text_1": "Database Design for Orders and SubOrders", "text_2": "--using class table inheritance. postgresql syntax (sorry, but it's less verbose).\n\n-- a product is an abstract thing you can sell, ex good, combo, service, warranty.\ncreate table products (\n product_id int primary key\n);\n\ncreate table goods (\n product_id int primary key references products(product_id),\n name text not null unique\n ...other good columns\n); \n\ncreate table bundles (\n product_id int primary key references products(product_id),\n name text not null unique\n ...other bundle columns\n);\n\n--map products to bundles:\ncreate table bundle_products (\n bundle_id int references bundles(product_id),\n product_id int references products(product_id),\n\n primary key (bundle_id, product_id)\n);\n", "label": 1}, {"text_1": "MSSQL stored procedure select all columns", "text_2": "CREATE PROCEDURE GET_FICONFIG\n @IssuerKey INT,\n @KeyName NVARCHAR(100)\nAS\ndeclare @s varchar(500) = 'SELECT ' + QUOTENAME(@KeyName) + ' FROM dbo.FiConfig WITH (NOLOCK) WHERE IssuerKey = ' + CAST(@IssuerKey as VARCHAR(10))\nexec(@s)\n", "label": 1}, {"text_1": "Speeding up this SQL query", "text_2": "SELECT Delivery, \n COUNT(*) AS Total, \n COUNT(CASE WHEN Status = 2 THEN 1 END) AS Delivered \nFROM DeliveryItems \nGROUP BY Delivery\n", "label": 1}, {"text_1": "Oracle REGEXP_LIKE to perform (case,space,special..etc)-insensitive column match with a search string", "text_2": "| VAL |\n|----------------|\n| Se ArCh TeRm |\n| S$EARCH ^term^ |\n", "label": 1}, {"text_1": "\"Reference counting\" trigger in PostgreSQL", "text_2": "DELETE FROM refe r\nWHERE NOT EXISTS (SELECT 1 FROM foo WHERE refe = r.id)\nAND NOT EXISTS (SELECT 1 FROM bar WHERE refe = r.id);\n", "label": 1}, {"text_1": "Randomize Primary Keys Based on Existing Values", "text_2": "CREATE TABLE temp_old\n( ai INT NOT NULL AUTO_INCREMENT\n, id INT NOT NULL\n, PRIMARY KEY (ai)\n, INDEX old_idx (id, ai)\n) ENGINE = InnoDB ;\n\nCREATE TABLE temp_new\n( ai INT NOT NULL AUTO_INCREMENT\n, id INT NOT NULL\n, PRIMARY KEY (ai)\n, INDEX new_idx (id, ai)\n) ENGINE = InnoDB ;\n", "label": 1}, {"text_1": "Count number of concurrencies for each element of a list", "text_2": "CREATE GLOBAL TEMPORARY TABLE tmp (field NUMBER);\n\nINSERT INTO tmp (...);\n\nSELECT tmp.field, COUNT(t.field)\n FROM table t\n RIGHT JOIN tmp ON t.field = tmp.field\n GROUP BY tmp.field;\n", "label": 1}, {"text_1": "What is the best way to join between two table which have coma seperated columns", "text_2": "declare @Rows int = 1\ndeclare @Tag nvarchar(1024)\ndeclare @Id int = 0\n\nWHILE @Rows>0\nBEGIN\n Select Top 1 @Tag=Tag,@Id=Id from #dt where Id>@Id\n set @Rows =@@RowCount\n if @Rows>0\n begin\n insert into #Tags(Tag) SELECT Data FROM dbo.StringToTable(@Tag, ',')\n end\nEND\n", "label": 1}, {"text_1": "Combine strings from multiple rows and join onto another table", "text_2": "SELECT Id, FileName,\nSTUFF((SELECT ','+Name FROM @A a WHERE A.Id = B.Id FOR XML PATH('')), 1, 1, '') Name\nFROM @B b\n", "label": 1}, {"text_1": "Create a SQL query to retrieve the most recent record by user", "text_2": "SELECT \n USER_NAME, \n max(ACTIVITY_DATE_TIME) as ACTIVITY_DATE_TIME\nFROM \n TRANSACTION_HISTORY \nWHERE \n USER_NAME in ('a_user','b_user','c_user','d_user','e_user')\nGROUP BY user_name\n", "label": 1}, {"text_1": "SQL add STUFF function into this query", "text_2": "SELECT OrderID\n, Codes\nFROM tblLines r1\nCROSS APPLY ( \n SELECT\n STUFF((SELECT ',' + CAST(Code AS NVARCHAR)\n FROM tblLines r2\n WHERE r2.OrderID = r1.OrderID\n GROUP BY OrderID, Code\n ORDER BY Code\n FOR XML PATH (''), TYPE)\n .value('.', 'varchar(max)')\n , 1, 1, '')) OrderLines(Codes)\nGROUP BY OrderID, OrderList\n", "label": 1}, {"text_1": "SQL Server - Group by few columns and put in one row in appropriate columns", "text_2": "select id, ostart, oend, \n Point1, Time1, Point2, Time2, \n Point3, Time3, Point4, Time4, Point5, Time5\nfrom\n(\n select id, ostart, oend, col+cast(seq as varchar(10)) col,\n value\n from\n (\n select id, [end], time, ostart, oend,\n cast(row_number() over(partition by id, ostart \n order by start) as varchar(10)) seq\n from yourtable\n ) src\n cross apply\n (\n select 'Time', convert(varchar(10), time, 120) union all\n select 'Point', cast([end] as varchar(10))\n ) c (col, value)\n) d\npivot\n(\n max(value)\n for col in (Point1, Time1, Point2, Time2, \n Point3, Time3, Point4, Time4, Point5, Time5)\n) piv;\n", "label": 1}, {"text_1": "Recursive SQL, have the last three values increased?", "text_2": "SELECT MIN(t1.`Value` > t2.`Value`) AS increasing\n FROM tbl AS t1\n JOIN tbl AS t2\n ON t1.`DateTime` = t2.`DateTime` + INTERVAL 1 month\n WHERE t1.`DateTime` > NOW() - INTERVAL 3 month;\n", "label": 1}, {"text_1": "Update mysql big table hang too time", "text_2": "select im.* from images im inner join (\n select photo_id from images order by hotel_id, idImageType, photo_id limit 20000000,10\n) k \non im.photo_id=k.photo_id \norder by im.hotel_id, im.idImageType, im.photo_id;\n", "label": 1}, {"text_1": "select into issue of SQL Server", "text_2": "INSERT INTO [TargetDB].[dbo].[Orders]\nSELECT TOP 100 *\nFROM [SourceDB].[dbo].[Orders] S\nWHERE NOT EXISTS\n(\n SELECT 1 FROM [TargetDB].[dbo].[Orders] T1\n WHERE T1.OrderId = S.orderID\n)\n", "label": 1}, {"text_1": "Is it possible to specify condition in Count()?", "text_2": "select count(case Position when 'Manager' then 1 else null end)\nfrom ...\n", "label": 1}, {"text_1": "Populate a combobox with tables of a database in VB", "text_2": "using cnn = new MySqlConnection(...)\n cnn.Open()\n Dim dt = cnn.GetSchema(\"TABLES\")\n\n ComboBox1.DataSource = dt\n ComboBox1.DisplayMember = \"table_name\"\n ComboBox1.ValueMember = \"table_name\"\nEnd Using\n", "label": 1}, {"text_1": "Diffrence between these select queries", "text_2": "SELECT Users.Id,\n Users.FirstName,\n Users.LastName,\n UserAddresses.City,\n UserAddresses.AddressLine,\n UserAddresses.PostalCode,\n UserSettings.Language,\n UserSettings.IsCookieEnabled,\n LoginHistory.LastEnterDate\nFROM Users\nINNER JOIN UserAddresses\nON UserAddresses.UserId = Users.Id\nINNER JOIN UserSettings\nON UserSettings .UserId = Users.Id\nINNER JOIN LoginHistory\nON LoginHistory .UserId = Users.Id\n", "label": 1}, {"text_1": "Queue algorithm to retrieve not shown", "text_2": "select top 1 Word\nfrom Words \norder by newid()\n", "label": 1}, {"text_1": "friendship database schema ideas comparison", "text_2": "create table Friends(\n Friend1 int not null,\n Friend2 int not null,\n constraint Friends1_FK foreign key( Friend1 ) references Clients( ID ),\n constraint Friends2_FK foreign key( Friend2 ) references Clients( ID ),\n constraint Friends_PK primary key( Friend1, Friend2 )\n);\n", "label": 1}, {"text_1": "MySQL - Join inside a correlated subquery", "text_2": "SELECT INET_NTOA(MIN(INET_ATON(UserMap.VIP))) AS VIP,\n NewUsers.User, \n NewUsers.Domain\nFROM NewUsers\n CROSS JOIN UserMap\n LEFT JOIN\n ( SELECT u.Domain, m.VIP\n FROM NewUsers u\n INNER JOIN UserMap m\n ON u.User = m.User\n ) ex\n ON ex.Domain = NewUsers.Domain\n AND ex.VIP = UserMap.VIP\nWHERE ex.Domain IS NULL\nGROUP BY NewUsers.User, NewUsers.Domain\nORDER BY VIP ASC; \n", "label": 1}, {"text_1": "Need multiple count of id in single row from a column of a table using different criteria", "text_2": "SELECT\nSUM(IF(status = 'Available', 1, 0)) AS `Available`,\nSUM(IF(status = 'Not Available', 1, 0)) AS `Not_Available`,\ncityName\nFROM\ntable_name\nWHERE cityName = 'Ahmeadabad'\n", "label": 1}, {"text_1": "what is the statement for \"where\" condtion in pl/sql", "text_2": "select * from clients;\n\n ID NAME \n---------- ----------\n 1 Joe \n 2 Anna \n\nselect * from clients@site2;\n\n ID NAME \n---------- ----------\n 1 Joe \n 3 Max \n", "label": 1}, {"text_1": "SQL Merging two or three tables with COUNT() and LEFT JOIN", "text_2": "SELECT \n users.id,\n users.username,\n users.avatar_location,\n users.datetime,\n users.last_action,\n users.last_action_description,\n users.is_banned,\n COUNT(questions.id) as number_of_questions #count each question\nFROM \n `users` \nLEFT JOIN \n `questions` \nON \n users.id = questions.questioner_id\nGROUP BY\n users.id # you need to have unique user id in each row\nORDER BY\n questions.datetime # sort by question date right? \n DESC \n", "label": 1}, {"text_1": "add to existing value in mysql column using CONCAT function?", "text_2": "UPDATE ptb_messages \nSET subject = CONCAT( subject, 'newvalue')\nWHERE ... \n", "label": 1}, {"text_1": "Insert into multiple tables", "text_2": "DECLARE @T TABLE (\n CategorySet_Id int\n ,AgeDivision_Id int\n ,Gender int\n ,BeltColor int);\n", "label": 1}, {"text_1": "How do i structure a query where I am INSERTing into a new table and need to increment a column every time?", "text_2": "Category ID ParentID Sort\n2005 3637 1\n2008 3637 2\n2009 3637 3\n", "label": 1}, {"text_1": "How to specify input format in SQL create table?", "text_2": "insert into test values ('testi'); -- this will fail\ninsert into test values ('12345'); -- this will fail\n", "label": 1}, {"text_1": "poor Hibernate select performance comparing to running directly - how debug?", "text_2": "select * from sales_unit s left join sales_unit_relation r on (s.sales_unit_id = r.sales_unit_child_id) where r.sales_unit_child_id is null\n", "label": 1}, {"text_1": "SQL Server : Sum over a field changed after adding a LEFT JOIN", "text_2": "SELECT \n ISNULL(v2.pId, v1.pId) AS pId,\n ISNULL(v2.pName, v1.pName) AS pName,\n (SELECT COUNT(*) FROM view1 vi WHERE vi.kind = 1 AND vi.pId = ISNULL(v2.pId, v1.pId)) AS countKind1,\n SUM(v2.price) AS sumPrice\nFROM \n view1 v1\n LEFT OUTER JOIN\n view2 v2 ON v1.id = v2.id\nGROUP BY\n ISNULL(v2.pId, v1.pId),\n ISNULL(v2.pName, v1.pName)\n", "label": 1}, {"text_1": "Write a PL/pgSQL function so that FOUND is not set when \"nothing\" is found?", "text_2": "IF id_exists() IS NOT NULL THEN\n -- Do something\nEND IF;\n", "label": 1}, {"text_1": "Interview : update table values using select statement", "text_2": "Update TableName Set Gender=Case when Gender='M' Then 'F' Else 'M' end\n", "label": 1}, {"text_1": "Multiple grouping by", "text_2": "WITH CTE_TOP5 AS \n(\n SELECT TOP 5 BusinessName, Date_Created, ROW_NUMBER() OVER (ORDER BY DATE_CREATED DESC) RN FROM dbo.YourTable\n ORDER BY Date_Created DESC \n)\n, CTE_REST AS \n(\n SELECT BusinessName, Date_Created FROM dbo.YourTable\n EXCEPT \n SELECT BusinessName, Date_Created FROM CTE_TOP5\n)\n,CTE_RESTRANDOM AS\n(\n SELECT BusinessName, Date_Created, ROW_NUMBER() OVER (ORDER BY NEWID()) + 5 RN FROM CTE_REST\n)\nSELECT * FROM CTE_TOP5\nUNION ALL\nSELECT * FROM CTE_RESTRANDOM\nORDER BY RN\n", "label": 1}, {"text_1": "How to conditionally adjust date on subsequent rows", "text_2": "LEFT JOIN T1 AS T1Next ON T1.propertyid = T1Next.propertyid \n AND T1.isprimary = 0\n AND T1Next.isprimary = 0\n AND T1.PropNo = T1Next.PropNo - 1\n AND T1Next.PropNo % 2 = 0\n", "label": 1}, {"text_1": "Many to one relation, select only rows which ancestor met all criteria", "text_2": "with cte as (\n select\n qa.questionare_id as quest, qa.id as accepted,\n sum(case when qa.accept_id is not null and qa.impact_id is not null then 1 else 0 end) over(partition by qa.questionare_id) as cnt1,\n count(*) over(partition by qa.questionare_id) as cnt2 \n from questionareacceptance as qa\n)\nselect quest, accepted\nfrom cte\nwhere cnt1 = cnt2;\n", "label": 1}, {"text_1": "I need help with a SQL query. Fetching an entry, it's most recent revision and it's fields", "text_2": "Select ...\nFrom section_entry_revisions As SER\n Join section_revision_fields As SRF\n On SRF.section_id = SER.section_id\n And SRF.section_revision_id = SER.section_revision_id\n ...\nWhere SER.sectionId = @SectionId\n And SER.section_entry_id = @SectionEntryId\n And SER.id = (\n Select Max(SER1.id)\n From section_entry_revisions As SER1\n Where SER1.section_Id = SER.section_Id\n And SER1.section_entry_id = SER.section_entry_id \n )\n", "label": 1}, {"text_1": "Composite clustered PK behavior vs Nonclustered PK + nonunique clustered index", "text_2": "SELECT cnt\nFROM v_appCount\nWHERE appId = @myAppId\n", "label": 1}, {"text_1": "Order rows according to which condition is met?", "text_2": "ORDER BY\n IIF( name LIKE \"I%\", 0,\n IIF( name LIKE \"%ster%\", 1,\n IIF( name LIKE \"%lo%\", 2,\n 3\n ) ) ) ASC\n", "label": 1}, {"text_1": "SQL Access 2010 Calculate Stock Daily Gap", "text_2": "select t.*, open_price - lastclose as gap\nfrom (select t.ticker, t.date, t.open_price, t.close_price,\n (select t.close_price from t t2 where t2.ticker = t.ticker and t2.date < t.date order by DATE desc limit 1\n ) as lastclose\n from t\n ) t\n", "label": 1}, {"text_1": "SQL query performance statistics messages returned multiple times", "text_2": "SQL Server Execution Times:\n CPU time = 0 ms, elapsed time = 264 ms..\n", "label": 1}, {"text_1": "Get list of what special characters and how many times in oracle column", "text_2": "SELECT t.id,\n --MAX( t.value ) AS value,\n CAST( c.COLUMN_VALUE AS CHAR(1 CHAR) ) AS character,\n COUNT(1) AS frequency\nFROM table_name t,\n TABLE(\n CAST(\n MULTISET(\n SELECT SUBSTR( t.value, LEVEL, 1 )\n FROM DUAL\n WHERE REGEXP_LIKE( SUBSTR( t.value, LEVEL, 1 ), '[^a-zA-Z0-9]' )\n CONNECT BY LEVEL <= LENGTH( t.value )\n ) AS CHAR_LIST\n )\n ) c\nGROUP BY t.id, c.COLUMN_VALUE\nORDER BY id, character;\n", "label": 1}, {"text_1": "Aggregate Function/Group-By Query Performance", "text_2": "alter table dbo.QP_HISTORY\n add constraint pk_qphist primary key (Symbol, dSeqKey)\n , add constraint fk1_qphist foreign key (dSeqKey)\n references dbo.DATE_MASTER(dSeqKey) ;\n", "label": 1}, {"text_1": "How to update a pattern in a column in SQL Server", "text_2": "UPDATE A\n SET Text = SUBSTRING(Text, 1, LEN(Text)-15)\n WHERE Text LIKE '%,,,,,,,,,,,,,,,'\n", "label": 1}, {"text_1": "SQLite previous select value in where clause", "text_2": "CREATE TEMP TABLE markers_distance (distance);\nCREATE UNIQUE INDEX markers_idx ON markers_distance (distance);\nINSERT OR IGNORE INTO markers_distance \n SELECT distance FROM feature WHERE is_marker;\n", "label": 1}, {"text_1": "MS Access / SQL Joining Large Data Sets", "text_2": "Select ColA, ColB, ColC, ColD, SourceA, SourceB from SUMMARY where ((SourceA <> SourceB) or (SourceA is null) or (SourceB is null))\n", "label": 1}, {"text_1": "Mysql event not running after database migration", "text_2": "show variables like 'event_scheduler';\n", "label": 1}, {"text_1": "Insert into a many-to-many table based on current row information", "text_2": "SELECT DISTINCT p_id\nFROM myTable\nWHERE m_id = 2;\n", "label": 1}, {"text_1": "Re-number MySQL field", "text_2": "SET @n := 0, @l := NULL;\n\nUPDATE class c JOIN\n(\n SELECT classid, lane, @n := IF(@l = lane, @n, @n + 1) new_lane, @l := lane\n FROM class\n ORDER BY classid, lane\n) t \n ON c.classid = t.classid\n SET c.lane = t.new_lane;\n", "label": 1}, {"text_1": "Check value in every month", "text_2": "create view sum_data_v\nas\nselect month(dDay) as mnth, sum(data) as sum_data\nfrom [table]\ngroup by month(dDay)\n;\n", "label": 1}, {"text_1": "setting a valid value for textbox", "text_2": "Dim upper as string = (UCase(txtMI.text))\n", "label": 1}, {"text_1": "How can I find all the tables of db that contains primary key or particular column of a single table in Postgresql", "text_2": "SELECT table_name\nFROM information_schema.columns\nWHERE table_schema = 'public'\n AND column_name = 'YOUR_COLUMN_NAME'\n", "label": 1}, {"text_1": "SQL Comparing Two Columns in same table and update in another table", "text_2": "SELECT MIN(Col1) AS Col, MAX(Col2) AS New FROM \n(\n SELECT SUM(SeqIDStart) OVER (ORDER BY Col1 ASC) AS SeqID, * \n FROM (\n SELECT\n CASE WHEN LAG(B.Col1, 0, NULL) OVER (ORDER BY a.Col1 ASC) IS NULL THEN 1 ELSE 0 END AS SeqIDStart,\n a.col1 AS Col1, a.Col2 AS Col2, B.Col1 AS adjsCol\n FROM\n #t a\n LEFT JOIN\n #t b\n ON a.col1 = b.col2\n WHERE a.Col1 IS NOT NULL\n ) a\n) b\nGROUP BY SeqID\n", "label": 1}, {"text_1": "take each maximum value of a column and get information from another table", "text_2": "SELECT branch, id_saller, name, amount\n FROM\n(\n SELECT r.branch, s.id_saller, r.name, s.amount, \n ROW_NUMBER() OVER (PARTITION BY r.branch ORDER BY s.amount DESC) rnum\n FROM sale s JOIN saller r\n ON s.id_saller = r.id_saller\n) q\n WHERE q.rnum = 1\n", "label": 1}, {"text_1": "What is the meaning of a constant in a SELECT query?", "text_2": "select lastname||','||firstname, year(birthday)\nfrom person;\n", "label": 1}, {"text_1": "How to add Values of multiple Select Cases", "text_2": "MsgBox(sum)\n", "label": 1}, {"text_1": "foreign key in databases and creating a join table", "text_2": "customer_id | load_id\n1 | 1\n1 | 2\n", "label": 1}, {"text_1": "auditing 50 columns using oracle trigger", "text_2": " select id,\n col1, lag(col1) over (partition by id order by when) as prev_col1,\n col2, lag(col2) over (partition by id order by when) as prev_col2,\n col3, lag(col3) over (partition by id order by when) as prev_col3,\n action, when\n from temp12_audit\n", "label": 1}, {"text_1": "Simplify SQL query", "text_2": "select avg \nfrom aggregates,\n (select t0 as period\n union all\n select t0+03:00 as period\n union all\n select t0+06:00 as period\n...\n union all\n select t1 as period) periods \nwhere name=tag2 \n and ts between periods.period -03:00 and periods.period\n and period=01:00\n", "label": 1}, {"text_1": "percentage calculation from previous record", "text_2": "merge into user_multi_base_salary t using( \n select \n user_id, salary, salary_change_date, \n salary/(lag(salary) over (partition by user_id order by salary_change_date))*100 as percent_increase\n from user_multi_base_salary;\n )S\non (s.user_id = t.user_id and s.salary_change_date = t.salary_change_date)\nwhen matched then update set\nT.percent_increase = S.percent_increase\n", "label": 1}, {"text_1": "Custom format example for serial number creation in mysql", "text_2": "CREATE TRIGGER ins_sn BEFORE INSERT ON tbl\nFOR EACH ROW\n SET NEW.sn = CONCAT(LEFT(NEW.sn, 4), '_', RIGHT(NEW.sn,5));\n", "label": 1}, {"text_1": "oracle sql field from cross reference table", "text_2": "SELECT LBKEY,\n MAX( CASE OIDID WHEN 4 THEN VALUE END ) AS \"Post Code\",\n MAX( CASE OIDID WHEN 5 THEN VALUE END ) AS \"City\"\nFROM ACCOUNT a\n INNER JOIN\n CrossReference c\n ON ( a.ACCOUNTID = c.ACCOUNTID )\nWHERE c.OIDID IN ( 4, 5 )\nGROUP BY LBKEY\n", "label": 1}, {"text_1": "MySQL Query with multiple joins", "text_2": "SELECT\n Shot,\n CASE lay WHEN 1863 THEN 'lay' ELSE 'NA' END AS 'Stage1',\n CASE WHEN lay=1863 THEN lay_status ELSE 'NA' END AS 'Status-lay',\n CASE blk WHEN 1863 THEN 'blk' ELSE 'NA' END AS 'Stage2',\n CASE WHEN blk=1863 THEN blk_status ELSE 'NA' END AS 'Status-blk',\n CASE pri WHEN 1863 THEN 'pri' ELSE 'NA' END AS 'Stage3',\n CASE WHEN pri=1863 THEN pri_status ELSE 'NA' END AS 'Status-pri',\n CASE ani WHEN 1863 THEN 'ani' ELSE 'NA' END AS 'Stage4',\n CASE WHEN ani=1863 THEN ani_status ELSE 'NA' END AS 'Status-ani'\nFROM\n my_table\nWHERE\n lay = 1863\nOR\n blk = 1863\nOR\n pri = 1863\nOR\n ani = 1863\n", "label": 1}, {"text_1": "Row_num and Partition by DATE?", "text_2": "2143 2015-09-02 1\n2143 2015-09-15 1\n2143 2015-09-16 2\n2143 2015-09-17 3\n2144 2015-09-02 1\n2144 2015-09-03 2\n2144 2015-09-16 1\n2144 2015-09-17 2\n", "label": 1}, {"text_1": "row-level trigger vs statement-level trigger", "text_2": "Before the triggering statement executes\nBefore each row that the triggering statement affects\nAfter each row that the triggering statement affects\nAfter the triggering statement executes\n", "label": 1}, {"text_1": "Adding data to column to activate a trigger then removing it", "text_2": "Update table set lname = substr(lname,1,length(lname)-1)\n where active = 1\n", "label": 1}, {"text_1": "Find completely non-distinct rows", "text_2": "select * from \n (SELECT cd.*,\n ROW_NUMBER ()\n OVER (PARTITION BY id1\n ORDER BY id1)\n seq_no\n FROM sample_table cd)\n where seq_no=1;\n", "label": 1}, {"text_1": "Aggregate function to detect trend in PostgreSQL", "text_2": "SELECT user_id, regr_slope (rank1, timestamp1) AS slope\nFROM my_table\nGROUP BY user_id\n", "label": 1}, {"text_1": "Unable to create table (errno: 150)", "text_2": "CREATE TABLE `admins` \n(\n `admin_id` int(11) NOT NULL AUTO_INCREMENT,\n `admin_user` varchar(15) NOT NULL,\n `admin_password` varchar(15) NOT NULL,\n `admin_fName` varchar(20) NOT NULL,\n `admin_lName` varchar(20) NOT NULL,\n PRIMARY KEY (`admin_id`)\n) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=latin1;\n\nCREATE TABLE IF NOT EXISTS posts\n(\n post_id INT NOT NULL AUTO_INCREMENT,\n post_title varchar(50),\n post_content varchar(255),\n admin_id int(11) NOT NULL,\n PRIMARY KEY (post_id),\n FOREIGN KEY (admin_id) REFERENCES admins(admin_id)\n) ENGINE = INNODB; \n", "label": 1}, {"text_1": "In Oracle VPD / RLS, how are malicious user predicates prevented from leaking info?", "text_2": "SELECT * FROM orders WHERE my_malicious_function(secret_column);\n", "label": 1}, {"text_1": "Postgresql function per row", "text_2": "select width, length, area(width, length) from rectangle;\n", "label": 1}, {"text_1": "How to use DML on Oracle temporary table without generating much undo log", "text_2": "SSN2> r\n 1* select space, noundo, used_ublk, used_urec from v$transaction\n\nSPA NOU USED_UBLK USED_UREC\n--- --- ---------- ----------\nNO NO 11123 435605\n\nSSN2> r\n 1* select space, noundo, used_ublk, used_urec from v$transaction\n\nSPA NOU USED_UBLK USED_UREC\n--- --- ---------- ----------\nNO NO 13413 525452\n\nSSN2> r\n 1* select space, noundo, used_ublk, used_urec from v$transaction\n\nSPA NOU USED_UBLK USED_UREC\n--- --- ---------- ----------\nNO NO 14552 570567\n\nSSN2>\n", "label": 1}, {"text_1": "Need SQL that list of names of suppliers offering only computers and trucks", "text_2": "SELECT DISTINCT t1.SuppliarName\nFROM Tbl t1\nWHERE t1.ProductName IN('Truck', 'Computer')\nAND NOT EXISTS(\n SELECT 1\n FROM Tbl t2\n WHERE t1.SuppliarName = t2.SuppliarName \n AND t2.ProductName NOT IN('Truck', 'Computer')\n)\n", "label": 1}, {"text_1": "Send key-value objects to postgres in queries", "text_2": "name | location\n-----+---------\nGin | Au \nBeer | US \n", "label": 1}, {"text_1": "In Oracle what is the fastest way to limit the characters in a string?", "text_2": "Procedural approach timing: +00 00:02:04.0320\nSQL approach timing: +00 00:02:49.4326\nExisting approach timing: +00 00:05:50.1607\n", "label": 1}, {"text_1": "How to assign value to oracle cursor while iterating", "text_2": " for EMPLOYEE_RECORD in EMPLOYEE_RECORD_CUR \n loop\n dbms_output.put_line(mycollection(EMPLOYEE_RECORD.employee_name).salary);\n end loop;\n", "label": 1}, {"text_1": "Adding filters to increase SQL performance", "text_2": " where something > 35\n", "label": 1}, {"text_1": "Last record of Join table", "text_2": "select a.dealid\n, a.dealname\n, a.dealdetails\n, b.dcid\n, b.commenttime\n, b.commentperson\n, b.comment\nfrom deals a left outer join (select x.dcid\n, x.dealid\n, x.commenttime\n, x.commentperson\n, x.comment\nfrom dealcomments x\nwhere x.commenttime = (select max(x1.commenttime)\n from dealcomments x1\n where x1.dealid = x.dealid)) b\non (a.dealid = b.dealid)\n", "label": 1}, {"text_1": "Dynamic sql query for broken hours data", "text_2": " default-time-zone=ASIA/CALCUTTA\n", "label": 1}, {"text_1": "using outer alias in mysql subquery", "text_2": "SELECT AVG (rating) AS average_rating, \n user_id,\n (SELECT Count(*) \n FROM teachers_rating t1 \n WHERE teacher_id = 3 \n AND t1.user_id = t2.user_id) AS user_rated_frequency \n FROM teachers_rating t2\n WHERE teacher_id = 3\n GROUP BY user_rated_frequency;\n", "label": 1}, {"text_1": "Join much slower using table() function", "text_2": "SELECT /*+ cardinality(t, 20) */ count(*) into l_result FROM project p JOIN TABLE(in_project_ids) t ON p.project_id = t.val;\n", "label": 1}, {"text_1": "Common way to compare timestamp in Oracle, PostgreSQL and SQL Server", "text_2": "AND creation_date < (CURRENT_TIMESTAMP - interval '5' day)\nAND creation_date >= (CURRENT_TIMESTAMP - interval '15' day)\n", "label": 1}, {"text_1": "Can I access DB from django template?", "text_2": "def photo_view(request):\n return render_to_response('app_name/photos.html', {\n 'photos': Photo.objects.all()\n })\n", "label": 1}, {"text_1": "What would be the most efficient way in Oracle database to update a column for each row from a join query result?", "text_2": "UPDATE products\nSET customer_id = (\n SELECT customer_id\n FROM customers\n WHERE customers.card_id = products.card_id);\n", "label": 1}, {"text_1": "Group by an advanced way", "text_2": "SELECT * FROM messages m GROUP BY m._from HAVING (m._to!=0 AND m.group_1=0 AND m.group_2=0)\n\nSELECT * FROM messages m WHERE m.group_1=m._from OR m.group_2=m._to;\n", "label": 1}, {"text_1": "How do I get the current records based on it's Effective Date?", "text_2": "DECLARE \n @OrganizationID varchar(40)\n\nSET @OrganizationID = 'SMESM1HTOVEOVE'\n\nSELECT\n ro.ResourceID,\n ro.OrganizationID,\n max(ro.EffectiveDate)\nFROM\n ResourceOrganization ro\nWHERE\n ro.OrganizationID = @OrganizationID\nGROUP BY\n ro.ResourceID,\n ro.OrganizationID\nHAVING\n max(ro.EffectiveDate) = (\n SELECT \n max(EffectiveDate)\n FROM \n ResourceOrganization\n WHERE \n ResourceID = ro.ResourceID)\n", "label": 1}, {"text_1": "Convert Text to Date", "text_2": "? Format(CDate(Mid(\"Mon, Oct 6, 2014\", 5)), \"yyyy/mm/dd\")\n2014/10/06\n", "label": 1}, {"text_1": "VB: Formating Mysql Timestamp", "text_2": "Dim sql As String = \"UPDATE `Table` Set MyColumn= current_timestamp WHERE ID= @ID\"\n", "label": 1}, {"text_1": "Performant aggregation where clause", "text_2": "with cutoffs as (\n select id, state,\n (select max(creationdate)\n from users\n where users.state_id = states.id) - '3 months'::interval as cutoff\n from states)\nselect count(*) as numberofusers, state\nfrom users\n join cutoffs on users.state_id = cutoffs.id\nwhere users.creationdate > cutoff\ngroup by state\n", "label": 1}, {"text_1": "SQL Server - Only Select Latest Date", "text_2": "with location_data as (\n select \n lctn_id as Location,\n invntryitm_id as InventoryItemID,\n invntryitm_nme as InventoryItemName,\n prchseordrlst_dte_rqstd as DateRequested,\n prchseordrlst_unt_cst as UnitCost,\n max (prchseordrlst_dte_rqstd) over (partition by lctn_id) as max_date\n from\n invntryitm\n JOIN prchseordrlst on prchseordrlst.invntryitm_rn = invntryitm.invntryitm_rn\n JOIN prchseordr on prchseordr.prchseordr_rn = prchseordrlst.prchseordr_rn\n JOIN lctn on lctn.lctn_rn = prchseordr.lctn_rn\n where\n invntryitm.invntryitm_nme ='REFRIGERANT R-22 30#' and\n lctn_obslte = 'N'\n)\nselect *\nfrom location_data\nwhere max_date = DateRequested\norder by Location\n", "label": 1}, {"text_1": "Why does my SQL query return rows with NULL? It should never return rows with NULL", "text_2": "SELECT DeviceID,\n ParentCode,\n COALESCE(StatusCode ,0) AS StatusCodeNotNull, \n WhenEntered AS StatusDate\nFROM AT_Event_History as A\n", "label": 1}, {"text_1": "How to get generated Id using node-jdbc?", "text_2": "[ { ROWID: 'AAAVTcAAEAAAADzAAK' } ]\n", "label": 1}, {"text_1": "NOT EXISTS vs NOT IN", "text_2": "SELECT *\nFROM T\nWHERE ID NOT IN (SELECT ID FROM T2);\n\nSELECT *\nFROM T\nWHERE NOT EXISTS (SELECT ID FROM T2 WHERE T.ID = T2.ID);\n", "label": 1}, {"text_1": "check chars in varchar", "text_2": "Letter\n----------\nD\nC\nA \n", "label": 1}, {"text_1": "REGEXP_REPLACE to replace list of values with list of values in single statement", "text_2": "0123(((abc)(de)f)ghi)45(678)\n", "label": 1}, {"text_1": "Was a table created with iq unique option?", "text_2": "sp_iqcolumn tab\n", "label": 1}, {"text_1": "Returning result even for elements in IN list that don't exist in table", "text_2": "ArrayDescriptor aDesc =\n ArrayDescriptor.createDescriptor(\"SYS.ODCINUMBERLIST\", conn );\n", "label": 1}, {"text_1": "Group by and display result for current month", "text_2": "Select Count(*)\nFrom Reading\nWhere ReaderID = READER's CODE\nAND Trunc(ReadDate,'mm') = Trunc(Sysdate,'mm')\n", "label": 1}, {"text_1": "When is a SQL Server foreign key table too much?", "text_2": "CREATE TABLE [dbo].[StatusTypes](\n [ID] [nvarchar](250) NOT NULL,\n CONSTRAINT [PK_StatusTypes] PRIMARY KEY CLUSTERED ([ID] ASC)\n) ON [PRIMARY]\nGO\n\nCREATE TABLE [dbo].[Audits](\n [ID] [int] IDENTITY(1,1) NOT NULL,\n ...\n [Status] [nvarchar](250) NOT NULL,\n CONSTRAINT [PK_Audits] PRIMARY KEY CLUSTERED ([ID] ASC),\n CONSTRAINT [FK_Audit_Status] FOREIGN KEY (Status) REFERENCES StatusTypes(ID)\n) ON [PRIMARY]\nGO\n", "label": 1}, {"text_1": "Which of the two PostgreSQL indexes is more efficient?", "text_2": "SELECT * INTO it\nFROM Item i\nWHERE (i.RECEIVER = ? OR i.RECEIVER is NULL) AND \n (i.SENDER = ?)\nORDER BY ARRIVAL\nLIMIT 1;\n", "label": 1}, {"text_1": "Display Entire month(off's and the Active days)", "text_2": "SELECT\n *\nFROM\n Calendar\nCROSS JOIN\n User\nLEFT JOIN\n yourTable\n ON yourTable.date = Calendar.date\n AND yourTable.user = User.id\nWHERE\n Calendar.date >= '2014-02-01'\n AND Calendar.date < '2014-03-01'\n AND User.id IN (1, 2, 3, 4)\n", "label": 1}, {"text_1": "How to get count of unique values in a column group by the primary key", "text_2": "select customer_id ID, \n sum(pwr_flag) OnesCount, \n sum(1-pwr_flag) ZerosCount \n from temp_pwr \n group by customer_id\n", "label": 1}, {"text_1": "SQL Query to get recursive count of employees under each manager", "text_2": "create view valid_mng as \nselect Emp_Id,Manager_id from Emp_Table\nwhere Emp_Id<>Manager_Id\n", "label": 1}, {"text_1": "How to do nothing in an SQL case statement?", "text_2": "UPDATE mytable\nSET col1 = 10 \nWHERE col1 = 20\n", "label": 1}, {"text_1": "Week numbers between two dates", "text_2": "SELECT 'S' || LPAD( LEVEL, 2, '0' )\nFROM DUAL\nCONNECT BY DATE '2016-01-01' + ( LEVEL - 1 ) * 7 <= DATE '2016-02-29';\n", "label": 1}, {"text_1": "Find Query running more than 5 second", "text_2": "SQL> select sql_text from v$sqlarea where sql_id = 'ap3xdndsa05tg'\n 2 /\n\nSQL_TEXT\n--------------------------------------------------------------------------------\nselect /*+ slow_running_query */ * from big_table where col2 like '%whatever%'\n\nSQL>\n", "label": 1}, {"text_1": "Mapping 3 tables relation to single entity. ORM best practices?", "text_2": "public class FinalPage{\n public Page Page { get; set; }\n public ContentVersion ContentVersion { get; set; }\n public Content Content { get; set; }\n}\n", "label": 1}, {"text_1": "Laravel 5.1 eloquent relations model- how to update foreign key column?", "text_2": "$user = User::create([\n 'name' => $request->input('name')\n]);\n\nPhone::create([\n 'phone' => $request->phone,\n 'user_id' => $user->id\n]);\n", "label": 1}, {"text_1": "filter by Date in sql statement not working", "text_2": "SELECT date_dt, ident_1, ident_2, ident_3\nFROM p240538\nWHERE (date_dt >= convert(DateTime, '10/19/2011', 101)\n", "label": 1}, {"text_1": "Outputting column name / values as key value pairs in SQL view field", "text_2": "Output.\nID Title ParentID KeyValPair\n1 A Parent Null ABooleanField: true, AnIntegerField:50\n2 A Child 1 ABooleanField: false, AnIntegerField:100\n3 AnotherParent Null ADateField: 10/12/2014\n", "label": 1}, {"text_1": "getting distinct value with all column sqlserver", "text_2": "SELECT * FROM (\nSELECT *,ROW_NUMBER() OVER (PARTITION BY TAGNAME ORDER BY (SELECT 1)) AS ROWNUM FROM TBL WHERE TAGNAME) \nWHERE ROWNUM =1\n", "label": 1}, {"text_1": "Get non existence arguments of SQL IN operator", "text_2": "CREATE TABLE Items\n(\n item nvarchar(128) PRIMARY KEY\n)\n\nGO\n\nCREATE FUNCTION GetNonExistingItems( @Items xml )\nRETURNS TABLE\nAS RETURN\nWITH B\nAS\n(\n SELECT c.value('.', 'nvarchar(128)') As item\n FROM @items.nodes('items/item') T(c)\n)\nSELECT B.item\nFROM B\nWHERE\n NOT EXISTS (\n SELECT *\n FROM Items I\n WHERE B.item = i.item\n\n )\n\nGO\n\nDECLARE @items XML = N'\n<items>\n <item>Item1</item>\n <item>Item2</item>\n <item>Item5</item>\n</items>'\n\nSELECT *\nFROM GetNonExistingItems (@Items)\n", "label": 1}, {"text_1": "MySQL : Automatic column update with list of value", "text_2": "CREATE TABLE members\n(\n member_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, \n member_name VARCHAR(32)\n);\nCREATE TABLE tasks\n(\n task_id INT NOT NULL AUTO_INCREMENT PRIMARY KEY, \n task_name VARCHAR(32)\n);\nCREATE TABLE assigned_tasks\n(\n member_id int, \n task_id int,\n PRIMARY KEY (member_id, task_id),\n FOREIGN KEY (member_id) REFERENCES members (member_id),\n FOREIGN KEY (task_id) REFERENCES tasks (task_id)\n);\n", "label": 1}, {"text_1": "Simple Pivot Table with Month and text data Dynamic SQL", "text_2": "May June July August\n------------------------------ ------------------------------ ------------------------------ ------------------------------\nJoe Blow Carry over Carry over Available\nAvailable Christopher Freeberg Carry over Carry over\nAvailable Ringo Starr Carry over Carry over\nAvailable Robert L Testcustomer Carry over Carry over\n", "label": 1}, {"text_1": "Not getting any results from stored procedure", "text_2": "create procedure [dbo].[GetsItemDetails]\n(\n @SiteURL varchar\n)\nAS\n", "label": 1}, {"text_1": "SQL regex with \u00b6 sign", "text_2": "select * from CollectionSearchIndexAttributes\nwhere ak_tags like '%\\nreis\\n%';\n", "label": 1}, {"text_1": "MySQL query calculated column", "text_2": "SELECT a.Id, a.Name, COUNT(b.Id) AS Num\nFROM a JOIN b ON b.IdTableA = a.Id \nGROUP BY a.Id, a.Name\nORDER BY a.Name\n", "label": 1}, {"text_1": "Finding if there's at least one attribute in common in a set", "text_2": "SELECT SUPPLY.supplier\nFROM BAG\nJOIN (SELECT bag_id, COUNT(*) as item_count FROM BAG GROUP BY bag_id WHERE bag_id = ?) bag_count\n ON BAG.id = bag_count.bag_id\nJOIN SUPPLY\n ON BAG.item = SUPPLY.item\nGROUP BY SUPPLY.supplier\nHAVING COUNT(SUPPLY.item) = bag_count.item_count\nWHERE BAG.bag_id = ?\n", "label": 1}, {"text_1": "MySQL output all records from table but add flag if value present in another", "text_2": "select u.user_id, u.first_name, u.last_name,\n (c.club_id = 2) as flag\nfrom users u left join\n club c\n on u.user_id = c.user_id;\n", "label": 1}, {"text_1": "PostgreSQL ranking query", "text_2": "competition_time_id competition_user_id time_in_seconds rank\n1 1 10 1\n2 2 20 3\n3 3 15 2\n4 4 15 2\n5 5 10 2\n6 6 7 1\n", "label": 1}, {"text_1": "Simplest way of running same SELECT on multiple data in MySQL", "text_2": "SELECT \"Before 30\" as Interval, COUNT(*) AS total\nFROM users WHERE added < \"2015-07-30\"\nUNION ALL\nSELECT \"Last 7\" as Interval, COUNT(*) AS total\nFROM users WHERE added >= \"2015-09-08\"\n", "label": 1}, {"text_1": "Nhibernate join filtering", "text_2": " var factory = Session.SessionFactory;\n var session = factory.OpenSession(new SqlInterceptor());\n", "label": 1}, {"text_1": "Delete from table with no related data - WHERE NOT IN and JOIN both failing", "text_2": "\nDELETE FROM MasterData\nWHERE ID IN (\n SELECT MD.ID\n FROM MasterData MD\n JOIN RelatedA RelA on RelA.MasterDataID = MD.ID AND RelA.MasterDataID IS NULL\n JOIN RelatedB RelB on RelB.MasterDataID = MD.ID AND RelB.MasterDataID IS NULL\n)\n", "label": 1}, {"text_1": "Replacing values with wildcards (parsing text data)", "text_2": "SELECT regexp_replace(htmltag, '<[^>]+>', '') htmltag \nFROM yourtable\n", "label": 1}, {"text_1": "Compare password with last three months passwords", "text_2": "DELETE FROM oldpasswords WHERE timestamp < DATE_SUB(NOW(), INTERVAL 3 MONTH);\n", "label": 1}, {"text_1": "Select Data based on Sum of another columns value", "text_2": "select RowIndex, Id, TicketCount\nfrom (select t.*, sum(TicketCount) over (order by RowIndex) as CumTicketCount\n from t\n ) t\nwhere cumTicketCount <= 10;\n", "label": 1}, {"text_1": "mysql grouping question", "text_2": "SELECT m.timestamp, m.user, m.message, m.group_id, g.grp_timestamp\n FROM messages AS m JOIN\n (SELECT group_id, MIN(timestamp) AS grp_timestamp\n FROM messages\n GROUP BY group_id) AS g ON m.group_id = g.group_id\n WHERE m.topic_id = ?\n ORDER BY g.grp_timestamp, g.group_id, m.timestamp;\n", "label": 1}, {"text_1": "How can I share the same primary key across two tables?", "text_2": "ALTER TABLE ProductWebInfo\n ADD CONSTRAINT fk_SKU\n FOREIGN KEY(SKU)\nREFERENCES Product(SKU)\n", "label": 1}, {"text_1": "Concatenating row values using Inner Join", "text_2": "DECLARE @DocHoldReasons VARCHAR(8000);\nSET @DocHoldReasons = 'DocType Hold';\n\nUPDATE dbo.EpnPackages \n SET Error = 1,\n Msg = (COALESCE(@DocHoldReasons + ': ', '') + \n COALESCE(stuff((select ': ' + cv.value\n from EpnCountyValues cv\n where cv.ValueName = 'DocHoldReason' and\n cv.CountyId = p.CountyId\n for xml path ('')\n ), 1, 2, ''), '')\n )\n WHERE p.Status = 1000 AND p.Error = 0;\n", "label": 1}, {"text_1": "How Oracle processes the given SQL statement", "text_2": "SQL> explain plan for\n 2 select\n 3 max(salary),\n 4 country_id\n 5 from (\n 6 select\n 7 salary,\n 8 department_id,\n 9 location_id,\n 10 country_id\n 11 from\n 12 HR.EMPLOYEES\n 13 natural join\n 14 HR.DEPARTMENTS\n 15 natural join\n 16 HR.LOCATIONS\n 17 )\n 18 group by country_id;\n\nExplained.\n\nSQL>\n", "label": 1}, {"text_1": "How to call DB functions in stored procedures", "text_2": "WHERE (Employee.FK_EntityId IN (Select Items FROM dbo.Split(EntityHierarchy)))\n--Items is the column name of the returning table\n", "label": 1}, {"text_1": "sql cast hour out of datetime without dropping leading zero on single digit hours", "text_2": "SELECT LEFT(CONVERT(TIME(0), GETDATE()), 2) + ':00';\n", "label": 1}, {"text_1": "MySQL Database design. Inserting rows in 1to1 tables. ", "text_2": "Parent\n JOIN BestChild\n ON Parent.id = BestChild.parentid\n JOIN Child\n ON BestChild.childid = Child.id\n", "label": 1}, {"text_1": "SQL query to select today and previous day's price", "text_2": "| ticker | price | dt | rank |\n|--------|-------|---------------------------|------|\n| AAPL | 6 | October, 23 2015 00:00:00 | 1 |\n| AAPL | 5 | October, 22 2015 00:00:00 | 2 |\n| AXP | 5 | October, 23 2015 00:00:00 | 1 |\n| AXP | 3 | October, 22 2015 00:00:00 | 2 |\n", "label": 1}, {"text_1": "SQL Statement - How can Improve speed with indexing", "text_2": "CREATE NONCLUSTERED INDEX unread_emails\n ON dbo.MemberMail(ToMemberID, MemberMailID)\n WHERE ToReadFlag = 0\n AND ToDeletedFlag = 0\n AND FromDeletedFlag = 0\n AND OnHold = 0\n AND ToArchivedFlag = 0;\n", "label": 1}, {"text_1": "XML Parsing in Stored procedure", "text_2": "CREATE PROCEDURE [dbo].[FetchStudentData]\n@xml XML \nAS\nBEGIN\n SET NOCOUNT ON; \n\n DECLARE @sID AS INT, @sRollNo AS INT \n\n SELECT @sID = xmlData.Student.value('@ID','INT'), \n @sRollNo = xmlData.Student.value('@RollNo','INT')\n FROM @xml.nodes('//StudentData/Student') xmlData(Student)\n\n SELECT @sID AS ID, @sRollNo AS RollNo\nEND\n", "label": 1}, {"text_1": "How to use DML on Oracle temporary table without generating much undo log", "text_2": "SSN1> insert into gtt23\n 2 select * from big_table\n 3 /\n\n553928 rows created.\n\nSSN1>\n", "label": 1}, {"text_1": "Querying Dataset to get Distance using Latitude/Longitude Function", "text_2": "SELECT u.RowID, u.Zipcode, u.Longitude, u.latitude,\n ProgramManagement.dbo.CoordinateDistanceMiles(u.Latitude, u.Longitude, z.Lat, z.Long) dist\nFROM #unmatched2 u\n CROSS JOIN (\n SELECT max(Latitude) Lat, max(Longitude) Long\n FROM ProgramManagement.dbo.zipcode_lookup\n WHERE ZIPCode = 92101\n ) z\n", "label": 1}, {"text_1": "MySQL rowrank based on ORDER BY on 2 columns", "text_2": "select count(*) + 1\nfrom persons p cross join\n (select points, voted_on from persons p where p.id = x) const\nwhere (p.points > const.points) or\n (p.points = const.points and p.voted_on > const.voted_on)\n", "label": 1}, {"text_1": "Iterating Oracle collections of objects with out exploding them", "text_2": "CREATE OR REPLACE FUNCTION get_item(p1 PERIOD_TABLE, idx NUMBER)\nRETURN PERIOD IS\nBEGIN\n RETURN p1(idx);\nEND;\n", "label": 1}, {"text_1": "dynamic query return zero value", "text_2": "SET @query = @query + 'Select * From LogTable where logID in ('+@logID+') AND userID = '+@userId + ''\n", "label": 1}, {"text_1": "combined 2 different structure tables and remove duplicates", "text_2": "Emp_no salary from_date to_date\n 22 14000 2007-01-01 2008-03-31 -- or 2008-04-01\n 22 16000 2008-04-01 2010-12-31 -- or 2011-01-01\n 22 18000 2011-01-01 9999-12-31 -- or NULL\n", "label": 1}, {"text_1": "Select value in Oracle", "text_2": "SELECT * from MANAGEDSYSTEMGROUPS where MSYSTEMGROUPID != 12\n", "label": 1}, {"text_1": "How to format number with \".\" as thousand separator, and \",\" as decimal separator?", "text_2": "SELECT FORMAT(10000000.5, 2, 'de_DE') AS format\n", "label": 1}, {"text_1": "Select statement with MAX() aggregation in the Where Clause", "text_2": "SELECT memberID\n FROM renewals\n GROUP BY memberID\n HAVING MAX(YEAR(expiryDate)) = 2010\n", "label": 1}, {"text_1": "Reduce data by summing and averaging certain variables in R", "text_2": "library(dplyr)\n\ndf %>%\n group_by(id, MONTH, DAY) %>%\n summarise(VAR1 = sum(VAR1), VAR2 = mean(VAR2), first(VAR3))\n", "label": 1}, {"text_1": "sql query returning multiple result using WHERE", "text_2": " Select (round(random() * 9 ) + 1) FROM Top_Up `\n", "label": 1}, {"text_1": "shift id's of table alike (id = id + 1) where id is primary key", "text_2": "UPDATE TODO SET id = id - (1000000000 - 1)\n", "label": 1}, {"text_1": "Coalesce two SQL queries", "text_2": "SELECT o.*\nFROM (SELECT o.*,\n DENSE_RANK() OVER (PARTITION BY src\n ORDER BY (CASE WHEN tstart <= @instant AND tend >= @instant THEN 1\n ELSE 2\n END),\n (CASE WHEN tstart <= @instant AND tend >= @instant THEN NULL\n ELSE tend\n END) DESC\n ) as seqnum\n FROM obs o\n WHERE src = @id\n ) o\nWHERE seqnum = 1;\n", "label": 1}, {"text_1": "SQL Server - Getting the opposite of a where clause", "text_2": "WHERE NOT (column1 LIKE 'Z%' AND column2 = '2') \n", "label": 1}, {"text_1": "Using WHERE and ORDER BY together in Oracle 10g", "text_2": "select * from employees \nWHERE job_id != 'CLERKS'\nAND DateAppointedFielName BETWEEN StartDate AND EndDate \norder by last_name\n", "label": 1}, {"text_1": "Select * and make an alias over one column", "text_2": "user { ALL BUT login }\n", "label": 1}, {"text_1": "Get records for last 10 dates", "text_2": "SELECT 'bookname, \"' || string_agg(to_char(date, 'DD/MM/YYYY'), '\", \"') || '\"'\nFROM (\n SELECT DISTINCT date\n FROM book\n WHERE sid = 1\n ORDER BY 1 DESC\n LIMIT 10\n ) sub;\n", "label": 1}, {"text_1": "Simple SQL Select from 2 Tables (What is a Join?)", "text_2": "SELECT TABLE_USERS.ID, Username, Groupname \n FROM TABLE_USERS \n LEFT JOIN TABLE_GROUPS \n ON TABLE_USERS.group = TABLE_GROUPS.id\n", "label": 1}, {"text_1": "How can I do a left outer join where both tables have a where clause?", "text_2": "SELECT SSOU.id, API_User.is_active\nFROM\n API_User\n LEFT OUTER JOIN\n (\n SELECT id FROM Single_Sign_On_User WHERE external_id = 'test_ext_id'\n ) SSOU ON SSOU.API_User_id = API_User.id\nWHERE \n API_User.authorization_key = 'test'\n", "label": 1}, {"text_1": "How do you count misspelled fields using a SQL query?", "text_2": "SELECT Case When ResultStatus = 'Fialed' then 'Failed' Else ResultStatus End AS ResultStatus, Count(*)\nFROM [DB_018].[dbo].[ProjectData]\nGROUP BY Case When ResultStatus = 'Fialed' then 'Failed' Else ResultStatus End\n", "label": 1}, {"text_1": "why can't I access my CTE after I used it once?", "text_2": "(4 row(s) affected)\n PK col1\n---- ----------- -----\nA 1 xyz\nA 2 xyz\nA 3 xyz\nA 4 xyz\nA 5 x\nA 6 x\n\n(6 row(s) affected)\n\n(4 row(s) affected)\n\n PK col1\n---- ----------- -----\nB 5 x\nB 6 x\n\n(2 row(s) affected)\n", "label": 1}, {"text_1": "How to select ranges in a range of record in oracle", "text_2": "SQL> WITH DATA AS\n 2 (SELECT num - ROW_NUMBER() OVER(PARTITION BY status ORDER BY num) grp,\n 3 status,\n 4 num\n 5 FROM t\n 6 )\n 7 SELECT MIN(num)\n 8 ||' - '\n 9 || MAX(num) range,\n 10 COUNT(*) cnt\n 11 FROM data\n 12 WHERE status='A'\n 13 GROUP BY grp\n 14 ORDER BY grp\n 15 /\n\nRANGE CNT\n------ ----------\n2 - 3 2\n1 - 2 2\n1 - 6 2\n9 - 10 2\n\nSQL>\n", "label": 1}, {"text_1": "sqlite query in android", "text_2": "ProductsMetaData.A + \"=? AND \" + ProductsMetaData.B + \"=?\"\n", "label": 1}, {"text_1": "Postgres/PostGIS SQL update slamming hard drive hard despite no new data created", "text_2": "ORDER BY table_id\nLIMIT 10\nOFFEST 0\n", "label": 1}, {"text_1": "Replacing function call with procedure execution in sql", "text_2": "INSERT INTO #TemP (RowNumber,ValFromUser,ColumnName\n ,ValFromFunc,FuncWeight,percentage)\nExec dbo.Match(@MotherFN , @constVal)\n", "label": 1}, {"text_1": "Calculate sum in SQL and display it as another column?", "text_2": "Select CUSTOMER_NAME, TODAYS_TOTAL, AMOUNT_RECIEVED, DATE_SALE, ITEM_MODEL, QUANTITY,\n CREDIT = (CASE WHEN AMOUNT_RECIEVED=0 AND TODAYS_TOTAL>0 AND CREDIT=0\n THEN TODAYS_TOTAL \n WHEN AMOUNT_RECIEVED>0 AND TODAYS_TOTAL>0 AND CREDIT>=0\n THEN (CREDIT+TODAYS_TOTAL)-AMOUNT_RECIEVED\n WHEN AMOUNT_RECIEVED>0 AND TODAYS_TOTAL=0 AND CREDIT>0\n THEN (CREDIT-AMOUNT_RECIEVED)\n END) \nFrom CUSTOMER_CREDIT_RECORDS\nWHERE CUSTOMER_NAME = 'Saad NED';\n", "label": 1}, {"text_1": "DB2 Select with group by and sum based on another column", "text_2": "SELECT id\n ,SUM(CASE WHEN type = 'CR' THEN AMT\n ELSE -AMT\n END) AS BAL\n FROM acct_table\n GROUP BY id;\n", "label": 1}, {"text_1": "how do I remove nested select statement", "text_2": ";WITH n AS \n(\n SELECT\n NameID,\n rn = ROW_NUMBER() OVER (ORDER BY NameID)\n FROM [Name]\n WHERE TypeID = @TypeID\n AND [Name] = 'Billy'\n)\nSELECT NameID\n FROM n\n WHERE rn > 1;\n", "label": 1}, {"text_1": "Deleting specific record from nested table Oracle DB", "text_2": "DELETE FROM \n (SELECT A.Name, A.City, d.Brand, d.Model, d.ID, d.Year, d.Price \n FROM Dock A, TABLE(ML) d)\nWHERE ID = 'L201';\n", "label": 1}, {"text_1": "Postgres returns SQL state: 22001 when copying data to another table", "text_2": "INSERT INTO wise_estado ( cvgeo_estado, nombre_estado)\nSELECT \"CVE_ENT\", \"NOM_ENT\"\nFROM estados;\n", "label": 1}, {"text_1": "Oracle select min row from multiple results", "text_2": "select price, distributor\nfrom\n(\n select d.price, \n m.distributor_name as Distributor,\n row_number() over(partition by mo.title order by d.price) rn\n from distributors m\n inner join distributed d\n on d.distributor_id = m.distributor_id\n inner join movies mo \n on mo.movie_id = d.movie_id \n) src\nwhere rn = 1;\n", "label": 1}, {"text_1": "Fluent Linq: Get he contents of Table1 where entry in Table2", "text_2": "var result = db.tblPropertyExtras.Join(db.tblExtra,\n pe => pe.ExtraId,\n e => e.ExtraId,\n (pe, e) => new { pe, e })\n .Where(x => x.pe.propertyId == 1234)\n .Select(x => x.e);\n", "label": 1}, {"text_1": "Conditional calculation in SELECT SQL Server", "text_2": "INSERT INTO Question_Data\n (QuestionID ,\n Attempts ,\n Wrong)\n SELECT \n R.QuestionID ,\n 1,\n (CASE WHEN R.Response = 'F' THEN 1\n ELSE 0\n END) Wrong\n FROM \n Responses_Table R\n LEFT JOIN \n Question_Data Q ON Q.QuestionID = R.QuestionID\n WHERE \n Q.QuestionID IS NULL\n", "label": 1}, {"text_1": "Cumulative Game Score SQL", "text_2": ";WITH ResultSet (PlayerID, PuzzleId, Score, TimeTaken, seq) \nAS\n(\nSELECT\n A.[PlayerID], \n A.PuzzleID,\n A.[Score],\n A.[TimeTaken],\n seq = ROW_NUMBER() over(PARTITION BY PlayerID, PuzzleId ORDER BY Score DESC)\nFROM GameResult A\nWHERE \n A.[puzzleID] in(1,2,3)\n)\nSELECT TOP 50\n RSP.[PlayerID], \n RSP.[PlayerName], \n Score = SUM(RSA.[Score]), --total score\n TimeTaken = SUM(RSA.[TimeTaken]) --total time taken\nFROM ResultSet RSA\nINNER JOIN Player RSP \n ON RSA.PlayerID = RSP.PlayerID\nWHERE\n --this is used to filter the top score for each puzzle per player\n seq = 1\nGROUP BY\n RSP.[PlayerID], \n RSP.[PlayerName]\nORDER BY\n SUM(RSA.Score) DESC,\n SUM(RSA.TimeTaken) ASC\n", "label": 1}, {"text_1": "How to detect and pick-up changes in underlying schema for sql-server tvf functions", "text_2": "SELECT * FROM sys.sql_modules\nWHERE definition LIKE '%TableA%' AND definition LIKE '%SELECT *%'\n", "label": 1}, {"text_1": "Transform rows in columns", "text_2": "DECLARE @cols AS NVARCHAR(MAX);\nDECLARE @query AS NVARCHAR(MAX);\n\nselect @cols = STUFF((SELECT distinct ',' + QUOTENAME(c.name) \n from names c\n FOR XML PATH(''), TYPE\n ).value('.', 'NVARCHAR(MAX)') \n ,1,1,'')\n\nSET @query = 'SELECT title, enunciation, ' + @cols +\n ' FROM (SELECT title, enunciation, total, name\n FROM Table1) t\nPIVOT\n(\n SUM(total) FOR name IN( ' + @cols + + ' )) p;';\n\nexecute(@query);\n", "label": 1}, {"text_1": "Caching array length before a loop in PL-SQL", "text_2": "for j in 1..10000 loop\n for i in 1..array.count loop\n temp := array(i);\n end loop;\nend loop;\n", "label": 1}, {"text_1": "selecting rows with id from another table", "text_2": "SELECT t.id, t.name, t.slug, tr.description, tr.created_at, tr.updated_at \n FROM terms AS t \n INNER JOIN terms_relation AS tr \n ON t.id = tr.term_id AND tr.taxonomy = \"categ\"\n", "label": 1}, {"text_1": "SQL to search duplicates", "text_2": "select name from animals where name in ('Lion', 'Tiger', 'Jaguar')\n", "label": 1}, {"text_1": "Calculate the distance between following records in SQL", "text_2": "select x.id, x.value,\n (select x2.value\n from x x2\n where x2.id > x.id\n order by x2.id\n limit 1\n ) - x.value as DistanceToNextRecord\nfrom x x;\n", "label": 1}, {"text_1": "IDENT_CURRENT equivalent for current session", "text_2": "----\n4\n", "label": 1}, {"text_1": "Forward dependencies @startdate @enddate=@startdate + 1 Week", "text_2": "@startdate = '12-01-2015'\nthen\n@enddate = @startdate + 7; -- Implicit cast add 7 days\n", "label": 1}, {"text_1": "SQL 2 Summations giving out incorrect results", "text_2": "SELECT\n (SELECT SUM(Details.price * Details.quantity) FROM Details WHERE Details.fk_invoice_id = Invoice.id) AS total_amount,\n (SELECT SUM(Payment.amount_paid) FROM Payment WHERE Payment.fk_invoice_id = Invoice.id) AS paid_amount\nFROM Invoice \nWHERE id = 1;\n", "label": 1}, {"text_1": "SAS Adding Minutes to a Timestamp Stored in a Macro Variable", "text_2": "proc format ;\n picture mssqldt low-high = '''%Y-%0m-%0d %0H:%0M:%0S.000''' (datatype = datetime) ;\nrun ;\n", "label": 1}, {"text_1": "Only joining rows where the date is less than the max date in another field", "text_2": "select s.*\nfrom sales s\nwhere s.sales_date < (select max(promo_date)\n from promotions p\n where p.emp_id = s.emp_id\n );\n", "label": 1}, {"text_1": "Remove only zero after decimal sql server 2012", "text_2": "DECLARE @val decimal(5,1)\nSET @val = 7870.0\n\nSelect \nCase \n When right(@val,1)<> '0' then\n cast(@val as varchar) \n else \n cast(cast(@val as int) as varchar)\nEnd\n", "label": 1}, {"text_1": "Get previous two months date based on a parameter value", "text_2": "declare @TwoMonthsBack datetime \n\nselect @TwoMonthsBack= dateadd(dd,-1, DateAdd(MM,-2,DateAdd(dd,1,@YourInputDateParam)))\n", "label": 1}, {"text_1": "Recursive select in SQL", "text_2": "Id Name ParentId\n----------- -------------------- -----------\n1 TestName1 NULL\n2 TestName2 1\n5 TestName5 1\n3 TestName3 2\n", "label": 1}, {"text_1": "What is the inverse of SYS_EXTRACT_UTC() in Oracle?", "text_2": "FROM_TZ(cast(stored_utc_date as TIMESTAMP), 'UTC') AT TIME ZONE to_char(systimestamp, 'TZR')\n", "label": 1}, {"text_1": "Should I split this table into two?", "text_2": "Id MajorId CourseId MustHave\n", "label": 1}, {"text_1": "SQL equivalent of Java code", "text_2": "select (1441736325 * power(2, 32)) + bitand(2549626543, power(2, 32) - 1)\nfrom dual;\n", "label": 1}, {"text_1": "MS Access Inner Join On 3 Tables with the same field_name", "text_2": "SELECT *\nFROM Table1\n INNER JOIN Table2\n ON Table1.Master_Number = Table2.Master_Number;\n", "label": 1}, {"text_1": "Simultaneous result from single parameter SQL Server stored procedure", "text_2": " SELECT @startdate AS CDate, \n @setpoint - 1 as Case2, \n 0 as OLNo\n", "label": 1}, {"text_1": "Display Columns when count from another column is greater than 1 without using joins", "text_2": "select *\n from Vehicle v\n where exists (select i.ivin\n from Invoice i\n where i.ivin = v.vvin\n group by i.ivin\n having count(*) >= 2)\n", "label": 1}, {"text_1": "sqlite intersecting fulltext result with the normal index", "text_2": "> SELECT 42 INTERSECT SELECT 42;\n42\n> SELECT 42 INTERSECT SELECT '42';\n", "label": 1}, {"text_1": "How do I make case-insensitive queries on Mongodb?", "text_2": "db.collection.find({\"name_lower\": thename.toLowerCase()})\n", "label": 1}, {"text_1": "MySQL RAND() strange behaviour", "text_2": "SELECT * FROM(\n SELECT (@rank:=@rank+1) AS num, ...\n FROM (SELECT @rand := RAND(), @rank := 0) r\n CROSS JOIN ...\n WHERE ....) as raw\nWHERE raw.num = FLOOR(1 + @rand * @rank) LIMIT 1\n", "label": 1}, {"text_1": "Performance considerations for temporary data in Oracle", "text_2": "select name, value\nfrom v$sysstat\nwhere name in ('db block gets from cache', 'consistent gets from cache', \n'physical reads cache');\n", "label": 1}, {"text_1": "Count statement one to many relationship with where", "text_2": "WHERE bookcategories.categoryid IN (3, 4)\n", "label": 1}, {"text_1": "SQL Server 2005 Bitwise Which Day is next?", "text_2": "-----15 = Saturday and Sunday Only \n1111111 = Every Day \n11113-- = Every Weekday \n2-2-3-- = Monday, Wednesday, Friday \n", "label": 1}, {"text_1": "Recursively aggregate SQL columns", "text_2": "DECLARE @Company TABLE(C_ID INT,NAME VARCHAR(10))\nINSERT INTO @Company VALUES\n(1,'Abc')\n\nDECLARE @FINANCIAL TABLE\n(ID INT,COMPANY_ID INT,INCOME1 INT,INCOME2 INT,COST1 INT,COST2 INT)\nINSERT INTO @FINANCIAL VALUES\n(1,1,200,NULL,NULL,NULL),\n(2,1,NULL,50 ,NULL,NULL),\n(3,1,NULL,NULL, 5,NULL),\n(4,1,NULL,NULL, 3,NULL),\n(5,1,NULL,NULL,NULL,40)\n", "label": 1}, {"text_1": "Slow MySQL query is filling up my disk space", "text_2": "insert into Table2(ID,CODE,cnt)\nselect a.ID, a.CODE,\n (select count(*) from Table1 t1 where a.ID = t1.ID and a.CODE=t1.CODE) as cnt\nfrom temp_ids_codes a\ngroup by a.ID, a.CODE;\n", "label": 1}, {"text_1": "Display the Value of the Median from a Dynamical table", "text_2": "SELECT AVG(tt.Sales) AS Median \nFROM (\n SELECT TOP 1 t1.* FROM \n (SELECT TOP 50 PERCENT FROM @T ORDER BY Sales) t1\n ORDER BY t1.Sales DESC\n UNION\n SELECT TOP 1 t2.* FROM \n (SELECT TOP 50 PERCENT FROM @T ORDER BY Sales DESC) t2\n ORDER BY t2.Sales\n) tt\n", "label": 1}, {"text_1": "How does the HEXTORAW() function work? What is the algorithm?", "text_2": " binary hexadecimal\n 0000 0\n 0001 1\n 0010 2\n 0011 3\n 0100 4\n 0101 5\n 0110 6\n 0111 7\n 1000 8\n 1001 9\n 1010 a \n 1011 b\n 1100 c \n 1101 d \n 1110 e \n 1111 f \n", "label": 1}, {"text_1": "How can I get a result in SQL that shows summary?", "text_2": "SELECT *\nFROM\n(\n SELECT *, ROW_NUMBER()OVER(PARTITION BY Face\n ORDER BY Shap) RN\n FROM tablename\n) AS p\nPIVOT\n(\n COUNT(RN)\n FOR SHAP IN(oblq, rond, sqre)\n) AS p;\n", "label": 1}, {"text_1": "Combining Case Statements in a View", "text_2": "CASE WHEN (is_member('Buyer') = 1 OR is_member('CustomerService') = 1) THEN \n 0 \nELSE \n CASE WHEN [ordertype] = '2' THEN \n [CommissionAmt1] * - 1 \n ELSE \n [CommissionAmt1] \n END\n END\n", "label": 1}, {"text_1": "mysql db records visibility (design and select help)", "text_2": "select id_project, prj_code from projects where global_project='Y'\nUNION\nselect projects.id_project, projects.prj_code \nfrom projects join project_regions on projects.id_project = project_regions.id_project \njoin prjusers on prjusers.id_region = project_regions.id_region\nwhere prjusers.id_prjuser = {$_SESSION['id_prjuser']}\nUNION\nselect projects.id_project, projects.prj_code \nfrom projects join proj_users on projects.id_project = proj_users.id_project\nwhere proj_users.id_prjuser = {$_SESSION['id_prjuser']}\n", "label": 1}, {"text_1": "CakePHP: Multiple Model in Controller Action:add", "text_2": "$hasOne = ['Gallery' => ['foreignKey' => 'project_id']];\n", "label": 1}, {"text_1": "SQL statement to select all rows from previous day", "text_2": "SELECT dateadd(day,datediff(day,0,GETDATE()),0)\n", "label": 1}, {"text_1": "Django: \"Soft\" ForeignField without database integrity checks", "text_2": "from django.db.models.deletion import DO_NOTHING\nfrom django.db.models.fields.related import ForeignKey, ManyToOneRel\n\nclass SoftForeignKey(ForeignKey):\n \"\"\"\n This field behaves like a normal django ForeignKey only without hard database constraints.\n \"\"\"\n def __init__(self, to, to_field=None, rel_class=ManyToOneRel, **kwargs):\n ForeignKey.__init__(self, to, to_field=to_field, rel_class=rel_class, **kwargs)\n self.on_delete = DO_NOTHING\n\n no_db_constraints = True\n", "label": 1}, {"text_1": "How to replace null values with a text during display in sql", "text_2": " select last_name\n , nvl(commision_pct, 'No Commission')\nfrom employees;\n", "label": 1}, {"text_1": "Analytic function ROW_NUMBER() VS ROWNUMBER - Oracle Paging", "text_2": "select * \nfrom\n(\n select rownum rnum, a.*\n from (\n select owner, object_name, object_id\n from large_t\n order by object_id\n ) a\n where rownum <= 30 \n) where rnum > 20;\n", "label": 1}, {"text_1": "How to create a column B that dynamically calculates SHA1 of column A when column A got inserted?", "text_2": "delimiter //\ncreate trigger texthash\nbefore insert on mytext\nfor each row\nbegin\n set new.txt_hash = sha1(lower(new.text));\nend;\n//\ndelimiter ;\n", "label": 1}, {"text_1": "PostgreSQL - Query a table that stores value changes and present output in a periodic format", "text_2": "SELECT DISTINCT x.timestamp, last_value(x.value) OVER (PARTITION BY x.timestamp)\nFROM (SELECT TO_CHAR(date_trunc('hour', timestamp) + INTERVAL '1 hour', 'HH24:MI') AS timestamp, value \n FROM tbl_test) as x\nORDER BY x.timestamp;\n", "label": 1}, {"text_1": "SQL query to flag rows based on result of second query", "text_2": "OR (t1.start = t2.start AND t1.end = t2.end)\n", "label": 1}, {"text_1": "Search an Oracle database for tables with specific column names?", "text_2": "select owner, table_name\nfrom all_tab_columns\nwhere column_name in ('ID', 'FNAME', 'LNAME', 'ADDRESS')\ngroup by owner, table_name\nhaving count(*) = 4;\n", "label": 1}, {"text_1": "sql server 2008 r2 update max(recent) date in a table", "text_2": ";with T as(\n select *, ROW_NUMBER() over (order by StartTime desc) RNum from Order_Status where OrderID=12\n)\nupdate top(1) T set endTime=@startTime\n", "label": 1}, {"text_1": "For each string, execute a function/procedure", "text_2": "SQL> set serveroutput on\nSQL>\nSQL> declare\n 2 my_array sys.dbms_debug_vc2coll\n 3 := sys.dbms_debug_vc2coll('The', 'Quick', 'brown', 'fox');\n 4 begin\n 5 for r in my_array.first..my_array.last\n 6 loop\n 7 dbms_output.put_line( my_array(r) );\n 8 end loop;\n 9 end;\n 10 /\nThe\nQuick\nbrown\nfox\n\nPL/SQL procedure successfully completed.\n\nSQL>\n", "label": 1}, {"text_1": "Improving OFFSET performance in PostgreSQL", "text_2": "explain select * from sales \n where sales_pos(day) >= 5 and sales_pos(day) < 5+10;\n\n QUERY PLAN \n --------------------------------------------------------------------------\n Index Scan using sales_by_pos on sales (cost=0.50..8.77 rows=1 width=8)\n Index Cond: ((sales_pos(day) >= 5) AND (sales_pos(day) < 15))\n", "label": 1}, {"text_1": "How to write a trigger in PostgreSQL to compare a field to a field in another table", "text_2": "CREATE RULE transactions_insert AS \n ON INSERT TO transactions\n DO UPDATE money \n SET current_balance = current_balance + new.transaction_amount\n WHERE currency_id = new.currency_id;\n", "label": 1}, {"text_1": "How can I cross tab this table", "text_2": "select *\nfrom\n(\n select [Month], value, col\n from\n (\n select DateName(month,[Month]) +'-'+Cast(datepart(year, [month]) as varchar(4)) Month,\n [Affec], [KPI], [Total], [KPI_%], [Out], [rep_in_10], [ftm]\n from yourtable\n ) src\n unpivot\n (\n value\n for col in ([Affec], [KPI], [Total], [KPI_%], [Out], [rep_in_10], [ftm])\n ) unpiv\n) src\npivot\n(\n max(value)\n for month in ([January-2011], [February-2011], [March-2011],\n [April-2011], [January-2012], [February-2012], [March-2012])\n) piv\n", "label": 1}, {"text_1": "sql sub-queries", "text_2": "SELECT name, region, population\nFROM bbc\nWHERE region IN (\n SELECT region\n FROM bbc\n GROUP BY region\n HAVING SUM(CASE WHEN population >= 25000000 THEN 1 ELSE 0 END) = 0\n)\n", "label": 1}, {"text_1": "Delete duplicate records using rownum in sql", "text_2": "Expected Result :\n\n ROWNUM ID NAME\n ---------- ---------- ----------\n 4 1 leo_1\n 5 2 leo_2\n 6 3 leo_3\n", "label": 1}, {"text_1": "How to find percentage in SQL from list of zeros and ones?", "text_2": "select gender, avg(achieved) from ... group by gender\n", "label": 1}, {"text_1": "store arabic in SQL database", "text_2": "col1 col2 col3\n------------------------------ ------------------------------ ------------------------------\n?? ????? ??????? \u0644\u0627 \u0623\u062a\u0643\u0644\u0645 \u0627\u0644\u0639\u0631\u0628\u064a\u0629 \u0644\u0627 \u0623\u062a\u0643\u0644\u0645 \u0627\u0644\u0639\u0631\u0628\u064a\u0629\n", "label": 1}, {"text_1": "Writing SQL query: slightly complicated", "text_2": "select t.[Order]\nfrom Table1 as t\ngroup by t.[Order]\nhaving\n sum(case when [Status] in ('A', 'C') then 1 else 0 end) = count(*)\n", "label": 1}, {"text_1": "MS Access 2003 - Auto fill form-field based on previous form field.", "text_2": "Private Sub useridcombo_AfterUpdate()\n\n[Forms]![yourform]![Usernamecombo].Value = DFirst(\"username\", \"qry_username\")\n[Forms]![yourform]![Firstnamecombo].Value = DFirst(\"Firstname\", \"qry_username\")\n[Forms]![yourform]![Lastnamecombo].Value = DFirst(\"Lastname\", \"qry_username\")\nForms(\"yourform\").[Usernamecombo].Requery 'this last line is optional\n\nEnd sub\n", "label": 1}, {"text_1": "DATEDIFF in HH:MM:SS format", "text_2": ";WITH x AS (SELECT id, StartDateTime, EndDateTime, \n d = DATEDIFF(SECOND, StartDateTime, EndDateTime),\n a = AVG(DATEDIFF(SECOND, StartDateTime, EndDateTime)) OVER()\n FROM @d\n)\nSELECT id, StartDateTime, EndDateTime,\n [delta_HH:MM:SS] = CASE WHEN d >= 3600 THEN \n CONVERT(VARCHAR(5), d/60/60) + ':' ELSE '' END\n + RIGHT('0' + CONVERT(VARCHAR(2), d/60%60), 2)\n + ':' + RIGHT('0' + CONVERT(VARCHAR(2), d % 60), 2),\n [avg_HH:MM:SS] = CASE WHEN a >= 3600 THEN \n CONVERT(VARCHAR(5), a/60/60) + ':' ELSE '' END\n + RIGHT('0' + CONVERT(VARCHAR(2), a/60%60), 2)\n + ':' + RIGHT('0' + CONVERT(VARCHAR(2), a % 60), 2)\nFROM x;\n", "label": 1}, {"text_1": "sql select statement to display distinct combination of two columns", "text_2": "SELECT DISTINCT\n CASE WHEN sender_id > reciever_id THEN reciever_id ELSE sender_id END,\n CASE WHEN sender_id <= reciever_id THEN reciever_id ELSE sender_id END\nFROM\n MyTable;\n", "label": 1}, {"text_1": "SELECT COUNT(*) with an ORDER BY", "text_2": "select count(*) from USER\n", "label": 1}, {"text_1": "Get average interval between pairs of rows in a table", "text_2": "select\n subscription_id,\n coalesce(t2.date, current_timestamp) - t1.date as subscription_length\nfrom\n (\n select *\n from t\n where txn_type = 'subscr_signup'\n ) t1\n left join\n (\n select *\n from t\n where txn_type = 'subscr_eot'\n ) t2 using (subscription_id)\norder by t1.subscription_id\n", "label": 1}, {"text_1": "st_within as a condition of insert", "text_2": "SELECT *\nFROM public.data \nWHERE the_geom NOT IN (\n SELECT d.the_geom \n FROM public.data d, public.exclusion_zone e\n WHERE ST_Within (d.the_geom, e.the_geom)\n);\n", "label": 1}, {"text_1": "Retrieve a result using two column, or only one of them if the other is null", "text_2": "with art as (select artNum, artType from ARTICLE where id = :id)\nselect * from REQUIREDENGINEERS r\nwhere (artNum, artType) in (select artNum, artType from art) or \nnot exists (select null from REQUIREDENGINEERS where (artNum, artType) \n in (select artNum, artType from art)) and\nartType in (select artType from art) and reqEngineer = \n (select max(reqEngineer) from REQUIREDENGINEERS where artType = r.artType);\n", "label": 1}, {"text_1": "Good algorithm for searching DB for a given string", "text_2": "mysql> SELECT * FROM articles WHERE MATCH (title,body)\n AGAINST ('comparison database' IN BOOLEAN MODE);\n\n+----+---------------------+------------------------------------------+\n| id | title | body |\n+----+---------------------+------------------------------------------+\n| 1 | PostgreSQL Tutorial | DBMS stands for DataBase ... |\n| 5 | MySQL vs. YourSQL | In the following database comparison ... |\n+----+---------------------+------------------------------------------+\n", "label": 1}, {"text_1": "Using an alias defined in `FROM` part, instead of a column result sub\u2011query:\u00a0is it possible?", "text_2": "\u2554\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2557\n\u2551 a \u2551 b \u2551\n\u2560\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2563\n\u2551 1 \u2551 0 \u2551\n\u2551 2 \u2551 1 \u2551\n\u2551 3 \u2551 1 \u2551\n\u2551 4 \u2551 0 \u2551\n\u255a\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u255d\n", "label": 1}, {"text_1": "How to generate data in MySQL?", "text_2": "create table `my_table` (\n `id` int (11),\n `created_at` date \n); \ninsert into `my_table` (`id`, `created_at`) values('1','2000-01-01');\ninsert into `my_table` (`id`, `created_at`) values('2','2000-01-01');\ninsert into `my_table` (`id`, `created_at`) values('3','2000-01-01');\ninsert into `my_table` (`id`, `created_at`) values('4','2001-01-01');\ninsert into `my_table` (`id`, `created_at`) values('5','2100-06-06');\n", "label": 1}, {"text_1": "mysql number of people assigned to a task", "text_2": "select tasks.task_id, tasks.title, count(distinct tasks_people.people_id) \nas p_counter\nfrom tasks left join tasks_people\non tasks.task_id = tasks_people.task_id\ngroup by tasks.task_id\n", "label": 1}, {"text_1": "Insert into multiple tables", "text_2": "INSERT INTO CategorySet_Category (CategorySet_Id, Category_Id)\nSELECT\n TT.CategorySet_Id\n ,Category.Id AS Category_Id\nFROM\n @T AS TT\n INNER JOIN Category ON\n Category.AgeDivision_Id = TT.AgeDivision_Id AND\n Category.Gender = TT.Gender AND\n Category.BeltColor = TT.BeltColor\n;\n", "label": 1}, {"text_1": "Oracle Trigger If statement condition not being met somehow?", "text_2": "IF (ShipAddress IS NULL) then \n RAISE_APPLICATION_ERROR(-20103, 'Shipping Address is empty');\nEND IF;\n", "label": 1}, {"text_1": "MySQL - Order query and display one random row at the top", "text_2": "select t.*\nfrom (select t.*, (@rn := @rn + 1) as seqnum\n from tickets t cross join\n (select @rn := 0) params\n order by vip desc, rand()\n ) t\norder by (seqnum = 1) desc, price asc;\n", "label": 1}, {"text_1": "Insert with Select using predefined data for columns?", "text_2": "insert into B(height, ID, DisplayOrder)\n select A.Height, 1, 0\n from A;\n", "label": 1}, {"text_1": "Find all matches in a varchar2()", "text_2": "SELECT MAX(REGEXP_COUNT(MyVal, '\\[[[:alpha:]][[:digit:]]{1,2}\\]'))\n FROM Regex_Test\n\nMAX(REGEXP_COUNT(My...\n----------------------\n 6\n", "label": 1}, {"text_1": "MySQL: optimizing a JOIN query", "text_2": "1, 'PRIMARY', '<derived2>', 'ALL', '', '', '', '', 8192, 100.00, 'Using where'\n5, 'DEPENDENT SUBQUERY', 'be', 'ref', 'PRIMARY,ux_small_b_2_1', 'PRIMARY', '4', 'const', 1, 100.00, 'Using index'\n5, 'DEPENDENT SUBQUERY', 'ae', 'eq_ref', 'PRIMARY,ix_big_1_2', 'PRIMARY', '12', 'a.id_a,test.be.id1,test.be.id2', 1, 100.00, 'Using index'\n4, 'DEPENDENT SUBQUERY', 'b2', 'ref', 'ux_small_b_2_1', 'ux_small_b_2_1', '8', 'const,func', 1, 100.00, 'Using index'\n3, 'DEPENDENT SUBQUERY', 'b1', 'ref', 'PRIMARY', 'PRIMARY', '8', 'const,func', 1, 100.00, 'Using index'\n2, 'DERIVED', 'ad', 'range', '', 'PRIMARY', '4', '', 10, 100.00, 'Using index for group-by'\n", "label": 1}, {"text_1": "Can a foreign key refer to the primary key of its own table?", "text_2": "CREATE TABLE laya2 (\n id INT NOT NULL PRIMARY KEY,\n f_name VARCHAR(20),\n l_name VARCHAR(20),\n supv_id INT,\n INDEX supv_id_idx (supv_id),\n FOREIGN KEY (supv_id)\n REFERENCES laya2(id) \n ON DELETE SET NULL -- example for an action\n) ENGINE=INNODB;\n", "label": 1}, {"text_1": "Query to return sum of two columns", "text_2": "SELECT (case when at_salesbill.id is NULL then 'total' else '' end),\n sum(at_salesbill.`billedTotal`+at_salesbill.`billedTotalTax`) as grantTotal,\n at_salesbill.`billedTotal` AS at_salesbill_billedTotal,\n at_salesbill.`billedTotalTax` AS billedTotalTax,\nfrom at_salesbill\nwhere at_salesbill.`billGuid` = 44\ngroup by at_salesbill.id with rollup;\n", "label": 1}, {"text_1": "Filter rows according to a string match, when i am unsure of specific column", "text_2": "SHOW COLUMNS FROM yourtable;\n", "label": 1}, {"text_1": "How to copy columns data to another table with common column data exist on the both tables?", "text_2": "UPDATE table2 a join\n table1 b\n on a.ID = b.ID\n SET a.col1 = b.col1,\n a.col2 = b.col2,\n a.col3 = a.col3 + b.col1,\n a.col4 = a.col4 + b.col2;\n", "label": 1}, {"text_1": "SQL select from 2 tables where 2 condition", "text_2": "SELECT * \nFROM Table1 \nWHERE column2 = 1 \nunion all\nSELECT * \nFROM Table2 \nWHERE column22= 1;\n", "label": 1}, {"text_1": "Yii Many To Many To Many?", "text_2": "self::MANY_MANY, 'Url', 'category_url(category_id, url_id)'\n", "label": 1}, {"text_1": "Elegant way to SELECT a column based upon a variable / query result?", "text_2": "SET @sql = \n 'SELECT ' + dbo.udf_GetColName('Val1', ColumnFromThisTable, etc) +\n ' AS myCol FROM tbl_ThisTable WHERE ... '\n", "label": 1}, {"text_1": "Group By and HAVING along with Distinct", "text_2": "select a.item \nfrom ItemDetails as a \nwhere a.item not in (\n select b.item \n from ItemDetails as b \n group by b.Item, b.VendorId\n having count(*) = 1\n)\n", "label": 1}, {"text_1": "How to display field from database into Shipping Transaction Form", "text_2": "declare\n cursor c_lot is\n select supplier_lot_number\n from mtl_lot_number\n where lot = :your_block.lot;\nbegin\n open c_lot;\n fetch c_lot into :your_block.supplier_lot_number;\n close c_lot;\nend;\n", "label": 1}, {"text_1": "SQL Server: How do I return all columns where one is not repeated?", "text_2": "select distinct on(id)\n *\nfrom tbl\norder by id\n , someColumnHere -- Choose ASC for first row, DESC for last row\n", "label": 1}, {"text_1": "how do i search an address form a group of columns from a table (zip,state,country)?", "text_2": "WHERE MATCH (zip,state,country) AGAINST ('address_part_one')\n OR MATCH (zip,state,country) AGAINST ('address_part_two')\n...\n", "label": 1}, {"text_1": "Select all where date in Last month sql", "text_2": "select * from table \nwhere date >=dateadd(m, datediff(m, 0, current_timestamp)-1, 0) \nand date < dateadd(m, datediff(m, 0, current_timestamp)-1, 0)\n", "label": 1}, {"text_1": "SQL Server data display", "text_2": "SELECT CONVERT(VARCHAR(30),dateField, 112) + \n REPLACE(CONVERT(VARCHAR(30),dateField, 108), ':', '')\nFROM TableName\n", "label": 1}, {"text_1": "Saving the result of a SQL query into a local SQL variable", "text_2": "EXEC SP_EXECUTESQL @MySelect\n", "label": 1}, {"text_1": "SQL WHERE (conditions) AND (condition1 OR condition2) doesn't work", "text_2": "Select * FROM table1 \nWHERE table1.user = $user \nAND (condition1 <> 1 OR condition2 <> 1 \n OR condition1 IS NULL OR condition2 IS NULL)\n", "label": 1}, {"text_1": "How to use cascade? mine is not working", "text_2": "SHOW CREATE TABLE c1\n", "label": 1}, {"text_1": "Any way to achieve fulltext-like search on InnoDB", "text_2": "create table users (...) engine=innodb;\n\ncreate table forums (...) engine=innodb;\n\ncreate table threads\n(\nforum_id smallint unsigned not null,\nthread_id int unsigned not null default 0,\nuser_id int unsigned not null,\nsubject varchar(255) not null, -- gonna want to search this... !!\ncreated_date datetime not null,\nnext_reply_id int unsigned not null default 0,\nview_count int unsigned not null default 0,\nprimary key (forum_id, thread_id) -- composite clustered PK index\n)\nengine=innodb;\n", "label": 1}, {"text_1": "get amount between range", "text_2": "select meters1.date as date1, meters2.date as date2, meters1.meter as start,\n meters2.meter as end, (meters2.meter - meters1.meter) as amount\n from meters meters1, meters meters2 having date1 < date2 order by date1;\n", "label": 1}, {"text_1": "Get all rows with a matching field in a different row in the same table", "text_2": "select * from your_table\nwhere userID in\n(\n select userID\n from your_table\n where website in ('website.com', 'foo.com')\n group by userID\n having count(distinct website) = 2\n)\n", "label": 1}, {"text_1": "DBMS - Cleaning dataset", "text_2": "sed -i 's/\\\\\\t//g' titles.csv\n", "label": 1}, {"text_1": "Can you use oracle table spaces like variable", "text_2": "create synonym not_my_emp for user_b.emp\n/\n", "label": 1}, {"text_1": "Oracle Select Where Date Between Today", "text_2": "Select * From Customer_Rooms CuRo\n Where CuRo.Date_Enter >= trunc(sysdate);\n", "label": 1}, {"text_1": "How to select values from two tables that are not contained in the map table?", "text_2": "SELECT *\nFROM (\n SELECT c.*, p.id AS Unowned,\n ROW_NUMBER() OVER (PARTITION BY p.id ORDER BY c.id) AS rn\n FROM Customers c\n CROSS JOIN\n Products p\n LEFT JOIN \n CustomerProducts cp\n ON cp.customer = c.id\n AND cp.product = p.id\n WHERE cp.customer IS NULL\n ) cpo\nWHERE rn = 1\n", "label": 1}, {"text_1": "MYSQL NOT IN query using DISTINCT()", "text_2": "SELECT DISTINCT p.modelnum\n FROM PREDS p\n WHERE NOT EXISTS (SELECT NULL\n FROM STATS s\n WHERE s.modelnum = p.modelnum)\n", "label": 1}, {"text_1": "Compiler Cost of searching wild char '%%' in like clause", "text_2": "Invoke first with name parameter (Scan count 1, logical reads 7)\nEXEC sp_executesql N'\nSELECT myTable.*\nFROM myTable\nWHERE \nIsDELETED = 0 \nAND STRNAME LIKE CASE WHEN (RTRIM(LTRIM(@STRNAME))) <> '''' THEN \n''%''+ @STRNAME + ''%'' ELSE ''%%'' END \nAND STRCODE LIKE CASE WHEN (RTRIM(LTRIM(@STRCODE)) <> '''') THEN \n''%'' + @STRCODE + ''%'' ELSE ''%%'' END \n', \nN'@STRNAME NVARCHAR(100),\n@STRCODE NVARCHAR(100)\n', @STRNAME = '(rpc)', @STRCODE=''\n", "label": 1}, {"text_1": "Oracle update statement - how do you link to related tables?", "text_2": "UPDATE (SELECT t.col1, o.col2 FROM MyTable t JOIN OtherTable o ON t.otherID = o.ID)\n SET col1 = col2\n", "label": 1}, {"text_1": "MS Access 2003 - Auto fill form-field based on previous form field.", "text_2": "SELECT [User].username FROM User WHERE ((([User].userid) Like '*' & [Forms]![Yourform]![useridcombo] & '*'));\n", "label": 1}, {"text_1": "Rebuild Informatica persistent cache only when data is updated in the table", "text_2": " select * \n from run_history\n where process_name='EMP_DIM'\n\n+--------------+----------------------+\n| PROCESS_NAME | LAST_READ_TIME |\n+--------------+----------------------+\n| EMP_DIM | 15-MAY-2016 12:00:07 |\n+--------------+----------------------+\n", "label": 1}, {"text_1": "check which names have the same field in a database", "text_2": "Names Time\nRichard,Luigi 8:00\n. . .\n", "label": 1}, {"text_1": "One-to-many relation database design", "text_2": "Students [ id | name | etc..]\nCourses [ id | name | etc.. ]\nStudents in Courses [ id | student_id | course_id ]\n", "label": 1}, {"text_1": "\u041c\u0443SQL Get a list of dates in month, year", "text_2": "CREATE TABLE `date_table` (\n `ID` bigint(20) NOT NULL AUTO_INCREMENT,\n `date` date NOT NULL,\n PRIMARY KEY (`ID`)\n) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=latin1;\n", "label": 1}, {"text_1": "Is Oracle's EXTRACT function breaking the NOENTITYESCAPING in the XMLELEMENT?", "text_2": "RES \n--------------------\n1-> \n2-> \n3-> \n4-> \n5-> \n", "label": 1}, {"text_1": "How to generate a range of dates in SQL Server", "text_2": ";WITH natural AS \n(\n SELECT ROW_NUMBER() OVER (ORDER BY [object_id]) - 1 AS val \n FROM sys.all_objects\n) \nSELECT t.Member, d = DATEADD(DAY, natural.val, t.RegistrationDate) \n FROM @t AS t INNER JOIN natural \n ON natural.val <= DATEDIFF(DAY, t.RegistrationDate, t.CheckoutDate);\n", "label": 1}, {"text_1": "Employee that has a higher salary than the AVERAGE of his department - optimized", "text_2": "SELECT TOP 1 WITH TIES *\nFROM employee\nORDER BY CASE\n WHEN employee_salary >= AVG(employee_salary)\n OVER (\n PARTITION BY Department_ID) THEN 0\n ELSE 1\n END \n", "label": 1}, {"text_1": "SQL : If condition in where clause", "text_2": "select b.* from tableB b, tableA A\nWhere b.id = a.id\n", "label": 1}, {"text_1": "Layer-Design: where to check permissions for database reads/updates?", "text_2": "case class UserId(id: Int)\ndef findCalById(id: Int)(implicit user: UserId): Future[Try[Option[Calendar]]] = ???\n", "label": 1}, {"text_1": "SQL Server 2012 AFTER INSERT trigger that replaces null value with current date", "text_2": "UPDATE Products\nSET DateAdded = GETDATE()\nWHERE DateAdded IS NULL OR\n DateAdded IN (SELECT DateAdded FROM inserted);\n", "label": 1}, {"text_1": "MySQL Percentage of 2 columns not working =NULL", "text_2": "SUM('Y2') / SUM('Y1')* 100 AS Diff\n", "label": 1}, {"text_1": "SQL: Joining two tables with email adresses in SQL Server", "text_2": "SELECT\n ContactPerson.PersonID, \n Customer.CustomerID, \n COALESCE(ContactPerson.FirstName, Customer.FirstName) AS FirstName,\n COALESCE(ContactPerson.LastName, Customer.LastName) AS LastName,\n COALESCE(ContactPerson.Email, Customer.Email) AS Email,\n Customer.ZipCode\nFROM Customer\nLEFT JOIN ContactPerson\n ON ContactPerson.CustomerID = Customer.CustomerID\nWHERE COALESCE(ContactPerson.Email, Customer.Email) IS NOT NULL\n", "label": 1}, {"text_1": "MySQL Query ORDER BY with modulus", "text_2": "SELECT ID, NAME, ID %2, ID %3 FROM TBL_USER ORDER BY ID % 2, ID % 3\n", "label": 1}, {"text_1": "Str_to_date in Load File leads to NULL value", "text_2": "%m Month, numeric (00..12)\n%d Day of the month, numeric (00..31)\n", "label": 1}, {"text_1": "adding month to EndDate as constraint in Oracle SQL", "text_2": "INSERT INTO\n PROJECT\nVALUES\n ( 1,\n 'asb',\n 2,\n SYSDATE,\n SYSDATE\n + 60 );\n--ORA-02290: check constraint (PROJECT_ENDDATE) violated\n\nINSERT INTO\n PROJECT\nVALUES\n ( 1,\n 'asb',\n 2,\n SYSDATE,\n SYSDATE\n + 62 );\n--ORA-02290: check constraint (PROJECT_ENDDATE) violated\n\nINSERT INTO\n PROJECT\nVALUES\n ( 1,\n 'asb',\n 2,\n SYSDATE,\n SYSDATE\n + 61 ); \n-- 1 row inserted\n", "label": 1}, {"text_1": "4:**Count/sum rows in multiple related tables", "text_2": "nvl(a_agg.SUM_AMOUNT, 0),\nnvl(b_agg.SUM_AMOUNT, 0),\n", "label": 1}, {"text_1": "Count occurrences of row couples", "text_2": "SELECT y.EventPersonName\nFROM (\n SELECT x.EventPersonName, \n EventWithSign = CASE WHEN x.EventName = 'start' THEN +1 WHEN x.EventName = 'end' THEN -1 ELSE 1/0 END\n FROM @Events x\n) y\nGROUP BY y.EventPersonName\nHAVING SUM(y.EventWithSign) = 0\n", "label": 1}, {"text_1": "SQL statement to determine rating of a row/record based on comparison performed among columns?", "text_2": "video_clip_name rating\n--------------- ------\nvideo a good\nvideo b so_so\nvideo c bad\nvideo d bad\nvideo e so_so\nvideo f good\nvideo g bad\n", "label": 1}, {"text_1": "Problem with count in SQL query", "text_2": "SELECT DISTINCT \n a.AssignedEmp, \n COUNT( a.TipoStatus ) AS 'Service Request Count'\n FROM Service AS a\n JOIN employee AS b ON a.AssignedEmp = b.UserName\n WHERE b.Classification_ClassificationID = 2 \n AND (a.TipoStatus = 'Open'\n OR a.TipoStatus = 'Pending'\n OR a.TipoStatus = 'Hold'\n OR a.TipoStatus = 'Warranty')\n GROUP BY a.AssignedEmp\n LIMIT 0, 30\n", "label": 1}, {"text_1": "Creating Oracle Wallet from existing PKCS#12 keystore", "text_2": "SQLPlus: EXEC DBMS_NETWORK_ACL_ADMIN.ASSIGN_WALLET_ACL('[acl_file.xml]','file:/path/to/wallet');\n", "label": 1}, {"text_1": "MySQL - count how many rows in next 5 seconds for each record", "text_2": "select p1.ApplyID\n, p1.ApplyDate,\n, count(*)\nfrom tb p1\njoin tb p2\non p2.ApplyDate between p1.ApplyDate and p1.ApplyDate + interval 5 second\ngroup by\n p1.ApplyID\n, p1.ApplyDate\norder by\n p1.ApplyDate\n", "label": 1}, {"text_1": "mysql how to update a column of every row with a given set of values", "text_2": "update table t\n set code = (case when id = 1 then 'code-1'\n when id = 2 then 'code-2'\n when id = 3 then 'code-3'\n end)\n where id in (1, 2, 3);\n", "label": 1}, {"text_1": "SQL Server trigger update column from another table", "text_2": "CREATE TRIGGER teg_priorityTrigger ON dbo.teg_priority AFTER INSERT\n AS\n UPDATE inserted\n set inserted.UCIDN = (select UCIDN from custalign \n where inserted.CIDN = custalign.CIDN)\n", "label": 1}, {"text_1": "Why can't I insert 10 digits when my column is INT(10)", "text_2": "BIGINT 8 -9223372036854775808 9223372036854775807\n 0 18446744073709551615\n", "label": 1}, {"text_1": "What is wrong with my update statement with a join in Oracle?", "text_2": "SQL> update /*+ bypass_ujvc */\n 2 ( select elt.insurer\n 3 , dtr.header\n 4 from t_element elt\n 5 , t_debtor dtr\n 6 where elt.id_debtor = dtr.id_debtor\n 7 and dtr.header is not null\n 8 )\n 9 set insurer = header\n 10 /\n\n3 rijen zijn bijgewerkt.\n\nSQL> select * from t_element\n 2 /\n\nID_ELEMENT ID_DEBTOR INSURER\n---------- ---------- -----------------\n 1 1 Header 1\n 2 1 Header 1\n 3 2 not to be updated\n 4 2 not to be updated\n 5 3 Header 3\n\n5 rijen zijn geselecteerd.\n", "label": 1}, {"text_1": "How to do partial match with a SELECT IN query?", "text_2": "SELECT COUNT(StockID)\nFROM (\n SELECT DISTINCT '%' + CategoryCode + '%' AS Expr\n FROM tblLookup\n WHERE CategoryID = 'EG'\n ) cats\nJOIN tblStock s\nON s.CategoryCode LIKE cats.Expr\n", "label": 1}, {"text_1": "Odd INNER JOIN syntax and encapsulation", "text_2": "First Query\nSELECT Customer.Name,\n Product.Desc,\n Transaction.Date\nFROM Product\n INNER JOIN Transaction\n ON Transaction.ProductID = Product.ID\n INNER JOIN Customer\n ON Transaction.CustomerID = Customer.ID \n", "label": 1}, {"text_1": "SQL: Where Clause", "text_2": "DECLARE @Start DATE = '2015-03-01',\n @End DATE = '2015-03-31'\n\nSELECT Campaign_id\nFROM Impressions\nWHERE Date BETWEEN @Start AND @End\nGROUP BY Campaign_id\nHAVING COUNT(DISTINCT Date) = 1 + DATEDIFF(DAY, @Start, @End); \n", "label": 1}, {"text_1": "How to reuse a large query without repeating it?", "text_2": "with horrible_query_1 as (\n select .. .. ..\n from .. .. ..\n) ,\nugly_query_2 as (\n select .. .. ..\n .. .. ..\n)\n(select * from horrible_query_1 minus select * from ugly_query_2 ) union all\n(select * from ugly_query_2 minus select * from horrible_query_1)\n", "label": 1}, {"text_1": "Create a table from double delimited string in stored procedure", "text_2": ";with cte (item, col1) as\n(\n select \n cast(left(col1, charindex(',',col1+',')-1) as varchar(50)) item,\n stuff(col1, 1, charindex(',',col1+','), '') col1\n from yourtable\n union all\n select \n cast(left(col1, charindex(',',col1+',')-1) as varchar(50)) item,\n stuff(col1, 1, charindex(',',col1+','), '') col1\n from cte\n where col1 > ''\n),\ns2 (id1, id2) as\n(\n select substring(item, 1, charindex('#', item)-1), \n reverse(substring(reverse(item), 1, charindex('#', reverse(item))-1))\n from cte\n)\nselect id1, id2\nfrom s2\n", "label": 1}, {"text_1": "unique id in more than one table [MySQL]", "text_2": "REPLACE INTO Tickets64 (stub) VALUES ('a');\nSELECT LAST_INSERT_ID();\n", "label": 1}, {"text_1": "sql query (Show unique rows in column)", "text_2": "select field, November, December, January\nfrom\n(\n select field,\n value, month\n from yourtable\n) src\npivot\n(\n sum(value)\n for month in (November, December, January, etc)\n) piv\n", "label": 1}, {"text_1": "select records both ways from same table?", "text_2": "amt, date, pay_period, borrower_phone, borrower_name, lender_phone, lender_name\n100, 2013-04-01, 2013-04-15, 123456789, Borrower01, 345678901, Lender01\n100, 2013-04-01, 2013-04-15, 345678901, Borrower03, 123456789, Lender03\n", "label": 1}, {"text_1": "What to use in SQL instead of a \"Foreach\" loop", "text_2": "INSERT INTO tabl2 (name, id)\n SELECT name, id FROM table1\n", "label": 1}, {"text_1": "Can't get my SQL query to comply with date request", "text_2": "SELECT DISTINCT p.ProductID, p.ProductName, od.Quantity,o.Shipcountry,o.ShippedDate\nFROM Products p \n JOIN [Order Details] od ON p.ProductID=od.ProductID\n JOIN Orders o ON od.OrderID=o.OrderID\nWHERE o.ShippedDate<'1997-01-01'\n AND o.ShipCountry IN ('Spain','Portugal')\nORDER BY p.ProductName ASC\n", "label": 1}, {"text_1": "Index in part of a column in oracle?", "text_2": "SELECT *\n FROM rel\n WHERE substr( rel.object_id1, 1, 3 ) = '001'\n AND substr( rel.object_id2, 1, 3 ) = '002'\n", "label": 1}, {"text_1": "Should I use the inserted table in this trigger to set a default value for a nullable foreign key?", "text_2": "UPDATE Advertisers\nSET Currency_Id=(SELECT TOP 1 Id FROM Currencies WHERE Name='USD')\nWHERE Id in (select Id from inserted)\n", "label": 1}, {"text_1": "Select Only one row per user and date", "text_2": "int cnt = src.Items.GroupBy(item => new {i.User, i.Date}).Count();\n", "label": 1}, {"text_1": "Recursive group structure in MySQL", "text_2": "INSERT INTO Groups (groupid, groupname) VALUES\n(1, 'REALLY cool people'),\n(2, 'slightly cool people'),\n(3, 'cool people');\n\nINSERT INTO SubgroupPaths (supergroup, subgroup, pathlength) VALUES\n(1,1,0), (2,2,0), (3,3,0), -- every group points to itself\n(1,3,1), -- REALLY is parent of cool people\n(2,3,1); -- slightly is also parent of cool people\n", "label": 1}, {"text_1": "split in groups by last 4 characters and show that groups", "text_2": "select alpha, count(*) as total\nfrom (select right(lastname,4) as alpha from orig)\ngroup by alpha\norder by total desc;\n", "label": 1}, {"text_1": "codeigniter check if uri segment exist in database", "text_2": "function does_exist($page_name) {\n\n $this->db->where('name', $page_name); // assuming you have a table with a `name` field\n $query = $this->db->get('pages'); // select from the `pages` table\n return $query->num_rows() > 0; // returns bool\n\n}\n", "label": 1}, {"text_1": "SQL Query on find individuals that age is over 60 as of a specific date", "text_2": "select\n PersonId, FirstName, LastName\nfrom\n Person\nwhere\n Born <= date_sub('2014-12-31' 60 year)\n", "label": 1}, {"text_1": "I need to wrap a result set of xml data with a parent tag", "text_2": "<Colors>\n <Color>Red</Color>\n <Color>Orange</Color>\n <Color>Yellow</Color>\n <Color>Blue</Color>\n <Color>Green</Color>\n <Color>Indigo</Color>\n <Color>Violet</Color>\n</Colors>\n", "label": 1}, {"text_1": "How to Compare two strings using a if in a stored procedure in sql server 2008?", "text_2": "DECLARE @temp VARCHAR(10)\n SET @temp = 'm'\n\nIF @temp = 'm'\n SELECT 'yes'\nELSE\n SELECT 'no'\n", "label": 1}, {"text_1": "Why don't I get any output from my relation table?", "text_2": " Create table enroll AS (Select s.sid AS 'Sid', c.cid AS 'Cid' from courses c inner join students s on c.something = s.something)\n", "label": 1}, {"text_1": "Postgresql: Insert the cartesian product of two or more sets", "text_2": " number | letter\n--------+--------\n 1 | A\n 1 | B\n 1 | C\n 1 | D\n 1 | E\n 2 | A\n 2 | B\n 2 | C\n 2 | D\n 2 | E\n 3 | A\n 3 | B\n 3 | C\n 3 | D\n 3 | E\n 4 | A\n 4 | B\n 4 | C\n 4 | D\n 4 | E\n 5 | A\n 5 | B\n 5 | C\n 5 | D\n 5 | E\n(25 rows)\n", "label": 1}, {"text_1": "MySQL using IF or CASE statement across joined tables", "text_2": "select a.labSamples__yr, max(b.date) as ndate,\n substring_index(group_concat(a.id order by b.date desc)) as maxid\nfrom gtpro a join\n labresults b\n on a.id = b.idgtpro\nwhere (a.labSamples__yr = 2 and b.date >= DATE_SUB(CURDATE(), INTERVAL 6 MONTH)) or\n (a.labSamples__yr = 4 and b.date >= DATE_SUB(CURDATE(), INTERVAL 3 MONTH)) or\n (a.labSamples__yr = 12 and b.date >= DATE_SUB(CURDATE(), INTERVAL 1 MONTH))\ngroup by a.labSamples__yr;\n", "label": 1}, {"text_1": "Hide SQL > statements in the spool file", "text_2": "C:\\>sqlplus scott/tiger @D:\\mahesh-plsql-books\\spool\\spool_test.sql\n", "label": 1}, {"text_1": "SQL: I want to get specific rows using rownum on a where conditioned query", "text_2": "SELECT id \nFROM (\n SELECT id, write_date, ROW_NUMBER() OVER (ORDER BY ID DESC) AS RowNum\n FROM sale_order \n ) AS MyDerivedTable\nWHERE MyDerivedTable.write_date > '\" + deFromDate.Text + \"' and\nMyDerivedTable.write_date < '\" + deToDate.Text + \"' MyDerivedTable.RowNum \nBETWEEN @startRow AND @endRow\n", "label": 1}, {"text_1": "Joining tables with and without concatenated columns", "text_2": "SELECT \n T1.col2\n ,CASE WHEN T2.col1 IS NULL THEN 'No' ELSE 'Yes' END\nFROM T1\n LEFT OUTER JOIN T2 ON ',' + T2.col2 + ',' LIKE '%,' + T1.col1 + ',%' \n AND T1.col3 = T2.col3\n", "label": 1}, {"text_1": "Datatype for storing ip address in SQL Server", "text_2": "SELECT dbo.fnBinaryIPv4('192.65.68.201')\n--should return 0xC04144C9\ngo\n\nSELECT dbo.fnDisplayIPv4( 0xC04144C9 )\n-- should return '192.65.68.201'\ngo\n", "label": 1}, {"text_1": "Select unique record from 2 table", "text_2": "SELECT DISTINCT\n id,name,phonenumber\nFROM\n user\n JOIN class on user.id = class.ID\n", "label": 1}, {"text_1": "Auto Increment in SQL INSERT Query?", "text_2": "Me.CompanyTableAdapter1.AddCompany(txtCompanyName.Text, txtCompanyNotes.Text)\n", "label": 1}, {"text_1": "Using TSQL, how to find words and grouping before and after a given term?", "text_2": "select *\nfrom dbo.fnSplitString('red balloon sky', 'balloon')\n\nred 1 R\n sky 2 L\n", "label": 1}, {"text_1": "SQL \"select where not in subquery\" returns no results", "text_2": "SELECT *\nFROM common\nWHERE NOT EXISTS\n (\n SELECT NULL\n FROM table1 t1\n WHERE t1.common_id = common.common_id\n )\n", "label": 1}, {"text_1": "EXEC Stored Procedure inside another doesn't wait to to finish", "text_2": "INSERT INTO LogInfo (LogValue) VALUES ('starting procedure A')\n...\nINSERT INTO LogInfo (LogValue) VALUES ('Calling procedure B')\n...\n\nINSERT INTO LogInfo (LogValue) VALUES ('ending procedure A')\n", "label": 1}, {"text_1": "Android, sqlite database finding two values in the two columns and the resulting value", "text_2": "String whereClause = LAT_VAL + \"=? AND \" + LONG_VAL + \"=?\";\n", "label": 1}, {"text_1": "Make a new user in SQL developer to create a new database", "text_2": "USER1> select * from TableTest;\n", "label": 1}, {"text_1": "How to populate options of h:selectOneMenu from database?", "text_2": "<h:selectOneMenu value=\"#{bean.user}\" converter=\"omnifaces.SelectItemsConverter\">\n <f:selectItems value=\"#{bean.users}\" var=\"user\" itemValue=\"#{user}\" itemLabel=\"#{user.name}\" />\n</h:selectOneMenu>\n", "label": 1}, {"text_1": "Select directly into hierarchical user type", "text_2": "SELECT parent_item(p.ID, \n p.NAME, \n CAST(COLLECT(child_item(c.id, c.NAME)) AS children_table))\n FROM PARENT p\n INNER JOIN child c ON p.id = c.parent_id\n GROUP BY p.ID, p.NAME\n", "label": 1}, {"text_1": "How to select and update referrer payments in this bitcoin faucet?", "text_2": "UPDATE table SET column = (SELECT other_column) // maybe with a WHERE\n", "label": 1}, {"text_1": "Oracle SQL constraint, name entered must be a member", "text_2": "-- Create foreign key constraints \nalter table TEAM\n add constraint fk_team_player_1 foreign key (PLAYER1)\n references player (MEMBER_ID);\n\nalter table TEAM\n add constraint fk_team_player_2 foreign key (PLAYER2)\n references player (MEMBER_ID);\n", "label": 1}, {"text_1": "Most efficient way to store and display a user's inbox to the user", "text_2": "SELECT *\n FROM message\n WHERE (to = {party1} AND from = {party2})\n OR (to = {party2} AND from = {party1})\n AND messageid BETWEEN 11 AND 20\n ORDER BY messageID \n", "label": 1}, {"text_1": "Rearrange PSQL table", "text_2": " letter | active | fixing | offline \n--------+--------+--------+---------\n A | 3 | | 1\n B | 12 | | 3\n C | 2 | 4 | \n(3 rows)\n", "label": 1}, {"text_1": "Time in Hrs or Hrs and Minutes SQL Server", "text_2": "SELECT DATEPART(HOUR, @yourTime) + (DATEPART(MINUTE, @yourTime) / 60.) AS pHours;\n", "label": 1}, {"text_1": "Old & New Values in SQL", "text_2": "| EMPNAME | OLD_STA_CD | STA_CD | COMMENTS |\n|---------|------------|--------|------------------|\n| AAAAAA | (null) | 1 | One |\n| AAAAAA | 1 | 2 | two |\n| AAAAAA | 2 | 2 | two_Updated |\n| AAAAAA | 2 | 2 | two_UpdatedAgain |\n| AAAAAA | 2 | 3 | Three |\n| AAAAAA | 3 | 4 | Four |\n", "label": 1}, {"text_1": "auditing 50 columns using oracle trigger", "text_2": "if updating then\n for r in v_tab_col_nt.first..v_tab_col_nt.last loop\n if updating(v_tab_col_nt(r)) then\n insert into data_table values(1,'i am updating '||v_tab_col_nt(r));\n end if;\n end loop;\nelse /* inserting */\n for r in v_tab_col_nt.first..v_tab_col_nt.last loop\n insert into data_table values(2,'i am inserting '||v_tab_col_nt(r));\n end loop;\nend if;\n", "label": 1}, {"text_1": "Having partitiion on all distinct values where new value can come", "text_2": "create table shops (\n pk number not null primary key, \n name varchar2(30) not null, \n city varchar2(30) not null)\npartition by list(city)\n(partition shops_paris values ('Paris'),\n partition shops_berlin values ('Berlin'),\n partition shops_london values ('London'),\n partition shops_unknown values (default)\n );\n", "label": 1}, {"text_1": "use array/variable in sql-query", "text_2": "SELECT T2.name,T1.groupName\nFROM Table1 T1 INNER JOIN\nTable1 T2 on T1.groupID=T2.groupId2\nWHERE T2.category=1\n", "label": 1}, {"text_1": "If (SELECT...) = 0 INSERT . in MySql", "text_2": "INSERT IGNORE INTO table(column1, column2, column3) VALUES(@value1, @value2, @value3)\n", "label": 1}, {"text_1": "How do I use Previous function in SSRS", "text_2": "=Previous(Sum(Fields!CurrentMV.Value, \"Detail\"), \"Detail\")\n", "label": 1}, {"text_1": "Math operation in SQL without select?", "text_2": "declare @Value1 int;\nset @Value1 = 1;\ndeclare @Value2 int;\nset @Value2 = 2;\ndeclare @Value3 int;\n\nset @Value3 = @Value1 + @Value2\n", "label": 1}, {"text_1": "Why does Doctrine QueryBuilder destroy my query?", "text_2": "$latestId = $result['userId'];\n", "label": 1}, {"text_1": "How to Model self-referential Entities in SQL", "text_2": "SELECT weakVS.Name \nFROM Element AS el\nJOIN Weakness on el.idElement = Weakness.idElementStrongAgainst\nJOIN Element As weakVS on weakness.idElement = weakVS.idElement\nWHERE el.Name = 'water'\n", "label": 1}, {"text_1": "SQL Inner join on one field when second is null and on second when first is null", "text_2": "select * \n from sizeconditionstable t1\n join specalloytable t2\n on (t1.utc = t2.utc and t1.colnum = t2.colnum) and\n ((t1.c4 = t2.c4) or (t1.c4 is null and t2.c4 is null)) and\n ((t1.c5 = t2.c5) or (t1.c5 is null and t2.c5 is null))\n", "label": 1}, {"text_1": "How do I query for records with multiple values for the last column in a compound GROUP BY clause?", "text_2": "COUNTRY CITY\tDISTRICT\nJapan Tokyo\t2\nJapan Tokyo\t1\nChina Beijing\tZ\nChina Beijing\tY\nChina Beijing\tX\n", "label": 1}, {"text_1": "Why is a group by clause required when rows are limited in where clause?", "text_2": "SELECT Name, Count(Product) as NumOrders\nFROM CustomerOrders\nGROUP BY Name\n", "label": 1}, {"text_1": "primary keys and foreign keys?", "text_2": "pkey | name\n1 | name1\n2 | name2\n", "label": 1}, {"text_1": "Oracle XE, count and display different combinations of rows based on one column", "text_2": "SELECT service,\n COUNT( userid ) AS num_users\nFROM (\n SELECT userid,\n LISTAGG( service ) WITHIN GROUP ( ORDER BY service ) AS service\n FROM some_table\n GROUP BY userid\n)\nGROUP BY service;\n", "label": 1}, {"text_1": "Parse a String Expression into Columns", "text_2": "select nonnum [char],num [repeat] from @t\n", "label": 1}, {"text_1": "Query results based on the current date", "text_2": "SELECT * \nFROM Orders \nWHERE OrderDate = DATE(NOW())\n", "label": 1}, {"text_1": "updating a table from inner query is only using the first value", "text_2": "with toupdate (\n select *,\n row_number() over (partition by [Country] order by newid()) as tempRank,\n count(*) over (partition by [Country]) as tempTotal\n from Users\n )\nupdate toupdate\n set rank = tempRank, total = tempTotal;\n", "label": 1}, {"text_1": "How to split string in based on a certain delimiter in DB2 without creating stored procedure", "text_2": "\u2554\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2566\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2557\n\u2551 Person_Info \u2551 result \u2551\n\u2560\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u256c\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2563\n\u2551 Person_BILL_1234_1511011900 \u2551 1234 \u2551\n\u2551 Person_BOB_88888 \u2551 88888 \u2551\n\u2551 Person_MARIOSAN_10_1511011900 \u2551 10 \u2551\n\u255a\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2569\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u2550\u255d\n", "label": 1}, {"text_1": "Populate database with values from hash", "text_2": "mine.map{|product_to_save| Product.new(product_to_save).save} \n", "label": 1}, {"text_1": "How do I properly design a SQL database so that I can store nodes and connections to other nodes?", "text_2": "item_1_name | item_2_name\n-------------------------\ntest | node_2\ntest | item_4\n", "label": 1}, {"text_1": "Database column encryption postgres", "text_2": "SELECT (value = crypt('PasswordToEncrypt0', value)) AS match FROM test_encrypt;\n", "label": 1}, {"text_1": "How to declare Internal table in MySQL?", "text_2": "create temporary table tmp engine=memory select id, name from foo... ;\n\n-- do more work...\n\nselect * from tmp order by id;\n\ndrop temporary table if exists tmp;\n", "label": 1}, {"text_1": "SQL Injection on Views", "text_2": "SELECT <columns> FROM View WHERE ColumnX = 'Y'\n", "label": 1}, {"text_1": "Escape SQL parameters in shell pipeline", "text_2": "awk '{gsub(\"\\\"\", \"\\\\\\\"\", $6)}\n", "label": 1}, {"text_1": "Query to find gaps in zip4 codes", "text_2": "| ZIP |\n---------\n| 85006 |\n", "label": 1}, {"text_1": "MSSQL dynamic pivot column values to column header", "text_2": "| ID | NAME1 | NAME2 | NAME3 | NAME4 | NAME6 |\n|----|--------|--------|--------|--------|--------|\n| 1 | value | value | value | (null) | (null) |\n| 2 | (null) | value | (null) | value | (null) |\n| 3 | (null) | (null) | (null) | (null) | value |\n", "label": 1}, {"text_1": "Selecting some results of SQL query", "text_2": "SELECT * FROM some_table LIMIT 5;\n", "label": 1}, {"text_1": "Unique hash/index for time interval", "text_2": "{\n resource: 123,\n day: ISODate(\"2015-09-06\"),\n period: 16\n},\n{\n resource: 123,\n day: ISODate(\"2015-09-06\"),\n period: 17\n},\n{\n resource: 123,\n day: ISODate(\"2015-09-06\"),\n period: 18\n},\n", "label": 1}, {"text_1": "ZF Db Append to column", "text_2": "UPDATE `TABLE` SET `column` = `column` + 101 WHERE `foo` = 'bar';\n", "label": 1}, {"text_1": "How are nested set models traversed in MySQL?", "text_2": "{ name: \"TELEVISIONS\", lft: 2, rgt: 9 }\n{ name: \"TUBE\", lft: 3, rgt: 4 }\n{ name: \"LCD\", lft: 5, rgt: 6 }\n{ name: \"PLASMA\", lft: 7, rgt: 8 }\n", "label": 1}, {"text_1": "How do I trace former ids using a recursive query?", "text_2": "with recursive current_ru (reporting_unit, predesessor, depth) as (\n select reporting_unit, predesessor, 1\n from providers\n where predesessor is not null\nunion\n select r.reporting_unit, p.predesessor, depth+ 1\n from providers p\n join current_ru r\n on p.reporting_unit = r.predesessor\n )\nselect *\nfrom current_ru;\n\n reporting_unit | predesessor | depth \n----------------+-------------+-------\n 99BX7 | 99BX6 | 1\n 99BX6 | 99BX5 | 1\n 99BX6 | | 2\n 99BX7 | 99BX5 | 2\n 99BX7 | | 3\n(5 rows)\n", "label": 1}, {"text_1": "Insert in a temporal table the names of another table SQL Server 2008", "text_2": "create table known (sex char(1), age int, weight int, height int)\n", "label": 1}, {"text_1": "Is there a way to insert an auto-incremental primary id with a prefix in mysql database?", "text_2": "DELIMITER $$\nCREATE TRIGGER tg_bi_table1\nBEFORE INSERT ON table1\nFOR EACH ROW\nBEGIN\n INSERT INTO table1_seq() VALUES();\n SET NEW.id = CONCAT('D', LPAD(LAST_INSERT_ID(), 4,'0'));\nEND$$\nDELIMITER ;\n", "label": 1}, {"text_1": "MySQL Query - the Clause `where (varchar)` returns items starting with a number only. Why?", "text_2": "true >= -0.5 > false < 0.5 <= true\n", "label": 1}, {"text_1": "Oracle database table to use as an array to execute other query", "text_2": " DECLARE\n BEGIN\n FOR employee_rec in (select monthly_income\n from employees\n where name = v_name_in)\n LOOP\n update tableB set incom_val = employee_rec.monthly_income where ...;\n END LOOP;\n END;\n", "label": 1}, {"text_1": "How to select latest row by a user_id", "text_2": "SELECT c.*\nFROM content c\n INNER JOIN (SELECT user_id, max(id) as maxid \n FROM content \n GROUP BY user_id) as c1 on c.id = c1.maxid\n", "label": 1}, {"text_1": "Mysql group_concat() re-orders resultset", "text_2": "SELECT Group_id,\n SUBSTRING_INDEX(\n GROUP_CONCAT(lang\n ORDER BY lang = 'EN' DESC, \n lang = 'RU' DESC), \n ',', 1) AS lang,\n SUBSTRING_INDEX(\n GROUP_CONCAT(text\n ORDER BY lang = 'EN' DESC, \n lang = 'RU' DESC), \n ',', 1) AS Text,\n GROUP_CONCAT(lang ORDER BY lang = 'EN' DESC, \n lang = 'RU' DESC) AS available_translations\nFROM translations\nGROUP BY Group_id;\n", "label": 1}, {"text_1": "Techniques/Tricks for Hiding/Abstracting SQL in PL/SQL", "text_2": "select ename\ninto v_ename\nfrom emp\nwhere empno = v_empno;\n", "label": 1}, {"text_1": "MS SQL table hints and locking, parallelism", "text_2": "BEGIN TRANSACTION\n\nSELECT * FROM vT1 \nWHERE [docDate] BETWEEN &DateStart AND &DateEnd \nAND [warehouseID] IN ('w1','w2','w3')\n", "label": 1}, {"text_1": "Convert this SQL Query to NHibernate Criteria Queries", "text_2": "select TOP 1 * from Feeds where DataId = ??? Order By Id desc\n", "label": 1}, {"text_1": "Getting Datetime by Year, Month, Date", "text_2": "declare @Date varchar(20)\nselect @Date = cast(Year('20140530') as varchar) + \ncast(Month('20140530') as varchar) + \ncast(Day('20140530') as varchar)\n\nselect @Date\n", "label": 1}, {"text_1": "Help needed with sql query", "text_2": "update Table1 set col1 = col1 + 15\n", "label": 1}, {"text_1": "Improve JOIN query speed", "text_2": "SELECT DISTINCT tech.uid, listing.EmpNo, listing.FirstName, listing.LastName\nFROM listing INNER JOIN tech ON tech.uid = listing.EmpNo\nORDER BY listing.EmpNo ASC;\n", "label": 1}, {"text_1": "Conversion of INTEGER to DATETIME differs to VB6", "text_2": "?CDbl(#30/12/1899 03:00:01#)\n 0.125011574074074\n", "label": 1}, {"text_1": "Combining Database Entries Using a Key to Produce Table with One Entry per Key", "text_2": "IF OBJECT_ID('NewTable') IS NOT NULL DROP TABLE NewTable\nSELECT ItemID, ItemName, FruitOrVeggie, Color, Price, Weight, Diameter\nINTO NewTable\nFROM \n( \n SELECT t.ItemID, t.ItemName, t.FruitOrVeggie, Color, attributeName, attributeValue\n FROM ItemTable t JOIN ItemAttributesTable at ON t.ItemID = at.ItemID\n JOIN AttributeTypesTable tt ON at.attributeID = tt.attributeID\n) x\nPIVOT\n(\n MAX(attributeValue) FOR attributeName IN ([Price], [Weight], [Diameter])\n ) p\n\nSELECT *\nFROM NewTable\n", "label": 1}, {"text_1": "Most Efficient Way to Process Subquery For First Record", "text_2": "with cte as (\n select\n row_number() over(partition by a.active_id order by b.date asc) as rn1,\n row_number() over(partition by a.active_id order by b.date desc) as rn2,\n a.active_id, b.date, b.city\n from tbl_a as a\n inner join tbl_b as b on b.id = a.id\n)\nselect\n c.active_id,\n c1.date,\n c2.city\nfrom (select distinct active_id from cte) as c\n left outer join cte as c1 on c1.active_id = c.active_id and c1.rn1 = 1\n left outer join cte as c2 on c2.active_id = c.active_id and c2.rn2 = 1\n", "label": 1}, {"text_1": "find max logons in an interval", "text_2": "insert into changelog\nselect changet, sum(cnts), 0\nfrom\n(\nselect start_time as changet, 1 as cnts from testlog\nunion all\nselect end_time as changet, -1 from testlog\n) as q\ngroup by changet;\n", "label": 1}, {"text_1": "Selecting data into a Postgres array", "text_2": "CREATE AGGREGATE array_agg_mult (anyarray) (\n SFUNC = array_cat\n ,STYPE = anyarray\n ,INITCOND = '{}'\n);\n", "label": 1}, {"text_1": "How to get the ROWID from a Progress database", "text_2": "SELECT ROWID, FirstName, LastName FROM customer WHERE cust-num = 123\n", "label": 1}, {"text_1": "Create External Hive Table Pointing to HBase Table", "text_2": "CREATE EXTERNAL TABLE IF NOT EXISTS HISTORY \n(\n ROWKEY STRING,\n ID STRING,\n START_TIME STRING,\n END_TIME STRING,\n VALUE DOUBLE\n)\nROW FORMAT DELIMITED FIELDS TERMINATED BY ','\nSTORED BY 'org.apache.hadoop.hive.hbase.HBaseStorageHandler'\nWITH SERDEPROPERTIES\n(\n \"hbase.columns.mapping\" = \":key,VDS:ID,VDS:START_TIME,VDS:END_TIME,VDS:VALUE\"\n)\nTBLPROPERTIES(\"hbase.table.name\" = \"HISTORY\");\n", "label": 1}, {"text_1": "MySQL GROUP BY doesn't work when migrated to SQL Server 2012", "text_2": "SELECT StyleNr,Customer,Color, SUM(XS+S+M+L+XL+XXL+[1Size]+Custom) as Total \nFROM StockData \nGROUP BY StyleNr,Customer,Color\nORDER BY StyleNr,Customer,Color;\n", "label": 1}, {"text_1": "Create a database with multiple values to one key", "text_2": "exerciseId (int255) | muscleId (int255)\n", "label": 1}, {"text_1": "How to bulk-amend the job step command in ALL sql server agent jobs", "text_2": "UPDATE SJS SET\n Command = REPLACE(Command, 'EmailAddress&TestDomain.Com', '')\nFROM msdb.dbo.SysJobs SJ\nINNER JOIN msdb.dbo.SysJobSteps SJS\n ON SJS.Job_Id = SJ.Job_Id\nWHERE SJ.Originating_server = ..... -- Your server here\n AND SJS.Command LIKE '%EmailAddress@TestDomain.Com%'\n", "label": 1}, {"text_1": "Matching specific one-to-many entries with SQL", "text_2": "WHERE l.code IN ('EN', 'ES', 'FR')\nAND NOT EXISTS (SELECT NULL FROM language where productid = p.productid\n AND code NOT IN ('EN', 'ES', 'FR')\nGROUP BY p.productid, p.name\nHAVING COUNT(*) = 3\n", "label": 1}, {"text_1": "Complex SQL query. At least for me", "text_2": "SELECT IT.InvoiceNumber\n ,IT.DateInvoice\nFROM InvoiceTable InvT\nWHERE EXISTS (SELECT InvF.PatientID\n FROM InvoiceFields InvF\n WHERE InvF.InvoiceNumber = InvT.InvoiceNumber\n AND InvF.PatientID = @PatientID)\n", "label": 1}, {"text_1": "Selecting first and last scores from a list of appointments", "text_2": "PERSONID FIRST_CONTACT FIRST_QUEST_1 FIRST_QUEST_2 LAST_CONTACT LAST_QUEST_1 LAST_QUEST_2\n----------- ------------- ------------- ------------- ------------ ------------ ------------\n1 2015-01-01 10 11 2015-01-21 21 211\n2 2015-01-01 11 24 2015-01-31 12 25\n3 2015-02-01 13 21 2015-03-01 14 28\n4 2015-03-01 15 29 2015-04-01 16 21\n", "label": 1}, {"text_1": "Inline BLOB / BINARY data types in SQL / JDBC", "text_2": "-- Use a blob constructor. This is not needed for VARCHAR FOR BIT DATA types\nINSERT INTO lob_table VALUES (blob(X'01FF'));\n", "label": 1}, {"text_1": "How to implement a bidirectional unique index across multiple columns", "text_2": "CREATE TRIGGER uinsert BEFORE INSERT ON tbl_challenger\n FOR EACH ROW SET NEW.u0 = LEAST(NEW.host,NEW.challenger),\n NEW.u1 = GREATEST(NEW.host,NEW.challenger);\nCREATE TRIGGER uupdate BEFORE UPDATE ON tbl_challenger\n FOR EACH ROW SET NEW.u0 = LEAST(NEW.host,NEW.challenger),\n NEW.u1 = GREATEST(NEW.host,NEW.challenger);\n", "label": 1}, {"text_1": "Ms Access - How to verify the date time format displayed in yyyy/mm/dd HH/MM/SS", "text_2": "SELECT * FROM myTable WHERE myDate Not Like \"####/##/## ##:##:##\"\n", "label": 1}, {"text_1": "Remove duplicate rows from table with join", "text_2": "DELETE city_table \n FROM city_table\n LEFT JOIN \n (SELECT MIN(id) AS IDs FROM city_table\n GROUP BY city,state_id\n )A\n ON city_table.ID = A.IDs\n WHERE A.ids IS NULL;\n", "label": 1}, {"text_1": "Creating table with LIKE or SELECT Clause and CONSTRAINTS behavior?", "text_2": "select * into fk from (select * from pk) as tmp\n", "label": 1}, {"text_1": "Prolog Database Query", "text_2": "datable(F,M) :-\n person(F, _, female, _, _, _, _),\n datable(M, F).\n", "label": 1}, {"text_1": "Query 2 different items within the same field and the same table", "text_2": " JOIN person p\n ON p.entity_id = s.master_id\n", "label": 1}, {"text_1": "Remove 'cross' duplicate result for double cross apply", "text_2": "| Left | Right |\n|------|-------|\n| 5 | ABC |\n| 1 | XYZ |\n| 6 | HXS |\n| 7 | GGH |\n", "label": 1}, {"text_1": "Regex in Oracle SQL", "text_2": "^[A-Z0-9._%+-]+@[A-Z0-9.-]+\\.[A-Z]{2,4}$\n", "label": 1}, {"text_1": "Do not bring a line of tables", "text_2": "SELECT \n p.nodeid, \n p.contentid,\n p.publishdate, \n p.url, \n c.categoryid, \n c.nodeid, \n a.previewimage, \n a.contentid, \n e.title \nFROM \n `node` AS p \n INNER JOIN `nodecategory` AS c ON p.`nodeid` = c.`nodeid` \n INNER JOIN `article` AS a ON p.`contentid` = a.`contentid` \n INNER JOIN `nodeinfo` AS e ON p.`nodeid` = e.`nodeid` \nWHERE c.`categoryid` \n IN (73,74,77,105,71,70,72,76,100,80,79,78,81,108,145,146,82,142,83,97,153) \n AND NOT EXISTS (\n SELECT 1\n FROM \n `nodecategory` AS ic\n WHERE\n p.`nodeid` = ic.`nodeid`\n AND ic.`categoryid` IN (150)\n )\nGROUP BY c.nodeid \nORDER BY p.`publishdate` \nDESC LIMIT 4\n", "label": 1}, {"text_1": "SQL - JOIN if specific column contains data matching two others", "text_2": "select * from table1 left outer join table2 on concat_ws(' ', firstName, lastName) = fullName\n", "label": 1}, {"text_1": "count function per row", "text_2": "SELECT s.id\n , s.name\n , s.company\n , s.association\n , s.is_supercharged\n , s.is_deleted\n FROM sites s\n JOIN ( SELECT d.site AS site_id\n FROM domain d\n GROUP BY d.site\n ) r\n ON r.site_id = s.id\n LEFT\n JOIN ( SELECT a.site AS site_id\n FROM domain a\n WHERE NOT a.is_deleted\n GROUP BY a.site\n ) q\n ON q.site_id = s.id\n WHERE q.site_id IS NULL\n AND NOT s.is_deleted\n ORDER BY s.id\n", "label": 1}, {"text_1": "SQL: How can I check if two values in column A belong to the same group defined in column B?", "text_2": "select u1.user, u1.group, u1.show_groupmembers\nfrom users u1\nwhere u1.group = 'Alpha'\nand exists ( select 1\n from users u2\n where u2.user = 'Peter'\n and u2.show_groupmembers = 'Y'\n and u1.group = u2.group )\n", "label": 1}, {"text_1": "how to replace NULL value during insertion in sql", "text_2": "insert into table values (CPI_id , Weight ,IFNULL(score_100_UB ,100), score_100_LB )\n", "label": 1}, {"text_1": "Update or delete splitted data", "text_2": "UPDATE Customer\n SET Emails = REPLACE(Emails, @to_update, @new_email)\nWHERE CustomerId = 1\n", "label": 1}, {"text_1": "Select from table, name is stored in the field", "text_2": "DECLARE\n TYPE rc_type REF CURSOR;\n rc rc_type;\n table_rec table%ROWTYPE;\nBEGIN\n OPEN rc FOR 'select * from table';\n LOOP\n FETCH rc INTO table_rec;\n EXIT WHEN rc%NOTFOUND;\n -- Process this row, e.g.\n DBMS_OUTPUT.PUT_LINE( 'Name: '||table_rec.name );\n END LOOP;\nEND;\n", "label": 1}, {"text_1": "Oracle VPD column masking, how can I change the default (null) value to XXX", "text_2": "SQL> create view v_tablea\n 2 as\n 3 select id, case when your_sec_col is null then 'xxxxxx' else your_sec_col end your_sec_col\n 4 from TABLEA;\n\nView created.\n", "label": 1}, {"text_1": "Installing Wampserver2.0i on Windows Server 2003 but Oracle Server using port 80", "text_2": "left click wampmanager -> Apache -> Service -> Restart Service\n", "label": 1}, {"text_1": "How to select all records where a field is of a certain value until a record shows up that has a different value?", "text_2": "create table so9091342 (id int primary key auto_increment, column1 int, column2 int);\ninsert into so9091342 (column1, column2) values (124,12),(124,11),(124,10),(124,9),(26,8),(65,7),(65,6),(65,5),(65,4),(23,3),(124,2),(124,1),(124,0);\n", "label": 1}, {"text_1": "SQL: Order first by table.column = 'matchingstring', then order everything else alphabetically?", "text_2": "order by case when book_versions.name = 'paperback' then 0 else 1 end,\n book_versions.name, -- remove this line if other names should not be ordered \n book_versions.isbn \n", "label": 1}, {"text_1": "How to merge mysql database backups", "text_2": "replace into d1.mytable (select * from d2.mytable);\n", "label": 1}, {"text_1": "Prioritize Distinct SQL Query", "text_2": "Year Order\n--------- -----\nSenior 1\nJunion 2\nSophomore 3\nFreshman 4\n", "label": 1}, {"text_1": "Row data from a comma-delimited field used within a select query", "text_2": ";WITH CteDelimitted AS(\n SELECT\n t.ClassID,\n nProdType = CAST(s.Item AS INT)\n FROM Table2 t\n CROSS APPLY dbo.DelimitedSplit8K(t.ExcludedList, ',') s\n),\nCteCross AS(\n SELECT\n t2.ClassID,\n t1.nProdType,\n t1.SprodDesc\n FROM Table1 t1\n CROSS JOIN(\n SELECT DISTINCT ClassID FROM Table2\n )t2\n\n)\nSELECT * \nFROM CteCross c\nWHERE NOT EXISTS(\n SELECT 1\n FROM CteDelimitted\n WHERE\n ClassID = c.ClassID\n AND nProdType = c.nProdType\n)\nORDER BY ClassID, nProdType\n", "label": 1}, {"text_1": "SQL: Check if a column contains any of given values", "text_2": "select userid\nfrom mytable\ngroup by userid\nhaving count(case when ruleid <> 102 then 1 end) = 0\n", "label": 1}, {"text_1": "How to create a stored procedure to find cliques in the table of connections between users", "text_2": "1 1\n1 2\n2 3\n2 4\n3 5\n3 6\n3 7\n3 8\n4 9\n4 10\n4 11\n4 12\n4 13\n5 14\n5 15\n5 16\n5 17\n5 18\n5 19\n5 20\n", "label": 1}, {"text_1": "Update a count (field) safely in SQL", "text_2": "begin transaction\nupdate table \n set counter=counter+1\n where id=@id;\nselect counter\n from table\n where id=@id;\ncommit;\n", "label": 1}, {"text_1": "Group similar values in first column and join its second column value using delimiter in SQL", "text_2": "SELECT t1.Pattern, \n Ids = REPLACE( (SELECT Id AS [data()]\n FROM Table1 t2\n WHERE t2.Pattern = t1.Pattern\n ORDER BY t2.Pattern\n FOR XML PATH('')\n ), ' ', ',')\nFROM Table1 t1\nGROUP BY Pattern;\n", "label": 1}, {"text_1": "ColdFusion 9 - SQL Statement - Boolean Logic", "text_2": " WHERE FE >= SD and FS <= ED\n", "label": 1}, {"text_1": "Get unique pairs from self-join, plus rows without a match", "text_2": "SELECT DISTINCT\n GREATEST (p1.player_id, p2.player_id) AS id1\n , LEAST (p1.player_id, p2.player_id) AS id2\nFROM player_standings p1\nLEFT JOIN player_standings p2 ON p1.wins = p2.wins\n AND p1.player_id <> p2.player_id;\n", "label": 1}, {"text_1": "SQL to group on/off (bit) together to calculate a duration", "text_2": "select case_id, start_time, timer_name, type, value, duration,\n (select top 1 start_time\n from event e2\n where e2.case_id = e.case_id and e2.type = e.type and e2.value = 0 and\n e2.start_time > e.start_time\n order by start_time desc\n ) - start_time as duration\nfrom event e\nWHERE (type IN (1, 2, 3, 25, 26, 27, 28)) AND (defunct = 'N') and value = 1\n", "label": 1}, {"text_1": "oracle sql compare result two subselects", "text_2": "SELECT SELECT DISTINCT H1.ID, H2.ID\n FROM INV_HEAD H1, INV_HEAD H2\n WHERE H1.ID <> H2.ID AND\n (SELECT ART_ID, QUANTITY, PRICE FROM INV_POS WHERE HE_ID = H1.ID) =\n (SELECT ART_ID, QUANTITY, PRICE FROM INV_POS WHERE HE_ID = H2.ID)\n", "label": 1}, {"text_1": "To append all rows from one table to another", "text_2": "SELECT id, partner_registration_date\nFROM partner as tbl1\nUNION ALL\nSELECT id, partner_registration_date\nFROM partner_statistic as tbl2;\n", "label": 1}, {"text_1": "Count particular substring text within column", "text_2": "SELECT fruit_suffix, count(1) as count FROM \n( SELECT \n explode(split(Fruit, '[A-Z]')) as fruit_suffix \n FROM UK.Choices ) X\nWHERE fruit_suffix <> ''\nGROUP BY fruit_suffix\n", "label": 1}, {"text_1": "How to display duplicate items based on the quantity in SQL?", "text_2": "CREATE TABLE #TEMP(ITEM VARCHAR(10),QTY INT) \n\nINSERT INTO #TEMP\nSELECT 'TEA',2\nUNION ALL\nSELECT 'COFFEE',3\n", "label": 1}, {"text_1": "how to sum up the values for custom groups", "text_2": "1 1 175\n1 2 5\n1 3 646\n2 1 12\n2 2 33\n2 3 813\n3 1 256\n3 2 7\n3 3 581\n4 1 81\n4 2 425\n4 3 1735\n5 1 239\n5 2 93\n5 3 2265\n6 1 104\n6 2 437\n6 3 1259\n", "label": 1}, {"text_1": "Multiple Select Subquery Count based on Hour of Day, Would Like to Add Table/Column", "text_2": "where Date(d_date) = '2013-01-07'\n", "label": 1}, {"text_1": "Make one row in result table from two rows in SQLite", "text_2": "select imageid, \n max(case when attributetype = 'color' then attributevalue end) Color,\n max(case when attributetype = 'quality' then attributevalue end) Quality\nfrom imageattribute\ngroup by imageid\n", "label": 1}, {"text_1": "To take out those dept who has no employees assigned to it", "text_2": "SELECT D.DNAME\nFROM DEPT D\nWHERE\n NOT EXISTS (SELECT * FROM EMP E WHERE D.DEPTNO = E.DEPTNO)\n", "label": 1}, {"text_1": "how to get value containing special symbol in where clause", "text_2": "select 'R&D.dept' from dual;\n\nEnter value for d: D\nold 1: select 'R&D.dept' from dual\nnew 1: select 'RDdept' from dual\n\n'RDDEP\n------\nRDdept\n", "label": 1}, {"text_1": "SQL select distinct max issue", "text_2": "select name, surname, group, max(year)\nfrom TheTable\ngroup by name, surname, group\n", "label": 1}, {"text_1": "MySQL: Query entire file but by separate data, grouped by each unique column element", "text_2": "+--------+-------------+--------+---------+\n| PREFIX | PREFIXCOUNT | FIELD2 | AVERAGE |\n+--------+-------------+--------+---------+\n| 11-1 | 2 | Chris | 3.50 |\n| 12-2 | 1 | Chris | 2.00 |\n| 13-3 | 3 | Chris | 3.00 |\n| 11-1 | 2 | Jacob | 3.50 |\n| 12-2 | 1 | Jacob | 3.00 |\n| 13-3 | 3 | Jacob | 3.00 |\n| 11-1 | 2 | Mike | 3.50 |\n+--------+-------------+--------+---------+\n", "label": 1}, {"text_1": "Why is this query not using an index sort?", "text_2": "FROM PUBLIC.A\n /* PUBLIC.A_FK_ID_B: A_FK_ID = 3 */\nWHERE A_FK_ID = 3\nORDER BY 25, 19\n/* index sorted */ \n", "label": 1}, {"text_1": "Selecting Most recent records within a month?", "text_2": "WITH CTE_Group AS \n(\n SELECT EmpId, MAX(TestDate) AS MaxDate\n FROM MyTable\n GROUP BY EmpId\n) \nSELECT m.* \nFROM CTE_Group g\nLEFT JOIN dbo.MyTable m ON g.EmpId = m.EmpId AND g.MaxDate = m.TestDate\n", "label": 1}, {"text_1": "Getting only one row for a given column value", "text_2": "SELECT DISTINCT location_id\n FROM locations\n ORDER BY your_spherical_cosine_law_distance_formula\n LIMIT 1\n", "label": 1}, {"text_1": "Is it possible to move a record from one table to another using a single SQL statement?", "text_2": "DELIMITER $$\n\nDROP TRIGGER IF EXISTS TR_A_DEL_SOURCE_TABLE $$\n\nCREATE TRIGGER TR_A_DEL_SOURCE_TABLE AFTER DELETE ON SOURCE_TABLE FOR EACH ROW BEGIN\n\n INSERT IGNORE INTO TARGET_TABLE(id,val1,val2) VALUES(old.id,old.va1,old.val2);\n\nEND $$\n\nDELIMITER ;\n", "label": 1}, {"text_1": "Wildcard for a column name in the WHERE clause of a SELECT statement?", "text_2": "SELECT column_name FROM information_schema.columns\nWHERE table_schema = 'foo'\n AND table_name = 'bar'\n AND column_name LIKE '%_check'\n", "label": 1}, {"text_1": "Select from a column which is saved in another column", "text_2": "id normal_col_name other_col_name another_col \n-------------------------------------------------------\n1 a b c\n2 d e f \n", "label": 1}, {"text_1": "Using Oracle..Need to compare each row of column having 1 word content with rows of column having paragrahs as row values", "text_2": "select\nword\n,paragraph\nfrom \n(select\n'(\\W|^)' || word || '(\\W|$)' as regexp\n,word\nfrom t1\n) t\njoin t2 on \n (regexp_instr(paragraph, regexp, 1, 1, 0, 'i') > 0)\n;\n", "label": 1}, {"text_1": "Link all query (select and delete) in one", "text_2": "SELECT s.*\nFROM tblIdentifiedThreatenedSpecies s\nINNER JOIN tblAssessmentVersion v\n ON v.AssessmentVersionID = s.AssessmentVersionID\nINNER JOIN tblAssessment a\n ON a.AssessmentID = v.AssessmentID\nWHERE\n a.ProposalID LIKE '%0081/2013/0587B%'\n AND PercentGain = 0\n", "label": 1}, {"text_1": "update table pl/sql", "text_2": "CREATE OR REPLACE PROCEDURE update_sales\n( \n p_customer_id IN sales.customer_id%type,\n p_product_id IN sales.product_id%type,\n p_new_quantity IN sales.quantity%type,\n p_old_quantity OUT sales.quantity%type\n) AS\nBEGIN\n SELECT quantity\n INTO p_old_quantity\n FROM sales\n WHERE customer_id = p_customer_id\n AND product_id = p_product_id\n FOR UPDATE;\n\n UPDATE sales\n SET quantity = p_new_quantity\n WHERE customer_id = p_customer_id\n AND product_id = p_product_id;\nEND;\n/\n", "label": 1}, {"text_1": "SQL Server Function for Maximum Date in Different Fields", "text_2": "SELECT \n a.a_Id,\n a.Name,\n b.b_Id,\n b.Detail,\n c.c_Id,\n c.OtherField,\n ld.LastUpdatedDate,\n ( SELECT MAX(LastUpdated)\n FROM ( SELECT a.LastUpdated UNION ALL\n SELECT a.LastUpdatedFromWeb UNION ALL\n SELECT b.LastUpdated UNION ALL\n SELECT c.LastUpdated\n ) d\n) AS LastUpdated\nFROM \n a INNER JOIN b ON a.a_Id = b.a_Id \n INNER JOIN c ON b.b_Id = c.b_Id;\n", "label": 1}, {"text_1": "Increase Ms Access Insert Performance", "text_2": "\"UPDATE recTable SET SomeBoolean = SomeOtherBoolean WHERE someCriteria\"\n", "label": 1}, {"text_1": "Query performance - Brain teaser", "text_2": " SELECT fieldB FROM Table WHERE fieldA = Value;\n", "label": 1}, {"text_1": "Inner Join with CASE statement is not working in SQL SERVER", "text_2": "Account1 Account2\n50000 50000\n50006 50006\n50015 50015\n50105 50105\n50150 50150\n50155 50155\n50165 50165\n", "label": 1}, {"text_1": "Sub query in check \"not allowed here\"", "text_2": "alter table WORKER add constraint wrk_state_uk unique (worker_id, employing_state) ;\n\nalter table STATION add constraint stn_state_uk unique (station_id, state) ;\n", "label": 1}, {"text_1": "How find Customers who Bought Product A and D > 6 months apart?", "text_2": "select A.CustID, ElapsedDays = datediff(d, A.InvoiceDate, B.InvoiceDate)\nfrom Orders A\ninner join Orders B on B.CustID = A.CustID\n and B.ProdID = 312\n -- more than 6 months ago\n and B.InvoiceDate > dateadd(m,6,A.InvoiceDate)\nwhere A.ProdID = 105\n AND NOT EXISTS (\n SELECT *\n FROM Orders C\n WHERE C.CustID=A.CustID\n AND C.InvoiceDate > A.InvoiceDate\n and C.InvoiceDate < B.InvoiceDate\n and C.ProdID in (105,312))\n", "label": 1}, {"text_1": "Dynamically updating column value in SQL", "text_2": "update U\nset U.column_password = 'password value'\nFROM dbo.SplitIDs(@UserIDs) I\nINNER JOIN user_table U ON I.ID=U.user_id\n", "label": 1}, {"text_1": "order by multiple columns", "text_2": "with grp(Name,ImpFile,TimeGroup,ImpTime) as \n(\n select cast(null as varchar(5)), ImpFile, max(ImpTime) as TimeGroup, \n max(ImpTime) as ImpTime\n from people \n group by ImpFile \n\n union all\n\n select p.Name, p.ImpFile, ldr.TimeGroup, p.ImpTime\n from people p\n inner join grp ldr -- leader\n on ldr.name is null and ldr.ImpFile = p.ImpFile\n)\nselect *\nfrom grp \norder by TimeGroup desc, Name;\n", "label": 1}, {"text_1": "SQL query to retrieve a row with the highest possible ID", "text_2": "SELECT TOP 1 ID, Value\nFROM table\nWHERE Value = 'X'\nORDER BY ID DESC\n", "label": 1}, {"text_1": "Normalizing/optimizing structure of large mysql table", "text_2": "SELECT COUNT(*) FROM all_downloads WHERE (node_id,license_id) = (123,456) \nAND timestamp > NOW() - INTERVAL 30 DAY\n", "label": 1}, {"text_1": "SQL query for selecting the firsts in a series by column", "text_2": "CREATE TABLE Movements (RecID INT NOT NULL, Element INT NOT NULL, Time DATETIME NOT NULL, Room INT NOT NULL);\nINSERT INTO Movements (RecID, Element, Time, Room) VALUES\n(1, 1, '2010-06-01 00:00:00', 1),\n(2, 1, '2010-06-01 01:00:00', 2),\n(3, 1, '2010-06-01 02:00:00', 1),\n(4, 2, '2010-06-01 03:00:00', 1),\n(5, 2, '2010-06-01 04:00:00', 2),\n(6, 1, '2010-06-01 05:00:00', 3),\n(7, 2, '2010-06-01 06:00:00', 2);\n", "label": 1}, {"text_1": "Debug statements in plsql code", "text_2": "PRAGMA INLINE(debug_msg, 'YES'); \n", "label": 1}, {"text_1": "mysql how to order by user defined order/sort by number of items on a field", "text_2": "select name, Category, \n (select count(*) from MyTable mt2 where mt2.Category = mt1.category) CatCount\nfrom MyTable mt1\norder by 3 DESC, name\n", "label": 1}, {"text_1": "Non duplicate records with max date query on oracle", "text_2": "SELECT * FROM (\n SELECT\n a.aa_codart,\n t.tr_fechafac,\n t.tr_tipo,\n ROW_NUMBER() OVER (PARTITION BY a.aa_codart ORDER BY t.tr_fechafac DESC) as rnk\n FROM artalm a\n INNER JOIN trapaso t ON a.aa_codart = t.tr_codart\n WHERE t.tr_tipomov > 1\n AND a.aa_codalm = '1'\n AND t.tr_tipo BETWEEN 1 AND 2\n) WHERE rnk = 1;\n", "label": 1}, {"text_1": "Two aggregate functions in MS ACCess SQL?", "text_2": "SELECT Category, SUM([market Value]) as sum_value\nFROM (\nSELECT Category, [market Value]\nFROM DEC\nUNION ALL \nSELECT Category, [market Value]\nFROM NOV\n) as A\nGROUP BY Category\n", "label": 1}, {"text_1": "Merge 3 structurally identical tables if value in date column exists in all 3", "text_2": "SELECT Table1.dtcol, Table1.intcol + Table2.intcol + Table3.intcol AS intcolsum\n FROM Table1 T1\n INNER JOIN Table2 T2 ON T2.dtcol = T1.dtcol\n INNER JOIN Table3 T2 ON T3.dtcol = T1.dtcol\n", "label": 1}, {"text_1": "Oracle Not exists inside not exists", "text_2": "SELECT *\nFROM big_table big\nWHERE sum_number = 1 AND\n (NOT EXISTS (SELECT 1\n FROM small_table smal\n WHERE other_number = big.other_number\n ) OR\n NOT EXISTS (SELECT 1\n FROM and_another_table another\n WHERE and_another_number = big.and_another_number\n )\n );\n", "label": 1}, {"text_1": "RSQLite: binding sets and scalars in the same select query", "text_2": "dbGetQuery (c, \n \"select * from tst where x = ? and y in (?)\", \n data.frame(x=1, y=c(7,6)))\n", "label": 1}, {"text_1": "Instr - Last index of last character", "text_2": "create table city (input char(64));\n\ninsert into city values('\"City=Amsterdam\"; \"Customer=124\"');\n\ninsert into city values('\"Customer=11\"; \"City=USA\"');\n\ninsert into city values('\"Tel=+00\"; \"City=China\"; \"Customer=1\"');\n\ninsert into city values('\"Tel=+00\"; \"Post=11111\"; \"Customer=333\"; \"City=Canada\"');\n", "label": 1}, {"text_1": "SQL Server Free Text search: search words from a phrase in two tables", "text_2": "create unique clustered index [View_Index] \n on View_FreeTextHelper (PrimaryKey ASC)\n", "label": 1}, {"text_1": "MySQL - Combining multiple queries + counts", "text_2": "Select I.id, I.custname, I.custemail, I.sku\n , DATE_FORMAT(FROM_UNIXTIME(I.ts), '%l:%i:%s %p, %c/%e/%Y') AS ts\n , (\n Select Sum( Case\n When I1.sku = ? Then 1\n When I1.sku In( Select subsku From combo As S1 Where S1.sku = ? ) Then 1\n Else 0\n End ) As Total\n From images As I1\n Where I1.stat = 1\n ) As Total\nFrom images As I\nWhere stat = 0\n", "label": 1}, {"text_1": "MySQL Frequency/Distribution", "text_2": "SELECT COUNT(*) AS LikesPorkChicken\nFROM MyTable t1\n INNER JOIN Mytable t2 ON t1.Email = t2.Email\nWHERE t1.Type ='Pork' \n AND t2.Type = 'Chicken'\n", "label": 1}, {"text_1": "i have a oracle table EMP columns are NAME,AGE,DEPT", "text_2": "Select * from EMP.\n", "label": 1}, {"text_1": "SQL Server 2008 Get Records where Group Count = 1", "text_2": "select UserID\nfrom dbo.tbl_User_Statistics2\ngroup by UserID\nhaving count(*) = 1\norder by UserId;\n", "label": 1}, {"text_1": "SQL aggregation query, grouping by entries in junction table", "text_2": "SELECT \n sum(tableA.val) as sumVal, \n tableC.data \nFROM \n tableA \n inner join tableB ON tableA.id = tableB.fkeyA \n INNER JOIN tableC ON tableB.fkeyC = tableC.id \nGROUP by tableC.data\n", "label": 1}, {"text_1": "How to set up JWT-Auth with Laravel 5", "text_2": "User::create(\n [\n 'name' => 'you', \n 'email' => 'you@you.com', \n 'password' => Hash::make('secret')\n ]\n);\n", "label": 1}, {"text_1": "Slow MySQL SELECT performance", "text_2": "CREATE INDEX mr_ndx ON meter_relevation ( Date, Id_Meter );\n", "label": 1}, {"text_1": "DB2 CASE Statement", "text_2": "update royalties set royalty =\n case when royalty >= 0.16 then royalty * 1.2\n case when royalty >= 0.11 and royalty < 0.16 then royalty * 1.2\n case when royalty < 0.11 then royalty * 1.1\n end;\n", "label": 1}, {"text_1": "MySQL JOIN two tables with different number of rows by id", "text_2": "| COLUMN1 | COLUMN2 |\n---------------------\n| 10 | 23 |\n| 11 | 23 |\n| 21 | 34 |\n| 33 | 99 |\n", "label": 1}, {"text_1": "Including Data from other columns in Aggregate Function Result", "text_2": " SELECT client_ref,MAX(date_opened) last_opened\n FROM YourTable\n GROUP BY client_ref\n", "label": 1}, {"text_1": "MYSQL - Insert result of concat of multiple rows based on ID", "text_2": "CREATE TABLE my_new_table\nSELECT `order_item_id`, group_concat(`customizations` separator ';')\nFROM `ojs_order_ing_export`\nGROUP BY `order_item_id`\n", "label": 1}, {"text_1": "SQL NOT IN explaination", "text_2": "SELECT r.name \nFROM recipes r\nJOIN ingredients_recipes ir \n ON ir.recipe_id = r.id\nWHERE EXISTS ( SELECT *\n FROM ingredients_recipes ex\n WHERE ex.recipe_id = r.recipe_id\n AND ex.ingredient_id IN ( 2 , 3 )\n GROUP BY nx.recipe_id\n HAVING COUNT(*) = 2\n );\n", "label": 1}, {"text_1": "SQL sum and group values from two tables", "text_2": "SELECT seller, SUM(amount) FROM InvoiceRow \nJOIN InvoiceHead \nON InvoiceRow.InvoiceNr = InvoiceHead.InvoiceNr\nGROUP BY InvoiceHead.seller;\n", "label": 1}, {"text_1": "SQL query not returning expected date time range", "text_2": "WHERE DATEADD(HH,-DATEDIFF(Hour,GETDATE(),GETUTCDATE()),Documents.CreationTime) >= '2014-10-01 00:00:00.000' and DATEADD(HH,-DATEDIFF(Hour,GETDATE(),GETUTCDATE()),Documents.CreationTime) <= '2014-10-03 08:00:00.000'\n", "label": 1}, {"text_1": "Summing edges properties for order by in select statement", "text_2": "CREATE CLASS Entity EXTENDS V;\nCREATE CLASS isConnectedTo EXTENDS E;\nCREATE PROPERTY isConnectedTo.strengthOut INTEGER;\nCREATE PROPERTY isConnectedTo.strengthIn INTEGER;\n\nCREATE VERTEX Entity SET name = \"John\";\nCREATE VERTEX Entity SET name = \"Mike\";\nCREATE VERTEX Entity SET name = \"Susan\";\n\nCREATE EDGE isConnectedTo FROM (SELECT FROM Entity WHERE name = \"Mike\") TO (SELECT FROM Entity WHERE name = \"John\") SET strengthOut = 3, strengthIn = 2;\nCREATE EDGE isConnectedTo FROM (SELECT FROM Entity WHERE name = \"Mike\") TO (SELECT FROM Entity WHERE name = \"Susan\") SET strengthOut = 4;\n", "label": 1}, {"text_1": "SQL subqueries to get field's value as a field name on the result", "text_2": "| place_id | location | country | longitude | weather |\n|----------|----------|---------|-----------|---------|\n| 1 | Athens | Greece | 12.3333 | good |\n", "label": 1}, {"text_1": "Creating and using a temporary table to return a specific row, instead of running the query repeatedly", "text_2": "declare @partition int = {0}\n\nIF @partition = 0\nbegin \n truncate table TableCache;\n insert into TableCache (column1, column2, rownumber) \n SELECT column1, column2, \n Row_number() OVER (ORDER BY table1.column1, column2) AS rownumber \n ......;\nend\nselect column1, column2 \n from TableCache \n where rownumber - 1 = @partition; \n", "label": 1}, {"text_1": "How to delete old MediaWiki revisions when deleteOldRevisions run out of memory", "text_2": "DELETE FROM text WHERE NOT EXISTS\n ( SELECT * FROM revision WHERE rev_text_id = old_id )\n", "label": 1}, {"text_1": "Replace column output in a more readable form Oracle - SQL", "text_2": "SELECT payment_type.payment_type_description,\n <<other columns>>\n FROM payment pay\n JOIN payment_type ON (pay.paymentType = payment_type.paymentType)\n", "label": 1}, {"text_1": "Is there a way to change all char(1) columns to number(1) columns in Oracle?", "text_2": "select 'ALTER TABLE '\n || table_name \n || ' RENAME COLUMN '\n || column_name \n || ' TO ' || substr(column_name, 1, length(column_name) - 5) \n || '_CHAR ;'\n from user_tab_columns\n where data_type = 'CHAR'\n and data_length = 1\n", "label": 1}, {"text_1": "ORDER BY alternative values from main- and subquery", "text_2": "SELECT id \nFROM post_table p\nLEFT JOIN (\n SELECT comments_post_id AS id, max(comment_created_date) AS max_date\n FROM comments_table\n GROUP BY 1\n ) c USING (id)\nWHERE post_user_id = $user_id\nORDER BY GREATEST(c.max_date, p.post_created_date) DESC NULLS LAST;\n", "label": 1}, {"text_1": "Is it possible to have 1 query instead of 2 queries for the below mentioned case?", "text_2": "SELECT account, SUM(amount) AS int_total, MAX(date)\nFROM ((SELECT amount, date, account FROM non_cash\n ) UNION ALL\n (SELECT amount, date, account FROM receipts)\n ) v\nWHERE account IN ('00210_int', '00210_pre')\nGROUP BY account;\n", "label": 1}, {"text_1": "Mysql Fetching data", "text_2": "SELECT o.name, l.name FROM offers o\nINNER JOIN locations l ON o.id = l.offer_id\n", "label": 1}, {"text_1": "Getting record with the only document by priority issue", "text_2": "WITH example AS (\n SELECT c.name,\n d.type,\n ROW_NUMBER() OVER (PARTITION BY c.id\n ORDER BY CASE d.type\n WHEN 2 THEN 1\n WHEN 3 THEN 2\n WHEN 1 THEN 3\n ELSE 4\n END) AS rnk \n FROM CONTACTS c\n JOIN DOCUMENTS d ON d.contactid = c.id)\nSELECT e.name, e.type\n FROM example e\n WHERE e.rnk = 1\n", "label": 1}, {"text_1": "does this table fit for the 2NF?", "text_2": "coursenumber name credit\n\n1 math 5\n2 computer 4\n", "label": 1}, {"text_1": "Change Value on SQL View", "text_2": "SELECT \nID, \nmyDate, \nIIF(myTime='00:00:00', '24:00:00', myTime) as myTime \nFROM MyTable WHERE myDate = '2014-06-01'\n", "label": 1}, {"text_1": "Joining tables with set data", "text_2": "garment_id garment_name garment_type size_chart available_sizes\n0 Boating Jacket jacket 0 8,10,12 \n1 Polka Dot Skirt skirt 1 10,12\n", "label": 1}, {"text_1": "Select from list of values received from a subquery, possibly null", "text_2": "SELECT tt.id\nFROM thetable tt\nWHERE EXISTS (\n SELECT * FROM thetable ex\n WHERE (ex.column1 = tt.column1 \n OR (ex.column1 IS NULL AND tt.column1 IS NULL)\n )\n AND ex.id <> tt.id\n);\n", "label": 1}, {"text_1": "JOIN 2 select queries FROM ONE TABLE", "text_2": "create table journal\n(\n date datetime,\n account int,\n amount money,\n type varchar(1)\n)\n\ninsert into journal values ('05/31/12', 20001, 300, 'D')\ninsert into journal values ('05/31/12', 20002, 700, 'C')\ninsert into journal values ('05/31/12', 20003, 600, 'D')\ninsert into journal values ('05/31/12', 20004, 900, 'C')\n\nselect date\n , account\n , isnull([D], 0) as D\n , isnull([C], 0) as C\nfrom \n(\n select *\n from journal\n) x\npivot\n(\n sum(amount)\n for type in ([D], [C])\n) p\n\ndrop table journal\n", "label": 1}]
This file has been truncated, but you can view the full file.
{"Optimizing join in vertica":[-0.02409645,0.006862465,-0.002477916,-0.0034878303,-0.02814318,0.030421237,-0.020813785,-0.020261958,-0.006593626,-0.03925047,0.006823554,0.014913481,0.025667034,-0.016710456,0.0043120333,0.0011858976,0.02021951,-0.012451483,0.039590057,-0.024733173,-0.0037495943,0.003940611,0.005458136,-0.017460374,-0.007937821,0.01313773,0.014559746,-0.005981664,0.013498539,0.0037885052,0.018097099,0.010314922,-0.015267216,-0.01709249,-0.029940156,-0.016540663,0.00915467,-0.0010912734,0.03107211,0.010456416,0.008418901,-0.031638086,0.0006738658,-0.026105667,0.0016519439,0.055975076,0.004368631,0.003834491,-0.028482767,-0.01180061,0.020771338,0.023219187,-0.031383395,0.016950997,0.009812618,0.0073152464,0.027874343,0.017276432,-0.029685467,-0.010123905,0.022440968,-0.01058376,-0.011482248,-0.0009656974,-0.035316933,-0.0008520599,-0.00963575,0.009402284,0.013788602,0.01922905,0.020870384,0.029996755,-0.009621601,0.019625235,0.0014688859,-0.024832219,-0.0078387745,0.014241383,0.0036611606,0.0044818264,0.00042647214,-0.009720647,-0.014135263,-0.00902025,0.019724282,0.005298955,-0.010902123,0.014531447,-0.011531771,-0.013342896,0.008334004,0.0069190627,0.009473031,-0.008984877,-0.0058967676,0.011057766,-0.021860842,-0.0041599274,-0.014658791,0.0013114737,-0.017163238,0.010604985,-0.040523916,0.005617317,-0.03056273,-0.0017633706,-0.0062045176,0.00012225976,0.010406893,0.01300331,-0.013774453,0.019073408,-0.011708639,-0.0012433797,-0.0053237164,-0.0137461545,0.013739079,0.019851625,-0.011248783,-0.0014370497,0.022370221,0.020559097,0.02671409,-0.01688025,0.014630493,0.025171805,-0.007845849,-0.030817421,-0.014757837,-0.022285325,0.03707146,0.03596781,0.017389627,-0.022073083,-0.020318557,0.014007919,-0.020162912,-0.020261958,-0.019299798,-0.000049025504,0.008093464,0.015493606,-0.0076194587,-0.030053353,-0.022808854,-0.00006002446,-0.012352437,0.0055713314,-0.0014273219,-0.008758486,0.018677225,-0.033788797,0.009232491,0.0027361426,-0.0051963716,-0.0024902965,-0.010413968,0.011857208,-0.013986695,-0.020842085,-0.0036187123,-0.017149087,0.013540988,-0.0032738203,0.021082625,0.02310599,-0.028468618,-0.015267216,0.01180061,-0.013852275,0.008772636,0.03200597,-0.022200428,0.010661582,0.005352015,-0.009847991,0.019370547,0.0051751477,-0.0036929967,-0.013258,0.014885182,0.0027131499,0.001613033,0.0011752855,0.0023328844,-0.0022462192,-0.0008958347,0.002729068,-0.0105908355,-0.026303757,-0.001123994,0.016059583,-0.02814318,-0.019596936,-0.6117074,-0.022540014,0.010831376,-0.028468618,0.043466996,0.010689881,0.028355423,-0.009649899,-0.015451158,-0.0013654183,-0.0026883883,0.027181022,-0.010930421,-0.014913481,-0.015139871,-0.014743688,0.016186928,-0.021860842,0.01564925,0.022129681,-0.024520932,-0.0054545985,0.005100863,0.013979619,0.021323165,-0.012090673,0.032458752,-0.035543323,-0.017531121,0.022115532,-0.010675732,0.017771661,-0.0136046605,-0.014481924,0.040580515,0.0034489194,-0.025780229,0.0126778735,0.0019066334,0.04550451,-0.03036464,-0.005797722,0.034269877,0.011036541,-0.018252742,0.005475823,0.024492633,0.00075124536,-0.009147596,-0.02477562,0.006650224,-0.015606802,-0.005150386,0.0071454532,0.01312358,-0.017715065,0.029091192,-0.0033622542,0.017276432,-0.022497566,-0.0048815473,-0.015705848,-0.0027555982,-0.023799311,-0.009069773,-0.020842085,0.017743364,-0.0026070292,0.01011683,-0.024181345,0.0013680713,0.0018111249,0.0035904134,-0.0051928344,0.02409645,0.005868469,0.023445576,-0.010548387,-0.02286545,0.023629518,0.0066749854,-0.015408711,-0.04476874,0.0030881092,-0.0067563443,-0.012904264,-0.02985526,0.0001976496,0.01755942,0.010194652,0.013526838,0.02838372,-0.012592977,-0.032826636,0.0008750527,0.012953787,0.012861816,0.023417277,0.03492075,-0.02238437,-0.027209321,-0.03299643,-0.006491043,0.023714416,0.018422535,0.012861816,-0.014856883,-0.028808204,0.019384695,-0.010222951,-0.000108497254,-0.027633803,-0.011241708,-0.01407159,-0.008157136,-0.031751283,0.03107211,-0.026317907,-0.0385147,-0.01107899,0.024506783,0.0022214577,0.0288931,-0.009600377,-0.009388135,-0.006660836,0.0122038685,0.00092943956,-0.0017616019,-0.009388135,-0.001790785,0.012210943,0.02477562,-0.009112221,-0.008376452,-0.018606478,-0.005337866,0.032600246,-0.0033817096,-0.007654832,0.0040962547,-0.010244175,0.007223275,-0.01760187,-0.0240823,-0.04861738,-0.020842085,0.019865775,-0.031694684,0.0018341176,-0.015394561,-0.016540663,-0.045617707,-0.011892581,-0.0077680275,-0.0024956027,0.03585461,-0.031751283,-0.020912832,-0.042787824,0.02145051,0.005475823,-0.00026707017,-0.017516972,0.008864607,-0.027138574,-0.0057694227,-0.009982411,-0.0056562275,-0.009840917,0.02937418,-0.016568962,0.018181995,0.00096216006,-0.028709158,0.013753229,-0.016526515,-0.017757513,0.020629844,0.01204115,-0.0013441942,0.02024781,-0.025921723,-0.01071818,0.014368729,0.0092395665,0.008716038,0.040042836,-0.018663075,0.02095528,-0.0046763807,0.019851625,-0.0143616535,-0.0036010256,0.026374504,-0.0025398196,-0.013611735,0.017035892,-0.00043730528,0.015366262,0.024237944,0.0018111249,-0.019172454,-0.011857208,0.024039852,0.012833517,0.0032225286,-0.026402803,0.010788927,-0.00059515965,0.011666191,-0.027294217,-0.0042342115,-0.0031818491,0.029006295,0.018125398,-0.020785486,0.019130006,-0.012550529,0.008348153,-0.0004328836,-0.02432284,0.04193886,0.021719348,-0.015069124,-0.0019773804,0.009197118,0.012755696,0.027181022,-0.009345687,0.0008396792,-0.002543357,-0.0053626276,0.007824625,0.04307081,-0.0005146849,0.03299643,-0.013640034,0.0017111945,-0.005178685,-0.006126696,0.038684495,0.017375479,-0.011963328,0.011892581,0.013611735,0.048532486,-0.009182969,-0.0228796,0.030902317,-0.0018128934,0.013901798,-0.007223275,0.03687337,0.018832868,-0.036816772,-0.01755942,0.032628544,0.026586747,0.03540183,0.009954112,-0.015139871,0.012600052,0.025610436,-0.00013276128,-0.024973713,-0.005659765,-0.0023151976,0.01097287,-0.010612059,-0.001774867,-0.03291153,0.0001107081,-0.050173815,-0.00914052,0.014283832,0.0026636268,0.033166222,-0.0031323263,0.016441617,0.0012637194,-0.022568313,0.019002661,-0.008602843,-0.03472266,-0.011609593,-0.004375706,0.013498539,-0.0021666288,0.013420718,0.009076848,0.009076848,0.011086064,-0.003128789,-0.014616343,0.002844032,0.0457875,-0.009748945,0.0071914387,0.0067987926,-0.010399818,0.03251535,-0.024379438,-0.016427469,0.06723801,-0.0048037255,-0.0028475693,-0.032232363,0.012196793,-0.028878951,-0.006052411,-0.028482767,0.006841241,-0.0020923445,-0.023544623,0.00228513,-0.014672941,0.0037849678,0.015097423,0.008114688,-0.013937172,-0.024959564,-0.016257675,0.019582788,0.0068270913,0.021153372,0.003029743,0.009614525,-0.021323165,0.014064516,-0.0001469107,-0.03950516,0.008376452,-0.02695463,0.021309014,-0.010739404,0.010873823,-0.020502498,0.0071843644,0.014121113,-0.009105147,-0.03596781,-0.0052529695,-0.005228208,0.0055748685,-0.017474525,0.008362303,0.0045419615,0.047145844,0.0076406826,0.015253067,-0.003838028,0.03715636,-0.015210618,-0.0060842475,0.002313429,0.011949179,0.01905926,0.0024902965,0.02603492,0.0012221555,-0.027407411,0.025426494,0.04270293,-0.0016466379,0.011510547,0.001848267,0.010937496,0.017686766,-0.0043403325,-0.0113266045,0.020827936,0.014800286,-0.002810427,0.004573798,-0.0039689103,0.016908549,-0.014241383,-0.031892776,0.022044785,-0.028595963,-0.022200428,-0.013923022,-0.029770363,0.0073081716,0.002958996,0.0007693743,-0.002373564,0.013392419,-0.028355423,-0.037892126,-0.008043941,-0.021224119,-0.015337964,-0.02890725,-0.017983904,-0.043410398,0.010640359,0.00427666,0.009741871,0.013449017,0.0050619524,0.000072349925,-0.0031111022,-0.027619652,-0.021549555,0.002767979,-0.0065051923,-0.037297852,-0.016441617,-0.01707834,0.036052704,0.0058755437,0.006911988,-0.0010426348,-0.008999026,0.007272798,-0.01238781,0.06520049,-0.0071985135,0.024110598,0.0053909263,0.0075062634,-0.0026547834,-0.006381385,-0.020912832,0.00759116,-0.0035125916,-0.0037920426,0.016455766,-0.011871357,-0.004513663,0.008984877,-0.0065476405,0.003406471,-0.010788927,-0.017432077,0.0077609527,0.017304732,0.015069124,0.034581166,0.011744012,-0.0011222253,0.0046940674,0.008058091,-0.00523882,0.03661868,-0.002914779,0.01564925,-0.0056385407,0.01615863,-0.042731225,-0.0005000933,0.010017784,-0.018875316,0.004648082,-0.00017222489,0.0229079,-0.053286687,0.00048550172,0.016724605,0.01877627,-0.018620627,-0.016243525,0.013477315,0.0024991399,0.008560395,-0.026883883,-0.02477562,-0.007923671,-0.022058934,-0.008475498,0.0035338157,0.010067307,0.016215228,-0.014970078,0.019865775,-0.013385344,-0.033194523,0.0011699796,-0.017177386,0.006880152,0.018946063,0.00928909,0.030449536,-0.01613033,0.008263257,-0.0011584831,0.009232491,-0.0004266932,0.02505861,-0.02746401,-0.017149087,0.02360122,0.038967483,-0.022356072,0.020842085,0.029147789,-0.019780878,0.021790095,-0.020827936,-0.009444733,-0.01613033,-0.02116752,0.012005776,-0.005543032,-0.0019420069,-0.016116181,-0.029798662,-0.0007220622,0.017516972,0.0018765659,0.03585461,0.012663724,0.006894301,-0.0028157332,0.002002142,-0.014163562,0.01952619,-0.008808009,0.016767053,0.000052175958,-0.008716038,0.00951548,0.015620952,0.029062893,-0.0124656325,0.0075699356,0.011107289,0.016172778,-0.0024000942,-0.01997897,0.03395859,-0.02334653,0.014545596,-0.030194847,0.011086064,-0.014064516,0.013357045,0.0018500357,-0.012649574,0.022469267,0.007085318,-0.0046693063,0.0040148958,-0.006179756,0.029176088,0.005748199,0.01071818,-0.0091688195,0.00073576946,-0.013357045,-0.000533256,0.014481924,-0.017531121,-0.010102681,0.022242876,-0.017545272,-0.029515674,0.016738756,-0.009840917,-0.01879042,-0.018974362,0.033873692,-0.013166028,0.020559097,-0.011369053,-0.0077751023,-0.045646004,0.02865256,-0.0066042384,0.019851625,0.01973843,-0.007485039,-0.01288304,0.020544946,-0.009090997,0.035571624,-0.017050043,0.00312702,0.006820017,0.015974687,0.017432077,0.013166028,0.012727397,0.031892776,-0.011121438,0.0050018174,0.009982411,0.014743688,-0.0108525995,-0.009197118,-0.0039512236,0.03424158,-0.0062328163,-0.009331537,0.027492309,0.0047329785,0.034750957,-0.018903615,0.004439378,0.0006659067,-0.0032702829,-0.010647433,0.014234309,-0.02140806,-0.0021241806,-0.0066643734,-0.00075610925,-0.00049213425,-0.0022992794,0.015267216,-0.017842408,-0.02283715,-0.008751412,0.0014052135,0.019313948,0.013802752,0.013102356,-0.0075062634,-0.0041528526,0.006246966,-0.024181345,-0.0022356072,0.016894398,-0.01252223,-0.037297852,-0.001952619,-0.02385591,-0.00952963,0.030138249,-0.029317582,-0.00201806,-0.008716038,0.015677549,0.0021418673,-0.016965145,-0.011885506,-0.016201077,0.017403778,0.031241903,-0.0025274388,-0.014531447,0.026912183,-0.0018783346,0.00039065644,0.0040219706,-0.013144804,0.010187577,-0.015719997,-0.008369378,-0.009303239,-0.017248133,-0.015592652,-0.014170636,0.03639229,-0.0050513404,-0.010003635,-0.005620854,-0.011984552,-0.007021646,0.0105908355,-0.0044216914,-0.022766404,0.05444694,0.022129681,0.00940936,0.0055713314,-0.01047764,-0.050060622,-0.025412345,-0.03755254,-0.014453625,-0.01685195,0.0058472445,-0.0031535502,0.021096773,-0.015620952,-0.023657817,-0.01372493,-0.022950348,-0.01639917,-0.011786461,-0.010484715,0.028836502,-0.0016484065,0.0046940674,0.024181345,0.01731888,0.006211592,-0.011036541,0.0011089602,-0.008829233,-0.005337866,0.001613033,0.004510125,-0.052664112,-0.017205685,0.015606802,0.010767703,0.021903291,-0.00033162686,-0.02337483,-0.0024266243,-0.008751412,-0.006820017,0.011694489,0.006911988,-0.010810151,-0.059144545,0.0038804763,0.022766404,-0.0060983966,-0.009911664,0.020884532,0.0060453364,-0.009982411,-0.012246316,-0.028015837,0.008199585,0.009805542,-0.0216769,0.0014335123,0.03110041,0.006172681,0.03596781,0.024931265,0.007746803,0.0047966507,0.017432077,-0.012012851,-0.011899656,0.017899007,0.006770494,-0.011963328,-0.018408386,-0.009133446,0.009480107,-0.0007145453,-0.006774031,0.028737457,-0.015012527,-0.009076848,0.008652366,-0.02312014,0.01637087,0.0066643734,0.0022727493,-0.011694489,0.021478808,-0.014135263,0.0015272523,-0.03565652,-0.006660836,-0.026615044,-0.011475174,0.009338613,-0.019087557,0.022002336,0.021026026,0.20239319,0.00613377,-0.0030704224,0.031411696,0.008390602,0.026898034,0.008249108,-0.0020817323,0.0023488025,0.002964302,0.0018907152,-0.041825663,0.019780878,0.00059648615,0.04358019,-0.010194652,-0.026685791,-0.027421562,-0.039448563,-0.012253392,-0.0036116375,-0.01760187,0.00089804555,-0.01564925,0.014786136,-0.016993444,0.010760629,-0.005468748,0.011114364,0.016837802,-0.011609593,0.015635101,0.009656974,0.0036293243,-0.0051044007,-0.0070605567,0.008128838,-0.016823651,-0.0011938567,0.022752255,0.016300123,-0.0041563897,-0.012975011,-0.011050691,-0.0019367008,-0.0078317,-0.0031464756,0.035345234,-0.014368729,0.036760174,-0.035288636,0.012571753,0.015380411,-0.015437009,-0.00029757983,-0.0020162913,0.024011552,-0.0093103135,0.024153046,0.008708963,0.0085037965,0.029487375,0.022709807,-0.0035373531,-0.007959045,0.013802752,-0.009706497,0.015437009,0.0137461545,0.0033710976,0.03424158,0.003188924,-0.0022603686,-0.0045950217,-0.031213604,-0.016767053,0.012741546,0.0063955346,0.00011805916,0.010279548,-0.013095281,-0.012253392,-0.00014492094,-0.022695657,-0.0458158,-0.011552995,0.026615044,0.007534562,-0.01975258,-0.00079457794,0.013434867,-0.0073081716,-0.01419186,-0.026388654,0.006522879,0.017814111,-0.015054975,0.009232491,-0.005047803,-0.02021951,-0.04986253,0.029119492,0.01709249,-0.010505939,-0.025964173,0.008701889,0.008723113,0.013717855,0.0253133,-0.025115207,0.011878432,-0.021181671,-0.01011683,0.0024726097,-0.007159603,-0.0130811315,0.014276757,-0.014043292,0.009338613,-0.010817226,0.05368287,-0.01925735,0.02336068,0.018408386,-0.005550107,-0.033817098,-0.015507756,0.0010302541,-0.015281365,-0.052635815,0.02868086,-0.011482248,0.007916597,-0.0026070292,-0.0082420325,0.01828104,0.008440125,-0.005691601,-0.0045561106,-0.002449617,0.014283832,-0.030732524,0.03418498,0.002198465,-0.0049416823,-0.015040825,0.0060064257,-0.027407411,-0.0047365157,-0.024648277,-0.001014336,0.0019296261,-0.0123948855,-0.016002985,0.030053353,-0.018917764,-0.020304406,-0.03344921,-0.0037036086,0.000604003,-0.03257195,0.015734147,0.03520374,-0.044231065,-0.013732005,-0.02188914,-0.18156525,-0.0012486856,0.01734718,-0.023091841,0.0021047252,0.007661907,0.010350295,-0.0012380736,-0.02046005,0.0062894137,0.013548062,0.04496683,-0.026332056,0.010215876,-0.00061417295,-0.010866749,-0.0013238544,-0.0071772896,0.035260335,0.015069124,0.025907574,-0.008963653,0.0043650935,0.002838726,0.011807685,0.0009170588,0.008949503,0.015069124,0.0050230413,-0.019922372,0.004580872,0.0075770104,0.021931589,-0.024690725,-0.023205036,0.004899234,-0.004909846,-0.005748199,0.01444655,0.025737781,0.0409484,0.004297884,-0.0056633023,0.010307847,0.00037739135,0.027067825,0.001842961,-0.013590511,0.006360161,0.028312974,0.009565003,-0.0059533655,0.024874667,0.0034878303,0.006954436,0.007141916,-0.016752904,-0.002230301,-0.0071985135,-0.020417603,-0.0046339324,-0.022087233,-0.0059533655,-0.010017784,0.003777893,-0.0006606007,-0.005069027,0.0022126143,-0.017658466,0.018705523,-0.011878432,0.015691698,-0.016073732,0.021874992,0.011163887,0.016540663,-0.0006517573,0.0138169015,0.00035837808,-0.0021966964,-0.018111248,0.02310599,0.0010895048,0.017927306,-0.0003322901,0.017389627,-0.014022068,-0.010329071,-0.016682157,-0.028695008,0.026388654,-0.026544297,-0.028482767,-0.0030810346,0.0276904,0.0074284417,0.006048874,0.0014025605,0.014885182,-0.021054326,-0.013533913,-0.022200428,-0.044344258,0.038882587,0.008440125,0.027053677,0.0062151295,0.01922905,0.039080676,0.01637087,-0.017446226,0.021634452,0.0073576947,0.010194652,0.006257578,-0.006883689,0.0032189914,-0.0019809178,0.019667683,-0.00391585,0.01760187,-0.013109431,-0.02266736,-0.012210943,0.013894723,-0.01516817,-0.08874512,-0.012246316,0.027322516,0.03296813,-0.019554488,0.012925488,-0.012430259,0.0253133,-0.031892776,0.012791069,-0.017177386,-0.037948724,-0.017502824,0.015253067,-0.0056526903,-0.0037708185,-0.03633569,-0.007170215,-0.002569887,0.031270202,-0.024619978,-0.037778933,0.028737457,-0.014269683,0.000016235897,-0.012437333,-0.0044924384,0.019639384,0.011793535,-0.0066148504,0.034581166,-0.024747323,0.0026760076,-0.00487801,-0.036194198,-0.044825338,-0.025978321,-0.0064698188,-0.008921204,-0.020049717,-0.0068377038,0.008015642,0.010336146,-0.022412669,-0.0054262998,-0.013463166,-0.019073408,0.022681508,0.017757513,0.0111355875,0.0010320228,0.0011195723,-0.006041799,-0.033336017,0.014000843,0.009218343,0.008744337,0.0063955346,-0.0025062147,0.024393586,-0.017842408,0.002930697,-0.0042908094,0.056512754,0.028581813,-0.012812293,-0.0110648405,-0.016950997,-0.011708639,-0.020997727,-0.019200753,0.0018907152,-0.011864282,0.011390277,-0.00952963,0.00090069853,-0.025624586,-0.007661907,0.020516649,-0.010053158,-0.023572922,-0.037495945,-0.013972545,-0.015408711,0.0074567404,0.025624586,-0.0007176405,-0.016172778,0.0026494775,-0.03203427,-0.01180061,0.00879386,-0.0020764263,-0.034552865,-0.0066148504,0.0060453364,-0.0019349322,-0.016356722,0.014955929,-0.00723035,-0.036222495,0.0047966507,-0.0626536,0.016469916,0.00018460561,0.0052458947,0.00004311149,-0.02048835,-0.006710359,0.014481924,-0.0053661647,0.0018624164,-0.008043941,0.015847342,-0.008631142,0.0059533655,0.0015679317,-0.0012478014,0.021323165,0.0027096125,0.0031429383,0.006763419,0.02071474,-0.008079315,-0.000036976395,0.03537353,-0.0027131499,0.004641007,-0.008397676,0.009706497,-0.011086064,-0.0015033751,0.0075487117,-0.039590057,0.010385669,0.03704316,0.01288304,-0.025808528,0.0017050043,-0.0064768936,0.01949789,-0.004747128,-0.012048225,-0.015479458,0.020629844,0.008234958,0.011828909,0.016512364,0.007400143,-0.006862465,-0.015819043,0.014672941,0.012989161,0.005015967,-0.0015803125,-0.01709249,0.023148438,-0.0123948855,-0.018210294,-0.0008396792,0.0076902057,-0.023516323,0.03226066,0.008206659,0.02361537,0.016031284,-0.005673914,-0.013349971,0.015988836,0.017417926,0.0023063542,-0.012543454,-0.00031062381,0.0032136852,0.0038804763,0.029260986,0.011376128,0.02145051,0.025426494,0.021832544,0.0038486402,0.02719517,0.021634452,-0.020842085,-0.015507756,0.0039087753,0.021818394,0.026798988,-0.0005690717,0.033675604,0.0109233465,0.023813462,-0.013095281,0.015507756,-0.025610436,-0.0058260206,-0.023926657,0.015819043,-0.022738107,0.009572078,-0.0018288116,0.01613033,0.001908402,0.020431751,-0.00940936,-0.004067956,-0.030845718,0.00608071,-0.023969105,-0.039618354,-0.010371519,0.026558448,0.0022373758,-0.011574219,0.006911988,0.020530798,0.007874148,0.021620302,0.0092395665,-0.04021263,-0.01733303,0.01877627,0.023077691,0.017191537,0.02698293,0.0068695396,0.03684507,0.028114883,-0.000019455441,-0.033873692,0.0055324202,-0.000042669322,0.03180788,-0.00010026185,-0.012833517,-0.01564925,-0.03008165,-0.021110924,0.011312455,-0.0033710976,-0.023700265,0.1300614,0.01760187,-0.0037248328,-0.0026530148,-0.015012527,0.01925735,0.010803076,0.027775297,-0.009748945,-0.036675278,0.016229376,0.00018471616,-0.02599247,-0.021379761,0.003929999,-0.022016486,0.011418575,0.0019367008,-0.0136754075,0.0013415412,-0.0019932985,0.0017518741,-0.0072586485,0.02793094,-0.019823328,-0.007103005,0.021011878,0.0050725644,-0.0067881807,-0.042023756,0.007534562,-0.01879042,-0.042221848,-0.018663075,0.0025787305,-0.027322516,-0.014177712,-0.019809177,0.0036682351,0.03537353,0.0037637437,-0.00089892984,-0.03975985,-0.031213604,0.007987344,-0.008348153,-0.0062858765,-0.0039087753,-0.010039008],"SELECT a.online_page_key \nFROM online_sales.online_sales_fact a \n JOIN (SELECT * \n FROM online_sales.online_page_dimension \n WHERE page_type = 'quarterly') b \n ON b.online_page_key = a.online_page_key;\n":[-0.015532397,0.00090228976,0.0083688665,-0.0149708195,-0.04530967,-0.000030416968,-0.02879109,-0.0028181574,-0.016313124,-0.03290019,-0.00081582746,0.020833135,0.00128923,-0.013525786,-0.0032752948,-0.014121606,0.0031657189,-0.0012019116,0.01970998,-0.023887565,0.026558481,0.0054616784,-0.014176394,-0.017943067,0.00830723,0.020682467,0.0032136582,-0.010902811,-0.01661446,0.009238626,0.016806217,0.008964686,-0.01980586,0.0066738627,-0.027955575,0.01679252,-0.006975197,-0.0030201883,0.01209445,-0.00087318366,0.01692949,0.019833254,0.004112524,-0.024435446,0.023134232,0.00056885346,0.030106002,-0.018285492,-0.0059855883,0.0113479635,-0.009738566,0.035858743,-0.025298357,-0.0010991842,-0.017244522,-0.0018062918,-0.022832897,0.04158409,-0.015340638,-0.007923714,0.020367436,0.009615293,-0.0063006193,-0.002398687,-0.01606658,-0.0005269064,-0.00990293,0.0038317353,-0.0016034049,0.008252442,-0.0004207547,0.055363268,0.0010195703,-0.0018165645,0.024531325,-0.010163173,-0.0019929132,0.025969509,0.0090400195,-0.008574321,0.010772689,0.0021435802,-0.026996784,0.0034807497,0.018175917,0.000987896,-0.0059068305,0.018121129,-0.025859933,0.0055233147,0.018723797,0.011861601,0.013101179,0.009896082,-0.0008517821,0.028517151,-0.024805265,0.02980467,-0.026585875,-0.0069067115,-0.020545498,0.0036399774,0.00003226285,-0.013375119,-0.020422226,0.015902216,-0.005441133,-0.0009219792,0.0054890723,0.018381372,-0.013484695,0.02127144,0.030982612,-0.022490472,-0.0106905075,-0.014066817,-0.0035920378,-0.01898404,-0.014436636,0.0083894115,0.017217128,-0.005389769,0.015272154,-0.002840415,0.022243926,0.019299071,-0.028489757,-0.04221415,0.01907992,-0.019052526,0.051555503,0.04226894,0.026037995,-0.004215251,-0.043200333,0.033091947,-0.016888399,0.0049411925,-0.02113447,-0.016819915,-0.006447862,0.013484695,-0.004317979,-0.010923357,0.01683361,0.020435922,0.0046672523,-0.015546094,-0.020477014,-0.017532159,0.020312648,0.005797255,-0.012169783,-0.00005085546,0.033831585,-0.037803717,-0.0066019534,0.031557884,-0.008478442,-0.021093378,-0.019751072,0.025079204,-0.006047225,-0.0031366127,-0.014190091,0.02231241,0.017381491,-0.0011300024,-0.018326584,0.0044754944,-0.0032872797,0.011731479,-0.008444199,0.022558957,0.03679014,0.015436517,0.010765841,-0.038488567,-0.026900906,-0.023038352,0.023325989,-0.015765246,-0.011279479,0.0047768285,-0.0041741603,-0.009485171,-0.018134827,-0.0022600049,0.00716353,0.0129984515,-0.0103480825,0.0055781025,-0.008403108,-0.007238864,-0.60529774,0.00028827903,-0.004013221,-0.032598857,0.034434255,0.0050302227,0.0014133591,0.015587185,-0.025901025,-0.009197535,0.013861363,0.0039002204,-0.001481844,-0.009581051,-0.012135541,-0.018641615,0.016504884,-0.015395426,0.009053716,0.013032694,0.019545617,0.006810833,0.0067046806,0.02569557,0.0040543117,0.016135065,-0.0062081646,0.00033151018,0.0036502501,0.0022565806,-0.011690388,0.014025726,0.03952954,-0.009889233,0.051035017,0.0030903853,-0.033694617,0.007177227,0.021244045,0.047994282,-0.021435803,-0.012251966,0.0113479635,0.0006827098,-0.0061328313,-0.0040577357,0.010806932,0.009923476,-0.012053358,-0.014381848,-0.017449977,0.011936935,-0.030927822,-0.014751667,0.020778347,-0.02162756,0.026106479,-0.0090263225,-0.000644187,0.0066053774,-0.009204383,0.01250536,-0.029886851,-0.03268104,-0.02350405,0.016450096,0.009129049,0.01747737,0.0033454918,0.00037623942,0.011717782,0.027366603,0.0033711737,0.0021350197,-0.013231301,0.025353145,0.051719867,0.0077045616,-0.009053716,0.009998809,0.017491067,0.010827477,-0.017093854,-0.0097043235,0.015778942,-0.005622618,-0.05325393,-0.0097043235,0.0012310178,0.011704085,0.0047151917,0.01132057,-0.006215013,-0.016080277,-0.011964329,0.027393997,0.000025400977,0.009108504,-0.008471593,-0.04229633,-0.021107076,-0.011245236,0.010765841,0.01980586,0.037913293,0.018312886,-0.011738328,-0.015600882,0.024832658,-0.0071087424,0.0074785613,-0.020970104,-0.025887327,-0.00474601,0.015272154,-0.04010481,0.03385898,-0.0072320155,-0.00027179983,-0.003468765,0.0006540317,0.02350405,0.008409957,-0.00554386,0.016943187,0.040543117,0.007129288,0.016052883,0.0057390425,-0.013498392,-0.015409123,-0.014765364,0.020463316,-0.005735618,0.0010949038,-0.012382086,-0.018093735,-0.00023948346,0.0025065506,-0.013244998,0.0030561427,-0.0050850105,0.017436279,-0.023709504,-0.016367914,-0.032160554,-0.016861005,0.025969509,-0.00995087,0.012786148,-0.019162102,0.01086172,-0.012854633,0.012258814,0.0069032875,-0.007307349,-0.023079442,-0.0048898286,-0.017313005,-0.033201523,-0.013423058,0.012395783,-0.021422107,-0.011032932,0.018011553,-0.0113479635,-0.003646826,0.014573607,-0.016121367,-0.02368211,-0.0020596862,-0.011457539,-0.009978264,0.01751846,-0.00032444767,-0.008909898,-0.009581051,0.0036707956,0.018093735,-0.007012863,0.011443842,-0.0149708195,-0.016463792,-0.008834564,0.033886373,0.0050439197,-0.0044617974,0.037721533,-0.036762744,0.03084564,-0.007444319,0.03747499,-0.021874107,-0.0036502501,0.017052764,0.019545617,0.0007336455,0.028517151,-0.0006193612,0.021394711,0.013573726,0.018093735,0.014696879,0.0033694617,-0.00013868211,-0.024942234,0.012902573,-0.01953192,0.017107552,-0.0050302227,0.022011077,-0.0045782216,-0.016956884,-0.03714626,0.016080277,0.008245593,-0.0090400195,0.005828073,-0.0021504287,0.02446284,0.011717782,0.004800798,0.037447594,0.030544307,-0.01113566,0.0047802525,-0.01040287,0.03298237,0.015313244,-0.015135184,-0.03577656,-0.011532873,0.011478085,0.017148642,-0.001960383,-0.0053692237,0.027845997,-0.023750596,0.008827715,0.001440753,0.0051740413,0.03303716,0.00976596,-0.027051572,0.00009352482,0.006351983,0.033119343,-0.010916508,-0.020545498,0.0064238925,-0.000740922,0.027900787,-0.007060803,0.010622023,0.011943783,-0.028407576,-0.021874107,0.019244283,0.029832063,0.0156145785,0.027667938,0.01542282,-0.019449739,-0.015231063,-0.015806336,0.0067560445,0.01086172,-0.010553538,0.012971058,-0.0036160077,-0.017860886,-0.0065471656,-0.004033766,-0.03257146,-0.0077388044,-0.002290823,0.020066103,0.004403585,-0.004129645,0.020477014,-0.021613864,-0.031722248,0.03413292,-0.0041604633,0.0035406742,0.023367079,-0.006156801,0.021969985,-0.019175798,0.013786029,0.009923476,0.026709147,0.019929133,-0.029448546,-0.031475704,-0.011882146,0.0014929728,-0.0030561427,0.010526143,0.0030013549,-0.010895963,0.02487375,-0.04528228,0.0042734635,0.08382563,-0.008492139,-0.016422702,-0.03473559,-0.0070539545,-0.023668414,-0.019600404,-0.01090966,0.0005555845,-0.007060803,0.0057116486,-0.0029602638,-0.02113447,0.0021624137,0.0037118867,-0.0046809493,-0.000061101455,-0.030379944,-0.00078928954,0.040132206,-0.017449977,0.017806098,-0.019244283,-0.003266734,-0.026709147,0.0071703787,-0.008594867,-0.033804193,0.0018901858,0.009820748,0.00005366441,-0.02035374,0.0011565404,-0.012566996,0.018121129,0.009224929,0.0021452925,-0.02295617,0.005434284,-0.00899208,-0.03125655,-0.009861839,-0.0059171035,0.029886851,0.024202596,0.0067012566,0.017340401,0.020025011,0.004376191,-0.019915435,-0.011190448,0.000117922595,0.0060711945,0.007012863,0.014587304,0.028955456,-0.0060403766,-0.007910017,0.012190329,0.021079682,-0.0021470045,0.031831823,0.004403585,-0.016039185,0.034461647,-0.015998095,0.019778466,0.03117437,-0.001302927,0.009560505,0.00046741008,0.0041604633,-0.016491186,-0.015847428,-0.00304587,0.027051572,-0.028270606,-0.0034858861,-0.009896082,-0.03522868,0.014149,0.0020648225,0.029941639,0.0060985885,-0.007827835,0.00460904,-0.035146497,-0.021764532,-0.028900668,0.01706646,0.008225048,-0.03295498,-0.03227013,-0.016093973,0.013060088,0.014080514,0.025257265,0.014820153,0.014820153,0.013101179,-0.010416567,-0.015463911,0.004407009,-0.040077418,-0.027695332,0.018367676,-0.0057287696,0.0143133635,-0.0013791166,-0.024654597,0.009012626,-0.0035012953,0.013813423,-0.022873988,0.037940685,0.008444199,0.014820153,0.011210993,0.012628633,0.00894414,-0.018271796,-0.0006274938,-0.014258576,-0.017669128,-0.01935386,0.014149,0.008115471,0.0048179193,0.0042700395,-0.027435089,0.0047117677,0.006201316,0.016395308,-0.0007944259,0.03322892,-0.024654597,0.026435208,-0.0146283945,0.01921689,-0.000808979,0.00075633114,-0.018066341,0.042323727,0.014368151,-0.010375476,0.037584566,0.0012044798,-0.028133634,-0.004732313,0.0010058733,-0.0027325512,0.014477728,0.0011137372,0.0034841741,-0.039091233,-0.026120177,-0.007458016,0.00026002896,-0.020408528,0.0015939883,-0.011176751,-0.023202715,0.018723797,0.004002948,0.01565567,-0.018490948,-0.016737733,-0.024271082,0.012950513,-0.007862077,0.008546927,0.0074991067,0.018285492,-0.003468765,-0.015778942,-0.010505598,-0.019052526,-0.0046569793,0.008615412,0.04048833,0.04714507,0.018545736,0.016874703,0.009279717,0.002468884,-0.0012275935,0.02364102,-0.012573845,0.0065882565,-0.01204651,0.030626489,0.0008162555,0.021408409,0.020312648,0.004900101,0.032023583,-0.011813661,0.0053247083,-0.008677049,0.010060445,0.013998332,0.00085049804,-0.03070867,-0.005951346,-0.05928061,-0.022230228,0.004074857,0.0034071284,0.004783677,0.0039858264,0.04330991,-0.003663947,0.04454264,-0.0129984515,0.017189734,-0.016778823,0.00485901,-0.03048952,-0.011943783,-0.012553299,-0.0035338257,0.033064555,-0.0087112915,0.006485529,-0.015724154,0.0127793,-0.034571223,-0.021969985,-0.0006523196,-0.009526263,0.028626727,-0.03426989,-0.008786624,0.013032694,0.011765722,0.028298,-0.009738566,0.02217544,-0.018148523,-0.010485052,-0.014696879,-0.030818246,0.045967128,0.015080395,0.018942948,0.026462601,0.0047254646,-0.012971058,0.014107909,-0.03459862,-0.02528466,0.029147213,0.020244164,-0.0045028883,-0.02810624,0.0015785791,-0.0019723678,-0.011642449,-0.012060207,0.04366603,-0.017052764,0.00880717,-0.008012745,0.0068039843,-0.0015939883,0.0058554667,-0.009457777,0.027407695,0.013012148,-0.017819796,-0.023421867,0.01706646,-0.013046391,0.017176036,0.00540689,-0.0053110113,-0.007800441,0.0016633293,-0.017860886,0.003360901,-0.015436517,0.029311577,0.010793235,-0.00044087216,0.00392419,-0.00474601,-0.0260106,-0.009272868,-0.012902573,0.029832063,-0.014450334,-0.0087044425,0.010306992,0.0155187,0.0041912817,-0.0051808897,-0.0010092976,-0.03276322,-0.038762506,0.014929729,0.01716234,-0.023832778,0.009409838,0.024640901,0.008129168,-0.028407576,0.0066601657,-0.0049720104,-0.027133754,0.005023374,-0.006153377,-0.001864504,0.006023255,0.012566996,0.0030270368,-0.00967693,0.00036682276,-0.015491306,-0.012073904,0.0038967961,-0.018217009,-0.018080039,-0.0143133635,-0.012477966,-0.01579264,0.0069580753,-0.0024312173,-0.0070539545,-0.020422226,0.0016479201,0.033612434,0.017682826,-0.0005885429,-0.0015195108,0.022613745,0.019093616,0.01994283,-0.0011479798,-0.00702656,0.008512685,-0.003415689,0.0018490949,0.028955456,-0.04322773,0.010279598,-0.0016701778,-0.018381372,0.0016342232,-0.030242972,-0.009272868,-0.015573488,0.026818722,-0.021161864,0.01081378,-0.01634052,-0.016682945,-0.013902454,0.04303597,-0.0034619165,-0.0023781413,0.019394951,-0.003251325,0.025668176,0.02103859,0.0024500506,-0.014655788,-0.030078609,-0.024586113,-0.030407337,-0.0200798,-0.01455991,0.030462125,0.012080753,-0.028900668,-0.055637207,0.004403585,-0.017874584,-0.008115471,0.00230452,0.0006065202,0.019134708,-0.013779181,-0.027832301,0.039995234,-0.0015794352,-0.0076155313,-0.038598143,0.008156562,0.013833969,0.020655073,0.025270963,-0.016450096,-0.03709147,0.010204264,-0.0034944469,-0.005732194,-0.0001672532,0.015505003,-0.03426989,-0.016737733,0.013594271,-0.00052134204,-0.007266258,0.014025726,0.006420468,-0.067389235,0.005965043,-0.001838822,0.026763935,-0.011389054,0.023380777,-0.014683182,-0.0038762507,-0.016258337,-0.008327776,-0.0013662756,0.0035098558,0.01747737,0.032434493,0.026983088,0.006026679,0.02318902,0.02514769,-0.01761434,-0.026791329,0.008683898,-0.025846237,0.0068279537,-0.014505122,-0.022915078,0.01990174,-0.02573666,-0.0073347427,0.010108385,-0.011450691,0.0066567413,-0.00817026,-0.01432706,0.007355288,0.0070060147,0.004735737,-0.011519176,-0.00014906187,-0.05421272,0.0045611006,0.002153853,-0.0068827416,-0.03774893,-0.020737257,0.004317979,-0.008081229,0.0030116276,-0.013340876,0.005061041,-0.0083894115,0.027284421,0.2021677,-0.008683898,0.0025185356,0.0146283945,0.007519652,0.017395189,0.01524476,-0.009978264,0.010238507,-0.013395664,-0.027667938,0.0034516437,0.006608802,0.007177227,0.04248809,-0.024243688,-0.014450334,-0.011224691,-0.033612434,0.005745891,0.0063451347,-0.00716353,-0.004345373,-0.003140037,0.028380182,0.0019449738,-0.0052493745,-0.003304401,0.029558122,-0.0004742586,-0.021833016,0.022942472,-0.007444319,0.03432468,-0.021285135,-0.016724035,0.008327776,0.004910374,0.01455991,0.01990174,0.021011196,-0.025585994,0.0059205275,-0.020285254,-0.017737614,-0.010005658,-0.010868568,0.0058554667,-0.04161148,-0.004365918,-0.03459862,0.024764173,0.03048952,0.019997617,-0.024572415,-0.0020408528,0.005201435,0.006468408,-0.00011300024,0.008567473,-0.0024158082,0.04613149,-0.007800441,0.005783558,-0.0110123865,-0.0021178983,-0.0054479814,-0.006896439,-0.007725107,-0.01172463,0.013436756,-0.0014313364,-0.007992199,-0.012169783,-0.02113447,-0.0296677,-0.0013200482,0.009670081,0.014998213,0.0023267777,-0.0052596475,-0.016902097,-0.025846237,-0.012703966,-0.015340638,-0.0106973555,-0.00531786,0.013012148,0.0003963569,0.002607566,-0.002208641,-0.0100330515,-0.009149595,-0.035365652,-0.0065094987,0.00075804326,0.006444438,0.023599928,-0.005389769,-0.0269283,-0.040680084,0.05141853,0.008882504,0.016354216,-0.007382682,-0.010820629,-0.0040303417,0.019490829,0.029229395,-0.03125655,0.011745176,-0.036160078,-0.024134113,-0.021559076,-0.01355318,-0.016847309,0.012162935,-0.017271915,-0.034160316,-0.022846594,0.0053418293,-0.005495921,0.01775131,0.0136559075,-0.009738566,-0.009259171,0.0039310385,-0.0029910821,-0.01204651,-0.02546272,0.03736541,-0.027229633,0.021435803,-0.0070745,-0.026887208,0.038077656,0.010272749,0.007923714,0.0012609799,-0.009779657,-0.0066601657,-0.010122082,0.006649893,0.011224691,0.0054924963,-0.028215818,0.015368032,-0.014340757,-0.006191043,0.0020357163,-0.036023106,-0.0019021707,-0.0066738627,0.0012121844,0.041145783,0.0033900072,-0.018134827,-0.030407337,0.035338257,0.037666745,-0.02765424,-0.02628454,0.020956408,-0.0126628755,-0.0035098558,-0.019134708,-0.17356837,-0.0059479214,0.01583373,0.0046877977,0.020750953,0.00885511,0.021874107,0.005899982,-0.00062235736,-0.00230452,0.020435922,0.013594271,-0.033393282,0.006238983,0.0087181395,-0.0021487167,-0.021435803,0.005139799,0.0296677,-0.002412384,0.046158884,-0.0061328313,0.013155967,0.010704204,0.00032701585,0.010320689,-0.0070539545,-0.016422702,0.013628514,-0.020025011,0.0055472846,-0.021654954,0.0067663174,-0.026613269,0.021011196,0.021887803,0.0037666745,-0.028010363,-0.006290347,0.01182051,0.030434731,0.022106957,0.007204621,0.00460904,-0.0083825635,0.03426989,0.020203073,0.009135898,0.02080574,0.024024535,0.01501191,-0.03736541,0.020915316,-0.0012515632,-0.0063006193,0.014573607,-0.020696165,0.02642151,0.0010075854,-0.029393759,-0.009341353,-0.01651858,0.009882385,-0.010649417,-0.019792164,0.007088197,-0.024586113,0.020189377,0.009053716,0.004294009,-0.014998213,-0.01501191,0.013518938,-0.00771141,-0.016902097,0.011252085,0.021381015,0.004365918,0.02947594,0.0025202478,-0.002467172,0.053555265,-0.023750596,0.032598857,-0.002961976,0.00830723,-0.0010743584,0.016080277,0.012477966,-0.008238745,0.0002345611,-0.04226894,-0.017778704,-0.0038077657,0.01788828,0.0065266197,-0.018929252,0.0044378275,0.018271796,-0.0035167043,-0.007827835,-0.0009485172,-0.03802287,0.03679014,0.035146497,0.013710695,-0.0026828996,0.019203192,0.036981896,0.0014039424,-0.017559553,0.02642151,0.016737733,0.019559314,0.005557557,-0.009389292,-0.0035440985,-0.0038591293,-0.001452738,0.009087958,0.020819439,-0.009067413,-0.005961619,0.01341621,0.0023661566,-0.011060326,-0.074402094,0.0034191133,0.013429907,0.028955456,-0.02080574,-0.009587899,0.0013191922,0.008088077,-0.01925798,0.040762268,-0.015340638,-0.019614102,-0.015559791,-0.0014989653,0.011484933,-0.0053247083,0.004948041,-0.03577656,-0.008005896,0.024216294,-0.027257027,-0.027626846,0.033475466,-0.029448546,-0.01834028,-0.003842008,-0.018244402,0.010067294,-0.0038077657,-0.00036446858,0.024613507,-0.029065032,0.0062081646,-0.011519176,-0.02477787,-0.034434255,-0.02368211,0.0093618985,-0.00023199292,-0.0200798,-0.0043248273,0.008005896,0.029585518,-0.03668056,0.004167312,-0.0026863238,-0.03205098,0.037228443,-0.012758754,-0.010423416,-0.0090400195,-0.0023250654,0.009957718,-0.03509171,0.027366603,-0.012382086,0.013429907,0.009402989,-0.013703847,0.028681515,-0.03213316,-0.011197296,0.0064958017,0.029832063,0.031338733,0.018792283,-0.0033095372,-0.023627322,0.005074738,-0.00045499718,0.00062192936,0.02299726,-0.014683182,0.014614698,-0.039009053,0.0026435207,-0.01022481,-0.0064889533,0.03531086,-0.036351833,-0.014601001,-0.016367914,-0.03290019,-0.02422999,0.027435089,-0.012443723,0.007594986,0.0054479814,-0.010717901,-0.036543593,0.00318284,-0.012471117,0.018600523,-0.0062492555,-0.028243212,0.000060191887,0.0080606835,-0.005280193,0.011156205,-0.006790287,-0.03777632,-0.0022274745,-0.07434731,0.019751072,-0.00568083,0.0076018344,-0.007820986,-0.021504289,0.005557557,-0.028407576,0.0009776233,0.011491782,-0.0070025907,0.03207837,-0.035338257,-0.025394235,-0.024901144,0.0005739899,0.010135779,0.018778585,0.0008432215,-0.010656265,0.02765424,0.020860529,0.019340161,0.0018696403,-0.023599928,0.010471355,-0.01706646,0.01022481,-0.01264233,-0.027407695,0.037913293,-0.023161625,0.0034482195,0.031119581,-0.018326584,-0.053637445,-0.017765008,-0.0033317949,0.027558362,-0.019819558,-0.007745653,-0.0037084625,-0.0011847904,0.0008860246,0.019682586,0.03774893,0.01250536,0.021285135,0.00010866642,-0.003032173,0.021161864,-0.0031640066,-0.011813661,-0.014820153,0.0071087424,-0.0041193725,0.030106002,0.009964567,0.029914245,-0.014847547,0.012854633,0.013340876,0.04613149,0.013936697,0.00004785924,-0.003609159,0.015710458,-0.009320808,0.006927257,-0.00985499,0.0037427049,-0.016696641,-0.025435327,0.026996784,0.013197058,0.010437113,-0.00022878268,0.00078543724,-0.018614221,0.007882623,0.02025786,-0.009190686,-0.010978145,-0.002331914,0.015491306,0.04495355,-0.016135065,0.011587661,-0.00046997826,0.018244402,-0.0116629945,0.016600762,-0.01751846,-0.014258576,-0.009800202,0.012484814,-0.021011196,0.006379377,-0.0066156504,0.019381253,0.0058794366,0.0019860647,0.0028592485,-0.011765722,-0.03572177,0.014696879,-0.02286029,-0.021353621,-0.0021778229,0.02409302,-0.0069923177,0.025531206,0.023120534,0.010491901,-0.00908111,0.00885511,0.005941073,-0.02391496,-0.05078847,0.019545617,-0.009670081,0.02162756,0.018107433,-0.0035988863,0.039776083,0.034187708,-0.004506313,-0.012943664,0.0020648225,-0.021682348,0.0051226774,0.0057801334,-0.004407009,-0.015628275,-0.031092187,-0.026489995,-0.011827358,0.022148047,-0.000009490254,0.062403526,-0.0024055354,-0.045830157,-0.014217485,-0.0014073666,0.016450096,0.0073005003,0.01099869,-0.003691341,-0.046734158,0.024668295,0.010485052,-0.0065608625,-0.02879109,0.006927257,-0.0018028674,0.04454264,-0.012608088,-0.0269283,0.024353264,-0.01866901,-0.0043556457,0.014601001,0.016915793,-0.015053001,-0.009841293,0.013025845,-0.0011154494,-0.0044926153,-0.063444495,0.009320808,0.010423416,-0.027928181,-0.014614698,0.011793116,-0.03070867,-0.012847785,-0.003951584,0.030736065,0.012464269,0.015450214,-0.007355288,-0.015724154,0.014491425,-0.0017497916,-0.014902335,-0.012525905,-0.0010315552,-0.019860648],"Informix DB - SQL Group By Year, Month, Week, Day, Hour":[-0.020764805,0.0045051556,0.0025277298,-0.021806715,-0.039856687,0.022525778,-0.007939053,-0.03695108,0.008261898,-0.035278156,0.018490216,-0.0010015534,0.01693469,0.0052902563,-0.025490083,0.00943588,0.0040392317,0.008166512,0.026355894,0.013919024,0.023905206,0.020823505,-0.0062331106,0.004765633,0.004420776,0.032842144,-0.017741803,-0.032049708,0.029422922,0.020485984,-0.0030853713,-0.013735589,-0.0059469524,0.0027111645,-0.04437652,-0.009883461,-0.0016032191,0.014572051,0.009824761,0.0162303,0.0453744,-0.0061230497,0.0056314445,-0.0056828065,0.004776639,0.01819672,0.01727221,-0.01982562,-0.018636964,-0.023714436,0.017580379,0.011512361,-0.04097197,-0.0018756196,0.010353053,0.024903093,0.031638812,0.016802616,-0.030318083,-0.0076895817,0.0071392776,-0.008445333,-0.02471232,0.014300568,-0.02794077,-0.015467213,-0.005459016,-0.0012501073,0.0024782026,0.0036301722,0.015115018,0.014131808,-0.024697645,-0.00023479639,0.030464832,-0.03169751,-0.01878371,0.0039548515,0.0072603445,-0.019135905,0.008335272,-0.009054336,-0.027280405,0.006644004,0.012642318,0.016920015,-0.015525911,0.02480037,-0.015423188,-0.0051508457,0.025504759,-0.0016894334,0.03700978,0.01564331,0.007003536,0.018725011,-0.02016314,0.015599285,0.013075224,-0.024228053,-0.030875726,0.009494579,0.00028409445,-0.0038594657,-0.016978715,0.0028359,0.0027918757,-0.005374636,-0.008636105,-0.0076822443,-0.01075661,0.02314212,0.022892648,-0.033605233,-0.0054296665,-0.02603305,0.023655737,-0.034573767,-0.026223822,-0.047370173,0.0062808036,0.024829717,0.013177947,-0.023993256,0.015115018,0.0027019929,0.0057084872,-0.025930326,-0.0018572761,-0.013676889,0.027456503,0.020603383,0.0060276636,0.005972633,-0.010088908,0.004545511,-0.019033182,0.007425436,-0.01252492,-0.0021993818,0.013808963,0.014197844,0.0056938124,-0.016494446,-0.012943151,0.018358143,-0.009325819,0.006475244,0.021630617,-0.019678872,0.019752245,-0.0026157785,0.006222104,-0.0024323438,0.034250923,-0.004750958,-0.03369328,0.022760576,-0.030846376,-0.021161025,-0.015525911,0.032079056,0.006192755,0.0026377907,0.008401308,0.0089809615,-0.0047729705,-0.011666446,-0.01893046,-0.0063982015,0.025064515,0.005723162,-0.008005089,0.0146014,0.030318083,0.011725144,0.031139871,-0.018446192,-0.04020888,-0.023274193,0.020075092,0.010668561,-0.001798577,0.0050591286,-0.036628235,-0.016685218,-0.001317061,0.0034192223,0.012143375,0.00022952264,0.004310715,0.035366207,-0.013185285,-0.01917993,-0.5865214,-0.03786092,-0.030787677,-0.01979627,0.03721523,0.0043657455,0.007051229,0.020016393,-0.016244976,0.0129358135,0.001982929,0.028366338,0.008841552,-0.008885575,0.0019205611,-0.017492332,-0.008907588,-0.020485984,-0.005169189,0.025798254,0.0072823567,0.018446192,0.031609464,0.009113035,0.01782985,0.0065266057,0.014740811,-0.032372553,0.0045565176,-0.0043033776,-0.03313564,0.019312004,0.0015931302,-0.026781464,0.04804521,0.019766921,-0.03507271,0.018079322,0.014645425,0.06286673,-0.017389607,-0.027339105,0.018945133,-0.0006378941,0.006269797,0.020075092,-0.0014528027,0.010954719,0.02311277,-0.046372287,0.0027808698,0.00035815622,0.0077189314,0.0027166675,0.032255154,0.021337122,0.010008196,0.0013216469,0.013522805,0.0013060549,-0.010888683,0.012752379,-0.020676756,-0.0027460172,-0.019752245,-0.024594922,0.005888253,0.013060549,0.025900977,-0.01479951,-0.0015839585,0.025431383,-0.002560748,-0.006247785,0.016494446,0.0018820398,0.02317147,-0.008239886,0.0012510245,0.004512493,0.010492464,-0.017110787,-0.025108539,-0.009633989,0.012869777,-0.013919024,-0.052917235,-0.00926712,0.0063541774,0.0029954882,0.012062664,0.023861183,0.005781861,0.0030670278,-0.004670247,0.035601,-0.019253304,-0.008408646,0.00077134283,-0.026267845,-0.0162303,-0.015041644,-0.023978582,0.013126586,0.025284637,0.007157621,-0.000984127,0.009252445,0.036686935,-0.026869511,0.015100343,-0.014175832,-0.015144367,0.000579195,-0.0066513414,-0.032049708,0.018387493,-0.006504594,-0.0069338307,-0.013552154,-0.0097147,-0.010785959,0.028777232,-0.014682111,0.01347878,0.015569936,0.027295081,0.026766788,-0.015261766,-0.0035219458,0.023494314,0.0012409356,0.007447448,-0.011321588,0.018680988,-0.010287017,0.020045742,0.0019352358,0.012055327,-0.003936508,-0.009201083,0.001946242,0.0033990445,-0.009149722,0.025945,-0.042468797,-0.031492066,0.028542437,-0.0027368455,-0.004714271,-0.021894764,-0.0067210468,-0.015790056,0.03319434,0.0178005,-0.0010905191,0.014139145,-0.04478741,-0.008760841,-0.017932573,-0.005767186,0.010829983,-0.007770293,-0.0016554979,0.017052088,-0.029980564,-0.006035001,0.01005222,-0.020676756,-0.023288867,-0.0068421136,0.020823505,0.003204604,-0.00043634523,-0.018035298,0.002459859,-0.014777497,-0.0053929794,0.010683236,-0.00040493204,0.033663932,0.007124603,-0.012451546,-0.018387493,0.0049967607,-0.004090593,-0.00017621194,0.01477016,-0.006427551,0.023993256,-0.010184294,0.0071392776,-0.0077482807,0.00831326,-0.0012528589,0.035336856,-0.044523265,0.003676031,0.032049708,0.011827868,0.04484611,-0.0023204486,0.0009208421,-0.011086792,0.030347433,-0.020735456,0.017404282,-0.020295212,0.011673783,0.03639344,0.015819406,-0.010595187,-0.0026121098,-0.012745041,0.00831326,0.026238497,-0.021131676,-0.005829554,-0.023611711,0.00845267,0.02968707,0.0057928674,0.045462452,0.014381279,-0.016347699,0.017257534,-0.01272303,0.03378133,0.010514475,-0.018798387,0.007410761,0.019312004,0.0081445,0.006860457,0.021381145,0.02265785,0.026018376,-0.027456503,0.034162875,0.0030358438,-0.020309888,0.015364489,0.02867451,-0.012583619,-0.0007887691,-0.003929171,0.0227459,0.0020618057,-0.013207297,-0.004431782,-0.0015500231,0.008584743,-0.0045565176,0.004791314,0.017976599,-0.017389607,0.007931716,0.026209148,0.008254561,0.019840294,0.012312136,0.007473129,0.00019386753,0.014469327,-0.0017288718,0.010771285,0.031110521,-0.020779481,-0.0061047063,-0.005484697,0.0017783992,-0.014087783,-0.011226202,-0.025064515,0.0020379592,-0.035102062,-0.021938788,0.017785827,-0.0062808036,0.014506014,-0.010683236,-0.016714567,0.020647407,0.01687599,-0.003591651,0.010191631,-0.00018882308,0.011695795,-0.0059763016,0.0029753104,-0.00842332,0.0037218896,-0.005004098,0.0011464667,-0.0064458945,0.026854837,0.026752114,-0.0032284504,-0.041030668,0.020485984,-0.02378781,0.0041492926,0.008173849,-0.03976864,0.049835533,-0.021322448,-0.005781861,-0.054971706,0.018402167,0.0051471773,-0.036540188,0.0008227045,-0.01721351,0.0030651935,0.0027680292,-0.00032307432,-0.027794022,-0.007931716,0.055588044,-0.021307772,0.0015380998,-0.064334214,-0.02342094,0.014572051,0.030523531,-0.0073924176,0.005796536,0.006390864,-0.005121496,0.022379031,-0.016377049,-0.00946523,0.01432258,-0.020427287,-0.017110787,0.011930591,0.0035421236,-0.025372684,-0.007348393,0.010169619,-0.018093998,-0.03116922,0.005770855,0.011607747,-0.029510971,-0.0106025245,0.005437004,0.008379296,0.025666181,-0.00042556846,0.030083288,0.0061670737,0.013288008,-0.024228053,-0.014997619,0.01137295,0.008159175,0.002375479,-0.012062664,0.004252016,0.02639992,0.004644566,0.011380288,0.0013207297,-0.0036631906,0.027383128,0.009413868,-0.003063359,0.020045742,0.0011088627,-0.009619314,0.020632733,-0.027882071,-0.0028744214,-0.0073814113,-0.007711594,-0.025959676,-0.0077482807,-0.028292965,0.006882469,-0.009142385,-0.011086792,0.0039328397,-0.058845844,-0.028014144,-0.017536355,0.0485735,0.003575142,-0.0076088705,-0.0017527184,-0.033663932,0.012466221,-0.010448439,0.01730156,-0.02142517,-0.0325193,-0.010668561,0.041177418,0.03119857,0.014975607,-0.002845072,0.014916908,0.015423188,0.0054883654,-0.0356597,-0.01184988,-0.014498677,-0.015819406,-0.016949365,0.01025033,-0.028395688,0.02142517,-0.017448306,0.0079610655,0.00059845566,-0.030494181,0.029334873,-0.0064789127,0.019620173,-0.0053196056,0.027412478,-0.011299577,-0.012502908,-0.00012530881,0.014748149,-0.024580248,0.010771285,-0.02864516,0.011145491,0.0324019,0.015012294,0.018827736,0.002712999,-0.011424311,0.023611711,-0.020706106,-0.001968254,-0.0031092179,0.020089766,0.0074364417,0.0027808698,0.00502611,-0.002041628,-0.01625965,0.011827868,-0.0028157223,0.028601136,-0.013596178,-0.0074034235,0.006776077,-0.0041713044,-0.030053938,-0.01027968,-0.013060549,0.0042079915,0.0017738134,0.006644004,-0.008188524,-0.018695662,0.019869644,0.008599418,0.019766921,-0.024389476,-0.028322315,-0.016406398,-0.0069191563,0.009971509,0.005473691,-0.0228046,-0.015100343,0.01493892,-0.01333937,0.025563456,0.002089321,-0.008342609,-0.015687333,0.0029863166,0.0062551224,-0.03698043,-0.037978318,-0.03369328,-0.011981953,0.0227459,0.03055288,0.021381145,0.0062551224,0.021865414,-0.002342461,0.0026469624,0.021293098,0.03310629,-0.014102458,0.006240448,-0.01106478,0.0061010374,-0.009509253,0.0065412805,-0.00024649035,0.001634403,0.018240744,-0.0151737165,-0.014432641,-0.013610853,-0.025093865,0.012906464,0.00634684,0.009024986,-0.020618059,-0.031902958,-0.020794155,0.041206766,-0.003195432,-0.00095936336,0.011901242,0.025211262,-0.0010951051,0.007902366,0.0011473839,0.008995636,-0.03401613,0.0020819837,-0.0072970316,-0.008790189,-0.0009511088,0.0012317639,0.04282099,0.019253304,-0.0022764243,0.021557244,0.008005089,-0.008298585,0.0064018704,0.027133659,-0.012444208,-0.0027551888,-0.013662215,-0.009076348,0.0178005,0.023494314,0.0068751317,-0.003965858,0.027104309,-0.011622421,-0.01027968,0.011299577,-0.025607482,0.05996113,-0.0035623014,0.007792305,0.047370173,-0.0013574166,0.00022000697,0.0040869247,0.01721351,-0.0014839865,0.020148465,0.032812797,0.01687599,-0.011468336,0.021953462,0.0046408973,-0.01168112,-0.01945875,0.051772606,0.0047729705,-0.014439978,-0.007997752,-0.010242992,-0.009780737,0.027515203,-0.010771285,-0.0027570233,0.005235226,0.026590692,0.0036907056,-0.0018031629,-0.049923584,0.005818548,0.017697778,-0.020896878,-0.0036411784,-0.0025845945,0.015716683,0.016039528,-0.019194605,0.010851996,-0.0022324,0.008804864,0.012150713,0.017066762,0.0050554597,-0.0108079715,-0.0017765649,0.028601136,-0.03386938,-0.01988432,0.013258658,0.022540454,0.013911686,0.005378305,-0.024330776,-0.0030064944,-0.015569936,0.00044987354,-0.0035733075,-0.0032339534,0.028806582,-0.0054039857,-0.0043400647,-0.009604639,0.00030404297,0.0035036025,-0.0063761896,-0.0057781925,-0.0063505084,-0.008305922,0.033487834,0.03445637,-0.0094872415,-0.017433632,0.01887176,0.0056351135,0.023098094,-0.012943151,0.0069264933,-0.013133923,-0.029334873,-0.010110919,-0.008188524,0.0025845945,0.0355423,-0.027808698,-0.009905472,-0.011145491,0.016083553,0.016010178,-0.015012294,-0.007304369,0.0040392317,0.025871627,0.01988432,0.02477102,0.0026139442,0.04299709,-0.007821655,-0.008019764,-0.0014894896,-0.03821311,0.04502221,-0.027339105,-0.005833223,-0.00895895,-0.05130301,0.009377181,-0.03128662,0.024917766,-0.027852722,0.0020159471,-0.03316499,-0.027118983,-0.011431649,0.05071602,-0.00746946,0.01828477,0.01727221,0.009729375,-0.003995207,0.02701626,-0.02317147,-0.016098227,-0.012180063,-0.009061673,-0.022012161,-0.012943151,0.007242001,0.03656954,0.016890666,-0.034896612,-0.014029085,-0.0040869247,-0.047252774,-0.002951464,-0.0060239946,0.011703133,0.0077042566,-0.0013629197,-0.007887691,0.024257403,0.008247223,-0.00038360778,-0.023523664,0.01988432,-0.0003031258,0.0046885903,0.05077472,-0.020574033,-0.028102193,0.0061377245,0.0006998033,-0.0061377245,0.018636964,0.011387625,-0.010844658,-0.004237341,-0.009656002,0.005187533,-0.015657984,0.0018490215,-0.010132932,-0.036041245,0.0040502376,0.016641194,-0.0072383326,-0.024917766,0.029965889,-0.0070438916,-0.010257667,0.0034760872,-0.0007548337,-0.0068898066,0.021645293,0.0053379494,0.008643442,0.012796403,0.0018967146,0.045051556,0.010338378,-0.0064935875,-0.015026969,0.01988432,-0.032196455,-0.0097147,-0.015496561,-0.011842543,0.0015802898,-0.043378633,-0.00078464183,0.012789066,-0.019121232,0.00432539,-0.026840162,-0.0067210468,-0.016743917,0.011336263,-0.024976466,-0.004644566,0.002311277,0.009978847,-0.0013537479,-0.0065596243,-0.013177947,-0.026546666,-0.038741406,0.021395821,-0.016743917,0.004373083,-0.016112903,-0.0014940754,0.0048426758,0.010940044,0.17163616,0.0030376783,0.008166512,0.015159042,-0.0060423384,0.014212519,0.012011303,0.0016775101,0.008159175,0.032724746,-0.055529345,-0.0226872,0.03310629,-0.001597716,0.0087755155,-0.010507138,-0.02791142,-0.015423188,-0.045902696,0.0014904068,0.002867084,0.0065596243,-0.006787083,-0.014740811,0.04176441,-0.011835205,-0.008614092,0.035571653,0.032108407,0.02044196,0.0034375659,-0.013053211,-0.0072860257,-0.0033788667,0.0072823567,-0.009802749,-0.013324695,-0.0227459,0.005125165,-0.0064789127,0.025842277,-0.0420579,0.028938655,-0.023685087,0.008298585,-0.003470584,-0.012275449,0.0063505084,-0.014131808,-0.02544606,-0.026590692,0.007579521,0.022202933,0.024213377,0.0124295335,-0.01564331,0.017609729,-0.013177947,-0.011284902,-0.019987043,0.012202075,0.026693415,-0.015129692,-0.017595055,-0.0040979306,0.014234531,-0.017169487,0.010844658,0.0026891525,-0.010859333,0.0068384446,-0.0210583,-0.02538736,-0.00091533904,-0.0228046,-0.0097147,0.018798387,0.034720518,-0.009817424,0.019209279,-0.009567953,-0.01350813,-0.02929085,-0.0039438456,-0.032431252,-0.01631835,0.023875859,0.0010666726,-0.029980564,-0.0010804302,-0.002861581,-0.0040355627,-0.010771285,-0.04358408,0.015540586,0.0010620868,-0.0023993256,0.02010444,-0.013720914,-0.034338973,0.0058992594,0.049659435,0.019943018,-0.0038631344,-0.016362373,0.00035471682,0.010235655,-0.0013739257,0.007557509,-0.041177418,-0.00012897751,-0.0194881,-0.032431252,-0.009157059,0.008922263,-0.016333023,-0.0019499107,-0.01527644,-0.018138021,-0.011446324,0.018240744,-0.030083288,0.0055580707,0.00030908742,-0.0012528589,-0.033018243,-0.015056319,0.013889674,-0.034808565,-0.041500263,0.027148332,-0.044405866,0.005844229,-0.027926095,0.0020654744,0.0113436,0.018754361,0.0007002619,-0.035395555,0.0063505084,0.004670247,-0.0048793624,0.0013739257,0.010426427,0.008526044,-0.025196588,-0.0017536356,-0.00043244727,-0.033634584,-0.025812928,0.0003061066,-0.0028248942,-0.0003416471,-0.0022507436,0.047311474,-0.009281795,-0.03580645,-0.014102458,0.009934822,0.025548782,-0.007711594,-0.016831966,0.04487546,-0.008151837,-0.031315967,0.0022929334,-0.18936329,0.0244335,0.03460312,-0.011761832,0.01103543,-0.024947116,0.03651084,-0.018152695,-0.011196853,-0.012745041,-0.026502643,-0.022833949,-0.054208618,0.010404415,0.0243748,-0.014175832,0.0126349805,0.028997354,0.04414172,0.014711461,0.024580248,0.004670247,-0.027485853,-0.003995207,0.020750131,0.024184028,-0.002586429,0.0013675055,-0.003167917,-0.03386938,0.009964172,0.005748843,-0.0125322575,-0.007983077,-0.02311277,-0.0037897604,-0.013104574,0.000156722,-0.007579521,0.008335272,-0.004130949,-0.00045698165,0.021219723,0.022701876,0.005866241,0.04032628,0.024917766,-0.013728252,0.0043180524,0.008555394,0.0031055491,-0.03900555,0.018108672,-0.0077776304,0.00031802987,0.018240744,-0.004527168,0.015129692,-0.025798254,-0.02499114,-0.002931286,-0.012202075,0.008482019,-0.02855711,-0.016010178,0.010118257,-0.008415983,0.025592806,0.00035013095,0.003947514,-0.021924112,-0.011226202,0.0024947117,-0.0065742987,-0.0015793726,0.003877809,-0.019370703,-0.009171734,0.011306914,0.008819539,-0.02504984,0.04082522,0.0024268408,0.016964039,0.013618191,0.027500527,-0.014102458,0.014432641,-0.009758725,-0.023846509,0.018739687,-0.011475674,-0.0061340556,-0.00087498344,0.01432258,0.007564846,-0.025137888,0.014792172,0.021249073,-0.0292028,-0.002115002,-0.0033073272,-0.03445637,-0.0031404018,0.0045821983,0.001771979,-0.0007208983,0.016289,0.053709675,-0.00067137094,-0.022261633,0.014652763,0.0048536817,0.015452538,-0.000029492858,0.014733474,-0.00845267,-0.014924246,0.015790056,0.029775117,0.020295212,-0.0015252593,0.020207165,0.0049380613,0.02639992,-0.0079610655,-0.076837115,-0.0047949827,0.0125322575,0.029276175,-0.0105585,0.0003687037,-0.006145062,0.030347433,-0.030009914,0.0041602985,-0.009450555,-0.042145953,-0.023435615,-0.020706106,0.020383261,0.021161025,-0.0179179,-0.016362373,0.007557509,0.026531992,-0.016098227,-0.025225937,-0.00093918556,0.011769169,-0.004189648,-0.005833223,-0.034104176,0.043877576,0.03656954,0.010844658,0.0019187267,-0.039856687,0.014740811,0.00019019883,-0.00842332,-0.045462452,-0.010932707,0.0012033315,0.012070002,-0.037596773,0.01558461,0.0057635177,0.027060283,-0.023523664,0.018798387,-0.0061964234,-0.019972367,0.013874999,0.04035563,-0.0075281593,-0.011556385,-0.008724153,-0.016670544,-0.0421166,0.013163272,0.0058002044,0.0041602985,0.0068714633,-0.012466221,0.015012294,0.0064238827,-0.021366471,0.010176956,0.0358945,0.019282654,-0.012803741,-0.0027918757,-0.0016958537,0.016993389,-0.0060716877,-0.016523795,0.014315242,-0.019898994,0.017418956,-0.011336263,0.00041295734,-0.009142385,-0.0162303,0.008078463,-0.02154257,-0.026458617,-0.020838179,-0.02468297,-0.0085700685,0.0073410557,0.026781464,-0.0075721834,-0.007696919,0.012473558,-0.003914496,0.013288008,0.011233539,0.011138153,-0.021234399,-0.022276307,-0.008357284,0.019356027,0.008548056,0.001512419,-0.009347831,-0.020295212,-0.005638782,-0.09215758,0.0050591286,-0.00994216,0.00007807439,0.003914496,-0.003936508,-0.01881306,-0.010675899,-0.015481886,0.0031330644,-0.05849365,0.027192356,-0.049718134,-0.0119232545,-0.027177682,-0.0011152829,0.020324562,0.010411752,0.024609597,-0.013713577,-0.0013821803,0.0076455576,-0.013119249,0.0056791375,-0.03140402,0.006882469,-0.004732615,0.028894631,-0.018739687,-0.017418956,0.023875859,-0.017008064,0.009670677,0.039387096,-0.00049573224,-0.032079056,0.008049114,0.015569936,0.036833685,-0.004923387,-0.017756477,-0.019150581,0.016244976,-0.00014995785,-0.0089809615,-0.0019168924,0.0074841348,0.009494579,-0.0019645854,-0.017169487,0.0070218793,0.02050066,-0.020016393,-0.0055617397,-0.010184294,-0.029334873,0.0015857928,0.01724286,0.016817292,0.006691697,0.044992857,0.022305656,0.02923215,-0.017536355,-0.002036125,-0.027529877,-0.015995504,0.015907455,0.014175832,-0.017536355,-0.0012611134,-0.015349814,-0.00068466994,0.020236515,0.0064348886,0.005913934,0.010712585,0.038301162,0.011350938,0.0016940193,0.04290904,-0.013214635,-0.021410495,0.024418825,0.02603305,0.037596773,-0.0048463442,0.009986184,-0.008489357,0.0021737008,-0.023332892,0.0052499007,-0.0062184357,-0.012011303,-0.016333023,0.018592939,-0.014029085,-0.0015362655,-0.009978847,0.038183764,0.009501916,0.020001717,-0.02695756,-0.013735589,-0.026077073,0.0016628354,-0.007495141,-0.017081438,-0.0056974813,-0.008819539,-0.013808963,0.010543825,0.009707363,0.028689183,-0.021381145,0.0055874204,-0.0039071585,-0.019414727,-0.022672527,0.009024986,-0.010110919,0.009560616,0.025035165,-0.010771285,0.019590823,0.0035072712,0.015085668,-0.021777365,0.008951613,-0.00022161202,0.019898994,0.0043767514,0.029980564,-0.020823505,-0.021307772,-0.025812928,-0.022012161,0.0146014,-0.00006895998,0.11393495,-0.0033935416,-0.027221706,0.010984069,-0.018138021,0.0004755544,0.008914925,0.0047839764,-0.008812202,-0.026517317,0.035219457,0.01690534,-0.033546533,-0.009399193,0.0011253718,-0.018093998,0.029100077,-0.009252445,0.00086260156,0.019737571,0.021293098,0.017595055,0.020295212,0.009810086,-0.015980829,-0.030435482,0.0006851285,0.01157106,-0.017404282,-0.040091485,0.017683104,-0.028982678,0.0021663636,-0.020045742,-0.016582495,-0.037391324,-0.02591565,-0.021322448,0.018636964,0.019135905,-0.011937929,0.013801625,-0.02791142,0.030376783,-0.0034375659,-0.019047856,0.0031404018,-0.0028377345,-0.02148387],"SELECT contest_id, YEAR(submission_date) AS submission_period, COUNT(*),\n \"Y\" AS sub_type\n FROM submissions\n GROUP BY 1, 2\nUNION ALL\nSELECT contest_id, MONTH(submission_date) AS submission_period, COUNT(*),\n \"M\" AS sub_type\n FROM submissions\n GROUP BY 1, 2\nUNION ALL\nSELECT contest_id, DAY(submission_date) AS submission_period, COUNT(*),\n \"D\" AS sub_type\n FROM submissions\n GROUP BY 1, 2\nORDER BY 1, 4, 2\n":[-0.0046605538,-0.0051980433,0.0052778,-0.026506899,-0.038449567,0.009938354,-0.027630426,-0.015077447,-0.0013428567,-0.054955695,0.012109118,0.019696388,-0.02392695,-0.01305926,-0.011020267,-0.0063943905,0.0031053019,0.0031607847,0.017393852,-0.0077121067,0.02732527,0.0074000163,-0.011561225,-0.0028330896,0.0014191455,0.041972727,0.011297681,-0.027977193,-0.006193266,0.023843726,0.009314172,0.0110341385,-0.017879326,-0.011158975,-0.049823537,-0.0023164062,-0.0031295756,-0.0006883333,0.0033307008,0.012948294,0.02753333,0.0061620567,0.0036133162,-0.018004162,0.009355784,0.025383374,0.015576791,-0.018905759,0.0023718888,0.027672037,-0.004733375,0.0056939204,-0.040169533,0.0027290594,-0.0045877327,0.007628883,0.03229098,0.029849738,-0.02413501,-0.010423828,0.012643139,0.013510058,-0.017879326,0.0075872703,-0.017865457,-0.014675196,-0.018198352,0.024273718,-0.014037144,0.02708947,0.0056106965,0.017879326,0.010264315,-0.0017633121,0.012095246,-0.028767822,-0.02553595,0.018281577,0.0075872703,-0.009654004,0.010409957,-0.00075985404,-0.00025053945,0.018656086,0.016672576,0.015119058,0.016020654,0.028060418,-0.034149654,-0.01455036,0.026437545,0.011387841,0.030737462,0.006602451,0.000035841662,0.009931418,-0.027408494,0.038449567,0.011505742,-0.012122988,-0.02052863,0.022775682,0.013225708,-0.011505742,-0.011457195,-0.0045634587,0.0056939204,-0.025785623,-0.0010047585,0.000083874365,-0.0011304617,0.039170846,0.01635355,-0.013489252,0.005423442,-0.017241275,0.019405102,0.0010151615,-0.017504819,-0.018711569,0.003901133,0.015992912,0.015562921,-0.023455346,0.04047469,0.0088495035,-0.02310858,-0.02711721,0.017213533,-0.021000233,0.028656857,0.02632658,0.017366111,0.020833785,-0.012199277,0.01554905,-0.011644449,0.026506899,-0.036785085,0.0013445906,0.013378286,0.0031018343,0.006196733,-0.0018950838,0.022262467,0.025022736,0.023899209,-0.0069284122,-0.013614087,-0.005326347,0.0015985976,-0.017823843,-0.009709487,0.012185406,0.047521003,-0.016575482,0.004719504,0.018253835,0.0040363725,-0.0124212075,0.0027342609,0.025771752,0.00678277,0.010215768,-0.0076427534,0.018517379,0.026645606,-0.016825154,-0.021624414,0.0027949451,0.004168144,-0.0101048015,-0.0009813517,-0.0026891811,0.021860216,0.033012256,0.011332358,-0.01735224,-0.046133935,-0.017033214,0.02192957,-0.006644063,-0.0075317877,0.030543271,0.0018361333,-0.007795331,0.007028975,0.005565617,0.011797027,0.0075040464,0.006751561,0.018600604,-0.02333051,0.0022851971,-0.593,-0.012934424,0.0033532407,-0.02057024,0.0273114,-0.0068659945,-0.015854206,0.0049934504,-0.022872778,0.016006783,0.0075733997,0.018489636,0.021180551,-0.010049319,-0.0034260617,-0.023802115,-0.010326733,-0.029877478,-0.006252216,0.01575711,0.0023874934,0.0011928799,0.007594206,0.026631735,0.010125608,0.006273022,-0.025189184,-0.0067758346,-0.0042583034,-0.0061412505,-0.03470448,0.010389151,0.018101258,-0.0028538955,0.03750636,0.026701089,-0.02671496,0.026798183,0.025480468,0.057924025,-0.02912846,-0.032984514,0.027186563,-0.009057565,0.01176235,0.016866766,-0.013919243,0.005735533,0.028767822,-0.019973801,-0.0211112,-0.0047784545,-0.013676506,-0.00503853,0.020181863,-0.00936272,0.017255146,-0.0033029595,0.009154659,-0.010215768,-0.016533868,0.016436774,-0.0124212075,0.002394429,-0.02014025,0.0018326656,0.009744164,-0.01635355,0.032263238,-0.0029301844,-0.0009718156,0.014994222,0.00816984,0.0047021657,-0.004653618,0.008086615,0.04105726,-0.01873931,-0.0147861615,0.015812593,0.0017962551,0.0076080766,-0.0028226865,-0.0115889665,0.003179857,-0.0053020734,-0.011609772,0.0072543737,0.0010654428,0.027422365,-0.004410881,0.028046547,0.0075803353,-0.0041716117,-0.013815213,0.022567622,-0.024148881,-0.0037173463,0.009855129,-0.056869853,-0.0064602764,0.0077259773,0.005107884,0.007691301,0.02829622,0.014675196,-0.012532174,-0.0014373509,0.020833785,-0.0028001466,0.013711182,-0.009771905,-0.017615784,0.008613702,0.00014705105,-0.03667412,0.03548124,0.007524852,-0.0006813979,-0.0056106965,0.01287894,0.004521847,0.019238655,-0.021998923,0.017019343,0.023996303,0.032207754,0.02190183,-0.006116977,-0.0011321956,0.011214457,0.032180015,0.026562382,-0.012948294,0.008752409,-0.014813903,0.019405102,0.020320568,0.009050629,-0.020667337,-0.0007251773,-0.005253526,-0.005572552,-0.008537414,-0.007830008,-0.013170226,-0.016131619,0.010520923,0.0019956464,0.0011252601,-0.04885259,0.009681745,0.0030342147,0.013197967,0.011547354,-0.013780536,-0.009716422,-0.04066888,-0.036618635,-0.018073516,-0.008364029,-0.012767975,-0.015923558,-0.014730679,0.00011768418,-0.0051217545,-0.010895431,0.0057459357,-0.013066195,-0.025133701,-0.009986901,0.0155351795,0.0019054868,0.012816523,-0.00848193,0.027006244,-0.034843188,0.015174541,-0.034621257,-0.002309471,0.00737921,0.014813903,-0.018905759,-0.013080066,-0.005877707,0.0057910155,-0.025993684,-0.006859059,-0.03684057,0.037423138,0.0031295756,-0.008925793,0.004348463,0.014161981,0.019668646,0.048686143,0.008981275,0.00009080971,-0.008038068,0.023954691,0.020181863,0.0078092017,-0.0066960785,-0.0009926216,0.000004663073,-0.017588042,-0.011124298,-0.003817909,0.019738,0.014619714,0.01495261,-0.03487093,-0.015826464,-0.018891888,0.016922249,0.040197276,-0.024842415,0.022262467,-0.008606766,0.013378286,-0.0032474766,0.008253064,0.040502433,-0.004272174,0.0061828624,0.024301458,0.0008677854,0.007628883,0.020681208,-0.028407184,-0.01244895,0.021666026,-0.00072127616,0.01085382,0.00077675894,-0.000057758443,0.028060418,-0.011131234,-0.012969101,-0.0053991685,-0.013940049,0.0062591513,0.015285507,-0.041085,0.0139539195,-0.01796255,0.021666026,0.021222165,-0.022803424,0.0095985215,-0.01735224,-0.008038068,-0.01933575,-0.0015431149,0.013454575,-0.024870157,-0.010992526,0.017047085,0.008155969,0.021374742,0.0327071,-0.0051182867,0.024786932,-0.0073653394,0.02234569,0.009029822,-0.00006225558,-0.0167558,0.012525238,-0.036646377,-0.008648379,-0.021513449,0.0012006821,-0.020278957,-0.017088696,-0.021069586,0.0014269478,0.00848193,0.016728058,0.021055715,-0.01933575,-0.024495648,0.010590276,0.019529939,0.0045981356,-0.012622333,0.011977346,0.012240889,-0.0031243742,-0.034177393,0.012892812,0.009432073,-0.00020925245,-0.018239966,-0.034593515,0.037423138,0.029156202,-0.0035647687,-0.019627035,0.013981661,-0.021915698,0.015770981,-0.014994222,-0.002574748,0.07240503,0.025133701,0.0083779,-0.026853668,-0.008752409,-0.0150635755,-0.014203592,0.011457195,-0.01246282,0.027200434,-0.005295138,0.010638824,-0.0143423,-0.011443323,0.01951607,-0.008509671,-0.025549822,-0.044136554,-0.02993296,0.026590124,0.0040155663,0.021444095,-0.0033046931,0.016769672,-0.018864146,0.025272407,-0.03070972,-0.02392695,0.006432535,0.00907837,-0.023705019,-0.003679202,0.004435155,-0.020986363,0.02353857,0.0046362802,-0.018267706,-0.022817295,0.03145874,-0.005593358,-0.011048009,-0.04147338,0.009002081,0.023954691,0.032318722,-0.009917547,0.025300149,0.004924097,-0.0020077832,-0.030848427,-0.022567622,-0.0040987907,0.026201744,0.008024197,-0.00012126022,0.015174541,0.025175313,0.012081376,0.010895431,-0.02471758,0.0011018534,0.030293599,-0.016603222,0.0033983204,0.006134315,0.0011582031,-0.006637128,0.01774062,-0.008787085,-0.000120610035,-0.010229638,-0.0020129846,-0.026992373,-0.015715498,-0.0028937738,0.00010543896,-0.00958465,-0.009009017,-0.010312862,-0.028767822,0.0062764897,0.0040155663,0.05320799,-0.007996456,-0.0046120062,-0.00087558763,-0.05886723,0.0059713344,-0.013156354,0.012379596,-0.024856286,-0.029378133,-0.007947909,0.021125069,-0.0032908225,0.013974726,0.020431535,-0.028254608,0.010645759,-0.019460587,-0.04469138,-0.011706867,-0.0054615866,-0.012074441,-0.014370041,-0.007594206,-0.020500889,-0.0008049338,-0.0077814604,0.013523928,0.0056557762,0.0022279804,0.021998923,-0.023288898,0.007878555,0.024662096,0.025785623,-0.0060129464,-0.014536489,-0.0011183248,0.012511368,-0.033594824,-0.010576406,0.005881175,-0.005433845,0.016797412,0.015618403,-0.0039635515,-0.0034035218,-0.024592744,0.013870696,-0.020889267,0.025480468,0.0063181017,0.035564464,0.0012197543,-0.0028209528,0.0006215806,0.016797412,-0.002690915,-0.012143794,-0.009903677,0.042000465,0.036646377,-0.030515531,0.019488327,-0.014245205,-0.032540653,-0.004275642,-0.004955306,-0.009002081,0.033372894,-0.028573632,-0.02353857,-0.018961241,-0.0003402655,0.011214457,0.010292056,-0.029600065,0.010389151,-0.005284735,-0.030182634,0.004410881,0.0014416855,0.023427606,-0.018517379,-0.016298067,0.00438314,0.016214844,0.010090931,0.011491871,-0.008724667,0.011803962,0.0083779,-0.030321341,-0.019030595,-0.022484398,-0.01414811,0.0115889665,0.04244433,0.039004397,0.03928181,-0.00848193,-0.0009952224,0.0009258689,0.021402484,0.012386532,-0.003446868,-0.0072266324,-0.031486478,0.006654466,-0.02014025,0.00072821154,-0.005877707,0.0137250535,0.030293599,0.0007992988,0.020819914,-0.0008014661,-0.031763893,0.012927488,0.019751871,-0.00036974074,-0.011089621,-0.03689605,-0.036008324,0.0070428457,-0.0037936352,0.0055760196,-0.016395163,0.016825154,-0.006935348,0.032401945,-0.013981661,-0.0043970104,0.013329739,0.011054944,-0.03387224,-0.0034919477,-0.0017459738,0.014633584,0.03389998,0.012005087,-0.009217077,-0.011235263,0.0030810283,-0.028601374,-0.00076505553,0.007698236,-0.014259075,0.009383526,-0.0058430308,-0.005645373,0.0075387233,0.015979042,0.0037797645,0.0067272875,-0.0066648694,-0.014744549,-0.04208369,-0.011491871,-0.044164296,0.043526243,0.021693768,0.016728058,0.013399092,0.015687756,0.009979965,0.0015933962,0.0040329047,-0.012379596,0.02091701,0.03251291,0.008932728,-0.006404794,0.006338908,0.011048009,-0.013752795,-0.024037916,0.031236807,0.009771905,0.00374162,0.0028955077,0.0051980433,0.004764584,-0.0032388074,0.0020441937,0.008828698,0.01735224,0.008502737,-0.002084072,0.025965942,-0.030515531,0.0064845504,0.0049171615,0.006935348,-0.0018014566,-0.012095246,-0.027658166,-0.0028365573,-0.008738538,0.0068451883,0.009931418,0.004317254,-0.00563497,0.024620485,-0.03806119,-0.00866225,-0.027061727,0.025494339,-0.009154659,-0.02334438,-0.014397782,0.004240965,0.0016098676,0.0005817023,-0.012206213,-0.0075872703,-0.036785085,0.0063493107,0.022151502,0.0016627497,0.0027463976,-0.004331125,-0.010611082,-0.023788244,-0.011824768,0.0015257766,0.0052673966,0.00007504263,-0.004584265,0.019252526,0.015632274,0.04441397,0.011582031,-0.0059505287,0.034759965,0.003967019,0.012240889,-0.0014607577,0.006616322,0.015021963,-0.040613398,-0.010645759,-0.02251214,-0.009314172,0.011249134,-0.011984281,0.0066509987,0.007989521,0.0227202,0.020265086,-0.01636742,-0.006644063,0.01314942,0.022470526,0.013579411,0.00005136492,-0.01235879,0.030959392,-0.011332358,-0.011082686,-0.0028781693,0.0037277495,0.037589584,-0.015909689,-0.0076427534,-0.0015925292,-0.05409571,-0.0067376904,-0.029821996,0.010645759,-0.03750636,-0.009654004,-0.032596134,-0.026728831,-0.011755414,0.031236807,-0.016797412,0.0077259773,0.03750636,0.0083917705,0.00514256,0.025993684,-0.019529939,-0.026881408,-0.013815213,-0.022956,0.007205826,-0.015313248,-0.035203826,0.025466597,0.008683056,-0.01475842,-0.025133701,0.0035023505,-0.030543271,-0.0005227518,0.013010712,0.026215615,0.00054182403,0.011471066,-0.026562382,0.012636203,-0.019682517,0.0071087317,-0.05742468,-0.0011287278,0.03509286,0.006921477,0.017837714,-0.009556909,-0.008412577,-0.014578101,0.037700552,-0.016603222,0.01335748,0.043304313,-0.034843188,-0.007982586,0.028573632,0.0072543737,-0.0031382449,0.0024308395,0.0075456584,-0.0634723,0.0036861373,-0.016242584,0.013634894,-0.014910998,-0.0070879254,-0.011276876,-0.0072959857,-0.0028001466,-0.008703861,-0.016672576,-0.01636742,0.018281577,0.016242584,0.026867537,-0.002158627,0.02273407,0.015119058,0.008218387,-0.017463205,0.011727673,-0.021832475,0.004161209,0.0041508055,-0.008412577,0.006432535,-0.02571627,0.018267706,-0.009737228,-0.017907068,-0.009688681,-0.013184097,-0.015285507,0.023066968,0.011172845,-0.0031954616,0.0025591434,0.015576791,-0.036396705,0.022026666,-0.010292056,-0.027644297,-0.03650767,-0.009647069,0.025841106,-0.01954381,0.04402559,-0.040114053,0.017393852,-0.008350159,0.008689991,0.1756585,-0.014425524,0.02155506,0.042971414,0.0053783623,0.005659244,0.029794253,-0.011103492,0.00093453814,0.012892812,-0.03514834,-0.01835093,0.017671267,0.0027515993,0.030460048,-0.025674658,-0.029239427,-0.009147724,-0.053513143,-0.010708177,-0.0003862122,0.024426294,-0.02849041,-0.01833706,0.0019696387,-0.012809588,-0.0067758346,0.0020233877,0.035370275,-0.0012180205,-0.006848656,0.0009952224,-0.022650845,-0.0095499735,-0.0040398403,-0.022054406,-0.0072682444,-0.026382063,0.013822149,-0.008565155,0.004761116,-0.012129923,0.031264547,-0.023469217,-0.0065573715,-0.021069586,0.0000896177,0.0065018884,-0.029433616,-0.012573785,-0.021860216,0.014106497,0.050156437,0.0028365573,0.0067480933,-0.021416355,0.021957312,-0.02392695,-0.013322803,-0.016464517,-0.022872778,0.021083457,-0.016630964,0.029183943,0.024259847,-0.0015448488,-0.005007321,0.011769285,0.003998228,-0.028199125,0.0051252223,-0.019502198,-0.015243894,-0.012823458,-0.010715112,-0.009952224,0.0046120062,0.05165447,-0.0067584966,0.011158975,-0.011810897,-0.012851199,-0.015909689,-0.0017208331,-0.0077467836,0.0007048047,0.011290746,0.014924869,-0.0038248443,-0.033428375,-0.009002081,0.010541729,-0.025674658,-0.012573785,0.010694306,-0.0063493107,0.01936349,-0.006009479,-0.0014174117,-0.023621794,-0.030487789,0.03370579,0.008051938,0.013544735,-0.029489098,-0.0066405954,0.001999114,0.008495801,0.029156202,-0.012483626,0.011103492,-0.032818064,-0.013080066,-0.0058326274,0.0057979506,-0.00748324,0.020417664,-0.027852356,-0.015313248,-0.015119058,0.015424213,-0.042804968,0.0098273875,-0.0051321574,-0.020070897,0.0037208141,0.011484936,0.01772675,-0.011006397,-0.037034757,0.036368962,-0.03528705,0.024606613,-0.010701242,-0.000050389637,0.006266087,0.019724129,0.011027203,-0.003061956,-0.0140024675,0.011630578,0.0021967713,0.005891578,0.008731603,-0.00058430305,-0.022650845,0.011318488,0.0034590047,0.003571704,-0.012095246,-0.017449334,0.0063181017,0.009092241,-0.01364183,0.0454404,-0.011769285,-0.018184481,-0.03326193,0.00036063808,0.014536489,0.004095323,0.0044212844,0.037423138,-0.0036202515,-0.028823305,0.0032353397,-0.17521463,0.010215768,0.053901523,0.0051286896,-0.018503508,0.00047073673,0.04727133,-0.024148881,-0.011901057,-0.00058213575,0.025896588,-0.0066336603,-0.041917242,-0.002434307,0.012552979,-0.009411267,0.00089899445,0.03251291,0.012303307,-0.011949604,0.07013024,-0.01386376,-0.014633584,0.013017648,-0.012754105,0.0053436854,-0.009896741,0.01835093,-0.009369655,-0.029627806,0.0016688181,0.0015604532,-0.00092760276,-0.031125842,-0.02534176,0.016436774,-0.0058187568,-0.013697312,-0.002796679,0.013926178,0.008433383,0.0044316873,-0.023191802,0.011595901,0.008072745,0.020597983,0.015937429,0.014113433,0.024994994,-0.0028122836,0.01456423,-0.017823843,0.02455113,-0.012337984,0.010507052,0.014536489,-0.00042890792,0.0017130309,-0.014397782,-0.019862836,-0.0051945755,-0.04208369,0.02851815,0.0031018343,-0.03209679,0.010957849,-0.0103822155,0.0183648,0.0043970104,0.010978656,0.00071130664,0.0065226946,-0.002276528,-0.049379677,0.015784852,0.0078369435,-0.010028513,0.01776836,-0.0036445253,-0.0013307199,-0.027228175,0.05539956,-0.008585961,0.025882717,0.0083779,0.023483088,0.0009952224,0.007892426,-0.029045237,-0.022401173,0.03470448,-0.024828546,-0.012740234,-0.0036202515,0.026409805,0.00093713886,-0.018045776,-0.033539344,0.02708947,-0.0021326195,0.003998228,-0.015521308,-0.029239427,0.036424447,0.03290129,0.012185406,-0.014689066,0.011457195,0.04746552,0.0012613664,-0.020639595,0.033206444,0.0035040844,0.016450645,0.009189336,0.008031133,-0.014481006,-0.0044906377,0.02212376,0.022997614,0.0028365573,-0.019654775,0.040613398,-0.010548664,0.033012256,-0.015465826,-0.08954921,-0.020500889,0.024051785,0.020611854,-0.015132929,0.010631888,0.010139478,0.012532174,-0.029433616,0.040391468,-0.003413925,-0.026423676,-0.024662096,-0.00039249734,0.022623105,-0.012171536,-0.0004187216,-0.053707335,-0.008155969,0.018378671,-0.022151502,-0.028962012,0.015021963,0.005690453,-0.019252526,-0.0021274178,-0.0025262004,0.008086615,0.038837947,0.016797412,0.0031642525,-0.01693612,-0.016228713,-0.0063111666,-0.008253064,-0.019044464,-0.04166757,-0.021416355,0.017837714,-0.02492564,0.010874625,0.01753256,0.04424752,-0.013281191,0.008780151,-0.0118178325,-0.028989755,0.02789397,0.01735224,-0.026895279,-0.01186638,-0.014897127,0.006058026,-0.040335983,-0.01106188,0.021485707,0.012143794,-0.0008946599,-0.039559223,0.037811518,-0.003953148,0.002465516,-0.024370812,0.03326193,0.03234646,0.00007688483,-0.027255917,-0.017490948,-0.003393119,-0.028656857,-0.026659478,0.006997766,-0.025036605,0.024398554,-0.0066267247,0.018961241,-0.00084177783,-0.0035110197,0.006474147,-0.014675196,-0.02291439,-0.011831704,-0.026437545,-0.0036410575,0.014661325,0.004060646,0.010146414,-0.01435617,0.0067480933,-0.0055864225,0.009709487,0.024467908,0.021804733,-0.011484936,-0.03273484,-0.010888496,-0.00078542816,0.013794407,0.015507437,-0.0030480854,-0.04385914,0.00026441013,-0.0715173,0.02190183,0.00652963,0.00888418,0.0127471695,0.0036549284,0.004400478,-0.006657934,-0.015451955,-0.0020060493,-0.006793173,0.021180551,-0.036618635,-0.02708947,-0.0070255073,0.006089235,0.001031633,0.0063007637,0.009445944,0.001095785,-0.0017789167,0.001881213,-0.001530978,0.00652963,-0.027200434,0.0031295756,-0.01875318,0.02315019,-0.008107422,-0.026368193,0.033150963,-0.010728983,-0.009404331,0.010638824,-0.00084827974,-0.04047469,0.007559529,0.0075109815,0.03392772,-0.004733375,-0.014175851,-0.010409957,-0.0023857597,-0.007857749,-0.019890578,0.010874625,-0.0030983665,0.032818064,-0.01617323,-0.02751946,-0.0036098484,0.00043475963,-0.004147338,-0.0030168763,-0.0118178325,-0.033678047,-0.0010732451,0.010042383,0.03251291,-0.008364029,0.051377058,0.024953382,0.016617093,-0.0016298067,-0.002448178,-0.020070897,-0.01793481,-0.00896047,-0.0081629045,-0.0039184717,0.008072745,-0.012143794,-0.017255146,0.010957849,0.019835094,0.020833785,0.010215768,0.018656086,-0.012643139,0.005218849,0.012858135,-0.0030116749,0.007476305,0.030959392,0.033761274,0.034649,-0.014370041,0.016866766,-0.0027290594,-0.02253988,0.00085044705,0.0037312172,0.0069457507,-0.026728831,0.0025435388,0.029183943,0.016478386,-0.006019882,0.015451955,0.046522312,-0.00737921,-0.002361486,-0.002361486,0.0028625648,-0.018267706,0.030626496,-0.0189335,-0.03229098,0.00069960323,0.019904448,0.0042374977,-0.006255684,0.0074416283,0.018239966,0.0009518765,-0.0065365653,-0.01314942,-0.008419512,-0.01954381,-0.012199277,-0.018295448,0.034232877,0.0083779,-0.026992373,0.024759192,-0.005107884,0.003807506,-0.018780923,0.023247287,0.0048755496,-0.003616784,0.0057459357,0.0014477539,-0.033178706,-0.010624953,-0.029655548,-0.013544735,-0.004161209,-0.000112049216,0.08544348,0.007961779,-0.037145723,0.0077883955,-0.016214844,0.028379444,0.019238655,-0.012511368,0.008592896,-0.027852356,0.0015292442,-0.0106596295,-0.04053017,-0.061197508,-0.00056739815,-0.0146058425,0.0041958853,-0.008010327,-0.015035834,-0.0060233497,0.027228175,-0.030515531,0.03531479,0.019862836,-0.019086078,-0.0021534255,0.026284968,-0.00019549012,-0.010097867,-0.02194344,-0.00085348124,-0.020195734,-0.02073669,0.0048824847,-0.015382602,-0.003372313,-0.021097329,-0.0061412505,0.019377362,0.025244666,-0.0024932576,0.0046016034,-0.02571627,0.019474456,0.0034260617,0.0009900209,-0.022151502,-0.0063735847,-0.017255146],"Performance for delete query in sql":[-0.027504649,0.022584546,-0.00018327034,-0.0056531853,-0.035695426,0.03490595,-0.020780038,-0.012554019,-0.018016884,-0.016959555,0.011412104,0.013569054,0.006534293,-0.0074154004,0.014506553,0.0024864853,0.018806357,-0.008000456,0.010065772,-0.028406903,-0.008832221,0.01297695,0.000188557,0.02275372,-0.017001849,-0.007824234,0.013759374,-0.025192624,0.0022785438,0.0040636677,0.01742478,-0.023655973,-0.029746188,0.0046487227,-0.021809172,-0.00295171,-0.011264077,0.0013683599,0.018749965,0.023190748,0.023966122,0.010805902,-0.0027243842,-0.02367007,0.02756104,0.027518747,0.006844443,-0.009692182,-0.0054593417,-0.011595374,0.014971778,0.027081719,-0.03256573,-0.010636729,0.015394709,0.011073758,0.016480234,0.026997132,0.0025640226,0.0071475436,0.013258905,0.0005471677,-0.004250462,0.012969902,-0.027617432,-0.0023737035,0.008740586,-0.015704859,0.011595374,0.010735413,0.023430409,0.030789418,-0.023317628,0.0034327945,-0.0013630732,-0.010453459,0.016155986,0.01984959,0.004412586,-0.0056637586,0.025122136,-0.026221758,-0.009995283,0.0041799736,0.023007477,0.032368362,0.007003042,0.033580765,-0.00094278494,0.0041799736,0.005166814,0.036484897,0.040460452,0.0032371888,0.004683967,0.017213315,-0.018186057,0.03194543,-0.013942644,0.0085079735,-0.023557289,0.004486599,-0.01724151,-0.002953472,-0.012835973,-0.010636729,-0.022570448,-0.022711426,-0.010354775,-0.014901289,-0.0075422795,-0.00015573575,0.016325159,-0.010249042,-0.034990538,0.015281928,-0.009790866,-0.016776286,-0.017960494,-0.012201576,0.024107099,-0.0004700708,0.043984883,-0.034313846,-0.00062514574,-0.00500469,-0.0004253546,-0.03947361,0.02830822,-0.0039050682,0.048665326,0.033749938,0.021245262,0.010108065,-0.011045563,0.036682263,0.0023067393,0.012624508,-0.025319504,-0.022401275,-0.0026538956,0.028322317,-0.004028423,-0.001082,-0.006731661,0.028082656,-0.011687009,-0.0009797915,-0.005667283,-0.030197315,0.00503641,-0.026912546,0.0073872046,-0.000034638535,0.025291309,-0.020469887,-0.03721798,0.00809914,-0.013392833,-0.038092036,0.008613707,0.027152207,0.012744338,0.01810147,0.028040363,0.022514056,0.00015981086,0.024755595,-0.010523947,-0.021964246,0.01755166,0.014429015,-0.015338318,-0.0065871594,0.018806357,0.010305433,0.02354319,-0.0009445472,0.009029589,-0.0068056737,-0.009558254,0.02312026,0.024882475,0.024248077,-0.01736839,-0.013188416,-0.010453459,-0.0026838533,-0.0052619735,-0.00066655775,-0.0051527163,0.030451072,-0.013188416,-0.040347673,-0.6410515,-0.024022514,0.000014827386,0.0026362734,0.017326096,0.010467556,0.03332701,0.0075070355,-0.005438195,0.004659296,0.002787824,0.012448286,0.00720041,-0.0072955694,-0.016099595,-0.0015965666,0.020681353,-0.011228833,0.0013022767,0.0060549704,0.010115113,0.004377342,0.014548846,0.02156951,0.013216612,0.016494332,-0.010841146,-0.01910241,-0.0131320255,0.018073276,-0.010664924,0.016015008,-0.01446426,0.0071299216,0.055601403,-0.003312964,-0.0022397751,-0.0057906383,0.006752807,0.050779983,-0.014577041,0.009114175,0.0061148857,0.0013357588,0.015183243,-0.00043460625,0.0036195894,-0.0035949184,0.005272547,-0.013265953,0.016649406,0.0037499932,-0.0012370748,0.0030962115,-0.00018668464,-0.0032548108,0.061296884,-0.0017895292,0.020878721,0.008557315,0.02070955,-0.009374983,-0.025967998,-0.018510304,-0.040263087,-0.016635308,0.016015008,0.00217986,0.004987068,-0.012265015,0.0002969332,0.010051673,0.015310123,-0.007859479,0.0071475436,0.011137198,0.033890918,-0.029041301,-0.017128728,0.017297901,0.017227413,-0.02515033,0.0061360323,0.0068514915,0.00988955,0.0039614593,-0.016762188,-0.011383908,0.019201092,0.0015710145,0.031099567,0.0020300716,0.00011850895,-0.0069642733,0.004831993,0.015112755,-0.024741497,-0.0022944037,0.003485661,-0.011891426,-0.024769692,-0.011630618,0.01797459,0.003453941,0.025982097,0.00013150528,-0.0015577979,0.0048425663,0.027250892,-0.01773493,0.015028168,-0.017326096,-0.00040530943,-0.000116967014,-0.017833615,-0.027786605,0.025643751,-0.014985875,-0.02063906,-0.0073378626,0.0074576936,0.0012917035,0.03281949,-0.015549784,-0.003887446,0.016719894,-0.0021957196,0.009078931,0.009981185,-0.020935113,0.019934176,0.012145185,0.018157862,-0.02454413,-0.0054804883,-0.01797459,-0.011912572,0.0154792955,-0.019539438,-0.0166917,0.008148481,-0.018707674,-0.011905524,-0.008430436,-0.015535686,-0.03640031,-0.027631529,0.010418214,-0.010044625,0.00131285,-0.0031614136,-0.003290055,-0.026137171,0.028604273,-0.023092063,-0.0063686445,-0.007366058,-0.05734952,-0.02113248,-0.024008416,-0.009156468,0.011327517,0.004518319,-0.0014564706,0.002558736,-0.030338291,-0.0029499477,0.0071545923,-0.003912117,-0.008606657,0.020864625,-0.009685133,0.034285653,0.015620273,0.0004740358,-0.016494332,-0.039642785,-0.019920077,0.03219919,0.005575648,0.026672885,0.013999035,0.0054910616,-0.0052936934,0.015338318,0.03059205,-0.013984937,0.049482994,-0.00828241,0.022514056,0.007471791,0.012377798,-0.03603377,-0.021950148,0.011863231,-0.00068109605,0.0075986707,0.00772555,-0.0064426577,0.019426657,0.016550722,0.0074929376,0.008007504,0.015070462,-0.010270189,0.0111231,0.0064144623,-0.019398462,0.015521589,0.0065977327,0.017213315,-0.012835973,-0.0018661856,0.008599608,-0.0130615365,0.042039398,-0.00095335825,-0.005265498,-0.024078904,-0.007094677,0.02299338,-0.0216259,0.023007477,-0.0076198173,0.0078101363,-0.008211921,0.015916325,0.02732138,0.032114603,-0.009607595,-0.0029658077,0.00024406676,-0.008395191,-0.0002445073,0.014379674,0.036795046,0.030366486,-0.008085042,0.0057201493,-0.021174774,-0.02558736,0.002886508,0.01428099,-0.024093002,-0.012744338,0.008233068,0.015098657,0.0053818044,-0.0034327945,0.019384364,-0.039417222,0.0066470746,-0.010249042,0.03208641,0.0022591595,-0.027391868,-0.02268323,0.015267829,0.022161614,0.024050709,0.010601485,-0.0047685537,0.034003697,0.0041130097,-0.0026715177,-0.0060549704,0.0013260667,0.0047015892,-0.008423387,-0.013611347,0.0046134787,-0.025178526,-0.012772533,-0.035187908,-0.0023719412,0.008656,0.019638123,0.018552598,0.016973654,-0.0154511,-0.015310123,-0.023430409,0.017410683,0.007838332,-0.022175713,-0.030112728,-0.024487738,0.010390019,0.000008060756,0.008536169,0.009628742,0.0309022,0.0010626155,0.0009868403,-0.022232102,0.028026266,0.040601432,0.009276299,-0.02985897,-0.003950886,-0.006241765,0.002796635,-0.042800676,-0.016550722,0.045873977,-0.0066329767,0.00815553,-0.026658786,0.03718978,-0.009600546,0.0024829607,-0.0035191432,-0.012208625,0.025488677,-0.025911607,-0.0013956742,-0.03293227,0.0012758436,0.008275361,0.028759347,-0.02045579,-0.028533783,0.004624052,0.011524885,0.024586422,0.004451355,-0.0022256775,0.008296507,-0.031155959,0.018679477,-0.006329876,-0.025728337,0.023529094,-0.020653158,-0.0053677065,-0.0020741269,-0.009304495,-0.024107099,0.0065906835,-0.003297104,0.002312026,-0.02304977,0.0012952279,-0.009466618,-0.01137686,0.002419521,0.017044142,0.02107609,0.01724151,0.0039403127,0.012293211,-0.0032407132,0.008761732,-0.0057589184,-0.0069501754,0.0073590092,0.015281928,0.0047861757,0.0073026186,0.062311918,0.024431348,-0.021654096,0.016959555,0.009621693,0.012109941,0.0038592506,0.0203994,-0.018806357,0.015549784,-0.022612741,0.0035402896,0.018961431,-0.004116534,0.0046522473,-0.008620755,-0.029717991,-0.035526253,-0.001689083,-0.0021957196,0.020681353,-0.017312,-0.018242449,-0.013710031,-0.021188872,0.0066823186,-0.01415411,0.032255583,0.00016939291,-0.003764091,-0.031663477,-0.010143309,-0.0069431267,-0.021146579,-0.009142371,-0.0065836348,0.00029671294,-0.035554446,0.022542253,0.01760805,0.020667257,0.018693576,-0.009952989,0.0018485634,0.0005273428,-0.02756104,-0.014506553,0.015084559,-0.018749965,-0.024389055,-0.014006084,-0.0029041301,-0.0005934259,-0.021766879,-0.00042601544,-0.0039085927,-0.010573289,0.029802578,-0.005716625,0.017326096,-0.015606175,0.015930422,0.033552572,0.0055826968,0.0008119405,0.0030521562,-0.007344912,0.005110423,-0.004250462,-0.004468977,-0.004246938,0.027603334,-0.010707217,0.018157862,-0.020949211,0.014295087,-0.010975074,-0.009255152,0.00002533184,0.026165366,0.031860843,0.024346761,0.030310096,0.0022626838,0.019313876,0.0101292115,-0.02014564,0.02880164,-0.00087449915,-0.000033729895,-0.012321406,-0.025488677,-0.025108038,-0.0064814263,0.013576103,-0.017593954,0.00033305862,-0.004796749,-0.00528312,-0.014534748,-0.02867476,0.022203907,0.013357589,-0.005487537,-0.039107073,-0.017171022,0.009283348,-0.010065772,-0.0035438142,-0.01000938,-0.0120605985,-0.009255152,-0.009565302,0.008613707,0.012504676,-0.0065589636,-0.037302565,-0.020653158,-0.006939602,-0.032311972,0.0009974136,-0.004035472,0.002680329,0.03262212,0.03468039,0.04807322,-0.0017005374,0.014379674,0.004860189,0.007824234,-0.007732599,0.015296025,-0.015775347,-0.0023878012,-0.0013339967,0.037133392,-0.0062593874,0.014118865,0.009663986,-0.015465198,0.04322361,0.007521133,0.0031103094,-0.028688857,-0.02200654,-0.01366069,-0.003018674,-0.005956286,-0.0074788397,-0.011412104,-0.022387179,0.007429498,0.002639798,0.023867438,-0.006421511,0.018933237,0.0017516416,0.0052901693,0.005748345,-0.006594208,0.006879687,-0.007732599,-0.011567178,-0.0025516872,-0.022711426,-0.0017904103,0.021273458,0.005600319,0.015281928,0.0022115796,-0.0034275078,-0.0028354037,-0.02051218,-0.0015454624,-0.018651282,0.017636247,-0.030986786,0.0060584946,0.0029129412,-0.011017367,0.019905979,-0.0008947646,0.023571387,-0.012568116,-0.028759347,-0.006936078,-0.012300259,0.023035673,0.0033076773,0.0033816902,0.036061965,-0.0055826968,-0.0015481057,-0.012159282,0.016480234,-0.010333628,0.01514095,0.044154055,-0.035695426,-0.004500697,0.015592077,-0.016987752,-0.010636729,-0.011616521,0.041390903,-0.023825144,-0.009311544,-0.007859479,0.002845977,-0.047311947,0.029661601,-0.031099567,0.012673849,0.025643751,-0.0006004747,-0.008994345,0.00090930285,-0.029746188,0.007563426,-0.019511243,-0.019031921,0.0008797858,0.0013877442,-0.007330814,0.01872177,0.007831283,0.012659752,0.0054593417,-0.00506813,0.014619335,-0.007077055,0.0006740472,-0.00435972,0.0064638043,0.03386272,-0.015225536,-0.006340449,0.0029552344,0.0031014981,-0.0008317654,-0.023388116,-0.016903166,-0.013265953,-0.010989172,0.0007277947,0.019299777,0.021104285,0.010968026,0.0033429216,-0.0063052047,-0.032170996,-0.009050735,0.023092063,0.018073276,-0.014295087,0.0026362734,0.014548846,-0.010375922,0.010552143,0.009431374,-0.016663505,0.024431348,0.02516443,-0.0073590092,0.0031772733,0.00075554964,0.00080753496,-0.030338291,0.0144783575,-0.030310096,0.004800273,0.011299321,-0.014386722,-0.012067648,-0.014210501,0.0060549704,0.009318592,0.0049659214,-0.007077055,0.015239635,-0.0004625814,-0.0031772733,0.010432312,-0.01366069,0.017706735,-0.03318603,-0.03468039,0.001082,0.0043350486,0.0052549248,-0.019327972,-0.01848211,-0.012568116,-0.0154511,-0.00036213515,-0.019144703,0.038966097,-0.029830774,-0.0057589184,-0.012159282,0.0029816676,-0.009389081,0.014548846,-0.014492455,-0.011722254,0.009170566,-0.0069466513,-0.0014273941,0.017946396,0.0020212606,-0.012208625,-0.009530058,-0.04147549,-0.011968964,-0.017100533,-0.008366996,0.001894381,0.004380866,-0.00828241,-0.038543165,0.00064320845,0.008204873,-0.00079299667,-0.015126852,0.0016573631,0.017565757,-0.004609954,-0.028322317,0.014774409,-0.00060664245,0.0034222214,-0.039107073,0.006051446,-0.03208641,-0.014288038,0.025347698,0.0023349347,-0.015225536,-0.013576103,0.00055333547,-0.008317654,0.00040310665,0.014746214,0.024727399,-0.017692637,-0.01984959,-0.022203907,0.009036638,0.009114175,-0.013463322,-0.047565702,0.0068691135,0.0210056,0.0013524999,-0.00590342,0.039389025,0.018200155,-0.02317665,-0.030817613,-0.0064919996,-0.01081295,-0.0013146123,-0.0016547198,0.011341615,0.013153172,-0.0037394199,0.036569484,-0.0087828785,-0.016776286,-0.008895661,0.010030527,-0.016155986,0.008881563,-0.01297695,-0.008550267,0.004028423,-0.009360885,-0.018524403,0.0003912117,-0.031748064,-0.013710031,0.025629653,-0.02398022,-0.008127335,-0.01081295,-0.026644688,0.02491067,0.018186057,-0.02120297,0.020202031,0.0047544558,-0.020004664,-0.025855217,-0.0009251628,0.015493393,-0.026954839,-0.013484469,-0.0025129183,-0.011271127,0.008761732,0.021865562,0.21281916,0.010058722,0.0105098495,0.025502773,0.023966122,0.02175278,0.012638605,-0.012596312,-0.014421967,0.011870279,-0.031043177,-0.012074696,0.00081634603,0.0023331726,0.02273962,-0.009797915,-0.017918201,-0.03515971,-0.021400338,-0.028124949,0.014858996,-0.007207459,0.008754684,0.009184664,0.027166305,0.013195465,0.0011833273,0.00067316607,0.0072109834,0.007676208,-0.0002894438,-0.013611347,0.020540377,-0.0020441692,-0.0154088065,0.020794136,-0.012335504,0.00079299667,-0.0025411139,-0.009537107,0.007866527,-0.02335992,-0.0070312372,-0.013667739,-0.0077466965,-0.004888384,-0.016155986,0.017213315,-0.009515961,0.012413042,-0.024741497,-0.0028547882,0.0010775944,-0.00025860503,-0.0007092915,0.0013824576,0.011017367,-0.020314813,0.011517837,-0.0060831658,-0.042744283,0.025629653,-0.013984937,0.0009374983,-0.020878721,0.010700169,-0.028280023,0.012561068,0.025474578,-0.0077960384,0.0032953417,-0.019088311,-0.018157862,0.0027543418,-0.01007282,0.0033517326,0.00081898936,0.017932298,0.025249016,0.034539413,-0.02213342,0.00015694727,-0.015126852,0.0030944494,-0.026983034,-0.016268767,0.019046018,-0.008578462,-0.008388143,-0.0037852374,0.015620273,-0.00087229634,-0.012624508,-0.019426657,0.011257028,0.02211932,0.008648951,0.012518775,-0.018016884,-0.017636247,0.007986357,0.04356195,-0.01910241,-0.0016882018,-0.025671946,0.006439133,0.00080357,0.023261236,0.0037253222,-0.029436037,0.025559165,-0.02416349,-0.012018305,0.019750904,0.005956286,0.007570475,-0.0029164655,0.01149669,-0.032170996,-0.02639093,0.028773444,0.008789928,0.007330814,0.020836428,-0.0040530944,-0.018496208,-0.03256573,-0.017664442,-0.011334566,-0.04925743,0.021301653,-0.033749938,0.009142371,0.008113237,-0.0005524544,0.010862293,0.00041742466,-0.015225536,-0.018453915,-0.03312964,0.02830822,0.0068514915,-0.019581731,0.013033342,0.008169628,0.0042680847,0.0060725925,0.011701107,-0.01056624,-0.008909758,-0.022838306,-0.002682091,0.0022662084,-0.040939774,0.027645627,-0.028378708,-0.002812495,-0.045873977,-0.018806357,0.014358527,-0.023655973,-0.012525823,0.007175739,0.0074929376,-0.030366486,-0.024064807,-0.18225531,0.009692182,0.018242449,-0.020202031,0.019257484,0.018115569,0.01124998,-0.031804454,-0.010545094,0.003950886,0.00025464004,-0.0053994264,-0.031043177,-0.019511243,-0.008042749,-0.007274423,0.013738227,0.016846774,0.02799807,0.007267374,0.024642812,0.011722254,-0.015634371,-0.01384396,-0.00047711967,-0.009001394,0.010700169,0.0138933025,0.004877811,-0.030535659,-0.01631106,0.0027120486,0.004856664,0.010679022,-0.030930396,0.026686981,0.0030750649,0.000582412,0.0033587816,0.02273962,0.015155048,0.03473678,-0.019694513,0.004158827,-0.017720833,0.0040072766,0.0063087293,-0.00096745597,0.005674332,0.011792742,0.013745276,-0.024769692,0.0020212606,0.0013339967,-0.023204846,0.026926644,0.00454299,-0.008613707,-0.018397523,-0.0019349119,-0.034595802,-0.03363716,-0.0029323255,0.020075152,0.0034821366,-0.009346788,-0.018327035,0.019454852,-0.010911634,0.017213315,-0.012377798,0.004468977,0.01285712,0.017946396,0.011877328,0.0033993125,-0.001665293,0.03343979,0.021555413,-0.0028248304,-0.010735413,0.031184154,-0.004215218,0.023148455,0.0035737718,0.029717991,0.007781941,0.0076198173,-0.009226957,-0.00568843,0.03814843,-0.016367452,-0.023712363,0.0044725016,0.0030521562,0.014013133,-0.0057377717,0.013435126,0.017312,-0.002861837,-0.0044795503,-0.0137875695,-0.0032953417,0.011757498,-0.009191712,0.005741296,-0.01656482,0.019708611,0.02960521,0.0030556805,-0.014295087,0.0104746055,0.019708611,0.011017367,0.021033797,0.017650343,0.024473641,-0.007330814,-0.0008656881,-0.030112728,0.05013149,-0.015986813,-0.0114050545,0.00008959761,0.015281928,0.0049588727,-0.08943593,-0.013984937,0.022767816,0.036231138,-0.0058540776,0.010960977,0.0026627067,0.042039398,-0.0154792955,0.018679477,-0.01736839,0.00037425038,-0.016494332,0.0015287214,0.020780038,0.007373107,-0.019483048,-0.008663048,-0.028012168,0.03510332,0.005938664,-0.028096754,0.035300687,-0.007535231,0.0006899071,-0.012490579,-0.026785666,0.040883385,0.009903648,0.025446383,0.0147885075,-0.029097691,0.0042257914,-0.0002023243,-0.017791322,-0.022951087,-0.048214197,-0.009910696,0.0073026186,0.004609954,-0.0048425663,0.0023842768,0.0033957881,-0.004190547,-0.0072532766,-0.023937928,-0.008761732,0.015916325,0.005265498,-0.016593015,-0.0011947817,-0.00027270275,0.00066611724,-0.025982097,0.020991504,-0.007521133,0.053317573,0.026433224,-0.0137523245,0.013364637,-0.0074999863,0.0013331155,0.0072391788,0.034003697,0.020187933,-0.005395902,-0.011799791,-0.009551205,0.003025723,-0.010044625,-0.022908794,0.03084581,-0.012814826,0.000064265776,-0.013449224,0.016522527,-0.015535686,-0.03572362,0.009382032,-0.0045218435,-0.0067034652,-0.013153172,-0.016029106,0.0051315697,0.014041328,0.020202031,-0.000045156758,0.0012397182,-0.016494332,-0.027546942,-0.029323256,0.026954839,0.014760312,-0.030676637,-0.0144783575,0.008881563,-0.008169628,0.010347726,0.012850071,-0.0028724102,-0.0038803972,-0.016494332,-0.06349613,0.008176677,0.0037041756,0.017044142,0.0010758322,0.008641901,-0.005124521,0.001508456,-0.02392383,0.008000456,-0.033749938,0.0031702246,-0.002444192,0.004246938,-0.016663505,-0.004176449,0.006079641,-0.012709093,0.011877328,0.0056531853,-0.007929967,-0.019511243,-0.0033675926,0.007824234,-0.0037182735,-0.0038592506,-0.0210056,0.008867465,-0.008120286,-0.0333834,0.02237308,-0.023444507,0.0010916921,0.017946396,-0.0144783575,-0.012603361,0.009424325,0.0104041165,0.014097719,-0.019454852,-0.01705824,-0.024586422,0.0078101363,-0.031494305,0.0056531853,0.020046957,0.008761732,-0.002354319,-0.020610865,0.019821392,-0.0015269592,0.0080357,0.01910241,-0.012955803,0.005445244,-0.026715178,-0.0049588727,0.0068091983,-0.00062029966,-0.009269251,0.014915387,0.014344429,0.0045394655,-0.005413524,-0.0069924686,-0.01081295,-0.03250934,-0.004500697,0.0062593874,-0.014957679,-0.019807296,0.0038980192,0.016184181,0.008127335,0.01106671,-0.017467074,0.01681858,-0.016522527,-0.007993407,0.018312937,0.035244297,-0.010263139,-0.018933237,-0.005543928,0.02768792,0.013632494,0.0078101363,0.009523009,0.004098912,0.03343979,0.0053923777,0.0044478304,-0.006516671,-0.005610892,-0.03406009,0.015888128,0.001246767,-0.024360858,0.01965222,0.014421967,0.012589263,0.008733537,-0.025234917,0.012293211,-0.025925705,0.0020987978,-0.038092036,-0.035554446,0.0014300373,0.014802605,-0.015592077,-0.0013745276,0.0007907939,0.020850526,0.0031843223,0.0130615365,-0.013442175,-0.025559165,-0.021766879,-8.0366635e-7,-0.006361596,0.0043068533,0.030648442,0.0064250357,0.046945404,0.029999945,-0.0024336188,-0.02799807,0.0020794135,-0.0044020126,0.014069524,-0.024642812,-0.029154083,-0.00809914,-0.020371204,-0.024403151,-0.007986357,0.004412586,0.00084189815,0.084699094,0.024981158,-0.016127791,-0.021217067,-0.0035209053,0.004172925,0.03360896,0.013576103,-0.017664442,-0.04889089,0.05185141,-0.002764915,-0.00048240632,-0.034003697,-0.004116534,0.004299804,-0.020723647,0.00044275649,0.0036759803,0.0104393605,0.027913483,0.014365575,-0.009410228,-0.018933237,-0.01711463,-0.01786181,0.012088794,0.0076057194,0.014534748,-0.027842995,0.027011229,-0.0027296708,-0.013836911,-0.01872177,0.029492429,-0.011997159,-0.019370265,-0.03764091,-0.003436319,0.032114603,0.0076339147,0.02985897,-0.026376832,-0.0066717453,-0.0013172557,0.0026116024,-0.011235882,-0.0058928467,-0.014414918],"List<int> myIDs = GetIDs(); //20,000\nvar inList = myIDs.Distinct(); //5,000 distinct IDs\n//pass inList to SQL\n":[-0.017406821,0.009113228,0.011738839,-0.009884241,-0.051734243,0.012093087,-0.024644613,-0.014642291,-0.023561029,-0.021254938,0.0060118134,-0.0019310041,-0.0039800913,-0.015239651,0.007411444,0.033507783,0.0082866475,0.0044663153,0.02692292,-0.010314897,-0.02454737,0.016073178,0.015114622,0.0011547821,-0.031201692,0.017670771,0.014225527,-0.0062653446,-0.016962273,-0.00810605,0.022407984,-0.021880083,-0.019379502,-0.022908099,-0.032646473,0.007967128,-0.012225063,-0.01562863,0.025033593,-0.001917112,0.018365378,0.0014161275,0.006063909,-0.0060708546,0.00086521835,0.028062075,-0.011780514,0.021254938,-0.012259793,0.009314664,0.0069530043,0.0048136185,-0.031757377,-0.018156996,-0.016031502,-0.014808996,0.035591602,0.016601078,-0.014670075,0.006675162,0.02738136,0.022421876,-0.02638113,0.00021554486,-0.025450356,-0.010432979,-0.023644382,-0.014267203,0.041259587,-0.008724249,0.01897663,0.016906705,-0.0022123195,0.009279934,0.018282024,-0.01982405,0.00035490017,-0.015795337,0.028187104,-0.014024091,0.025130838,-0.014107444,-0.019782374,0.012704341,0.023936117,0.036313992,0.01244039,0.048233427,-0.006074328,-0.022324631,0.004306556,0.028673328,0.021241046,-0.004671224,0.01194722,0.015475817,-0.03900906,0.015003486,-0.0081894025,-0.006213249,-0.0029694398,0.0037717095,0.0033775207,-0.001849388,-0.0076198257,0.00928688,-0.01594815,-0.018545976,0.0017339097,-0.0081894025,0.0015472345,0.018934954,0.025672631,-0.041370723,0.012641826,0.0058103777,-0.025769876,-0.03348,-0.0042058383,-0.009752265,0.021671701,0.011863867,0.011308183,-0.015448033,0.021241046,0.04570506,0.002568305,-0.026478374,0.0059180413,-0.008488083,0.06529295,0.0019553155,0.018837709,0.029895835,-0.02153278,0.010432979,0.02081039,0.016990058,-0.02389444,-0.01148878,0.024005577,0.025881013,0.015281328,0.0023477676,0.017768016,0.0110650705,0.003469556,0.0128085315,0.0002635161,-0.033591136,0.007314199,0.016003719,0.02285253,0.023199834,-0.0011148424,-0.0064077387,0.01792083,-0.0007909824,0.0028704584,-0.013405892,0.016420482,0.015309112,0.010384357,-0.00935634,0.01437834,0.009682805,0.0118082985,-0.0056540915,-0.0034834482,0.0003466517,0.009745319,0.013815709,-0.0195601,0.0029121349,0.015809229,0.011655485,0.0036050042,-0.010231543,-0.0021307033,-0.032479767,-0.00932161,0.026395021,0.025186406,0.020490872,-0.009335502,0.010683037,0.007203062,-0.0040078755,0.0014187323,0.006716838,0.019837942,0.029006738,-0.002163697,-0.02389444,-0.5988058,0.011759676,0.0056888214,-0.018601544,0.03734201,0.009404963,0.008981253,0.018254241,-0.020865958,0.026200531,0.014197743,0.00764761,-0.0023911805,-0.027159087,0.012044465,-0.0151701905,0.020949312,-0.013808764,-0.012968291,0.01152351,-0.036591835,0.021102125,-0.009141012,0.019004416,-0.00932161,0.0054318174,-0.008557543,-0.026964597,0.0064667803,0.00056653784,-0.011530456,-0.0068939626,0.0083838925,0.023338756,0.040537193,-0.020143569,-0.010523278,0.018337592,-0.0017538797,0.026367236,-0.04187084,-0.010898365,0.024464017,-0.015072946,-0.00044975727,0.011322075,-0.002078608,-0.0033983588,0.015906474,-0.028367702,0.008606166,-0.022463553,-0.023602705,-0.021129908,0.014531153,-0.00048275103,0.0030232717,0.010933096,0.033757843,-0.012412606,0.0024623775,-0.00016182144,-0.04720541,-0.013378108,-0.057791203,0.021435535,-0.0183237,-0.014058822,0.010217652,-0.013308647,0.020032432,0.01871268,0.0018615436,-0.007286415,0.02488078,0.001704389,0.028784465,-0.028728897,-0.018365378,0.013009967,0.005501278,-0.014121336,-0.01824035,0.0024849523,0.003959253,0.017768016,-0.022435768,-0.03381341,0.00022856872,0.0039974563,0.0075781494,0.013253079,0.026561726,-0.019685129,0.017795801,0.0041363775,-0.014822888,-0.024991916,0.006244506,-0.01483678,-0.0023130374,-0.013371162,-0.0141352285,0.006470253,0.03828667,0.00009974105,-0.00090646057,-0.0027558485,0.021755055,-0.008786763,0.0073211454,-0.010127353,-0.0026985435,0.0061819917,-0.012398713,-0.032146357,0.017254008,-0.01910166,-0.016698323,-0.01989351,0.02047698,0.016114855,0.008112996,-0.030951634,0.009842564,0.020768713,-0.008453352,0.013912954,0.038064398,-0.023060912,0.005963191,0.0008587064,0.010162083,-0.033841196,-0.0074670124,0.007522581,-0.00004365706,0.00021554486,0.0094188545,-0.02231074,-0.019198904,0.00038029667,-0.010189868,-0.01122483,-0.002497108,-0.016309345,-0.015545278,0.0024780063,-0.023436,0.0037717095,-0.005407506,-0.0031291991,-0.019296149,-0.021018771,-0.013642058,-0.02179673,-0.000103159815,-0.038981277,0.010676092,-0.018532082,-0.018004183,0.015059054,0.01589258,-0.026547834,-0.00764761,-0.033035453,-0.0017417241,0.01674,-0.0031986597,-0.018990522,0.015420249,0.018948847,0.023991685,0.004539249,0.000066855806,-0.0030666846,-0.024755752,0.0076753944,0.023199834,-0.0013067272,0.0020647158,0.0086756265,0.0052720583,-0.033702273,0.026631188,0.0004597422,-0.004282245,0.020532548,-0.026686756,0.042287603,0.008397784,-0.002339085,-0.022519121,0.00083048805,0.0025787242,0.027395254,0.021671701,0.009134066,-0.01589258,0.0072655766,0.046177395,0.0074531203,0.0010236753,-0.01289883,0.014531153,-0.02704795,-0.0025960892,-0.012273685,0.016239883,0.011308183,0.0134892445,0.0042475145,-0.01194722,-0.003301114,-0.010863635,0.02861776,-0.019532315,0.0033202157,0.016045393,0.01069693,0.008071319,-0.017434606,0.049983833,-0.004869187,-0.035063703,-0.020893743,0.028326025,0.012794639,0.020004647,0.001555917,-0.016364913,-0.0052199624,0.015878689,0.0060222326,0.0053276266,0.015448033,0.027450822,-0.029117875,0.020949312,-0.0024589046,0.017017843,0.014475585,0.002868722,0.0007176146,0.022908099,-0.016920598,0.0069946805,0.01289883,0.0009255622,0.03698081,0.00050575985,0.003820332,-0.009439693,0.010328788,-0.012614042,-0.040787254,0.00009724481,0.02914566,0.0018389688,0.028645543,-0.0002756717,-0.014531153,0.03275761,-0.020171354,0.013968523,-0.000692001,0.0051018796,-0.0036327883,-0.005466548,-0.029090092,0.008814548,-0.021296615,-0.013371162,-0.004355178,0.0050636763,0.013739303,0.0076892865,0.017490175,0.01654551,-0.010294058,0.0063521704,-0.024825212,-0.01053717,0.01693449,-0.02276918,-0.007751801,-0.0067342035,0.0043864357,0.0028635124,-0.009050714,-0.0063243858,0.03511927,-0.01141932,0.004410747,-0.00016127879,-0.003927996,0.05795791,0.008418622,-0.044843752,0.01096088,-0.006247979,-0.008112996,-0.01628156,-0.016448265,0.026603403,-0.0010722977,-0.013016913,-0.043676812,-0.004407274,-0.009835619,-0.027478606,-0.009259095,-0.0017061256,0.023866655,-0.017365145,-0.017184548,-0.025367005,-0.015420249,0.030118108,0.0057930127,-0.000043439995,-0.035258193,-0.015378573,0.019949079,0.005119245,-0.00623756,-0.041259587,0.0022539957,-0.017420713,0.011120639,-0.033757843,0.0029121349,0.019685129,-0.008550597,-0.0145867225,-0.011203992,0.020115783,-0.029895835,0.007967128,0.020213028,-0.0012789429,-0.033007666,-0.004303083,-0.014294988,-0.02652005,0.039536964,-0.011440158,0.030646008,0.012343145,0.009953701,0.05053952,-0.0059319334,0.013468407,-0.012690448,-0.021768946,0.010175975,0.00928688,0.009411909,0.008849278,0.030618224,0.011134531,-0.0072516846,0.0014473848,0.018879386,0.017017843,0.016851136,0.020699253,0.014697859,0.011085909,-0.0066682156,-0.010169029,0.01804586,0.010203759,-0.033507783,-0.010113461,-0.0052130166,-0.018282024,0.0050845146,-0.009203527,0.0022696245,-0.0029121349,-0.020532548,-0.03445245,-0.048761327,-0.0043690708,-0.02408893,0.027992614,0.010092623,-0.027992614,-0.00091167015,-0.021810623,0.0037196141,-0.020060215,-0.0006229746,-0.026228316,0.0003277671,-0.010669145,-0.0077379085,0.0027749501,0.02724244,0.04259323,0.008550597,0.0047267927,-0.007501743,-0.0049872696,-0.054679368,0.0417597,-0.029284582,-0.023158157,0.011843029,-0.017768016,0.005094934,-0.009953701,0.0036675187,0.018004183,-0.021435535,0.01654551,-0.017948614,0.02895117,0.008015751,-0.00623756,0.0110998005,-0.018990522,-0.0036362614,0.008627004,-0.002035195,-0.00886317,0.008953469,-0.037508715,0.020171354,0.016489942,0.010398249,0.021768946,-0.0037404522,0.0110998005,-0.021685593,0.0045948173,-0.009529992,0.0126487715,0.0099675935,0.009946755,-0.0008578382,-0.011863867,-0.008057428,-0.02107434,-0.004059971,0.016517727,0.014753427,-0.026325561,0.015906474,-0.008029643,-0.015573062,0.015739767,0.008835386,-0.004310029,0.007175278,-0.015781444,0.00077101245,-0.03464694,-0.01654551,0.017351253,0.028895602,0.00490739,-0.014364448,-0.0104190875,-0.015239651,-0.017573526,0.017101195,-0.02481132,-0.01483678,-0.0128641,0.00093164004,-0.0010853215,0.035619386,0.012877991,0.004296137,-0.020226922,-0.030312598,-0.03925912,-0.023338756,-0.01732347,0.003927996,0.028895602,0.03703638,0.02553371,-0.025367005,0.02683957,-0.012662664,-0.0045878715,0.015448033,0.010280166,0.003459137,0.0056540915,-0.027659204,0.03261869,0.008988199,0.010203759,-0.013697627,-0.0066508506,0.038370024,-0.028451053,0.0027454295,0.0034903942,-0.029090092,0.016337128,0.0046226014,0.01869879,-0.010155137,-0.0340079,-0.026283884,0.0111901,-0.015114622,0.0042197304,0.0067272573,0.050456166,-0.0037335062,0.011773569,-0.008856224,0.009898133,-0.008488083,0.011266506,-0.014072713,0.007182224,0.015211867,-0.00764761,0.04514938,0.020504763,-0.010988664,-0.0014725643,0.02357492,-0.023741627,0.0034400353,-0.012593203,0.006206303,0.011669378,-0.015600846,-0.02986805,0.010780282,0.01910166,0.013662896,0.008321377,0.0020247758,-0.003179558,-0.046649728,0.02153278,-0.0122459,0.016100964,0.009752265,0.02107434,0.020268597,0.0061368425,-0.040453844,-0.020574223,-0.002021303,-0.00962029,0.042454306,0.021352183,-0.011898598,-0.008689519,0.028478839,-0.023144266,-0.000776222,-0.043760166,0.038258888,-0.015392465,0.003952307,-0.019073876,0.0046156556,-0.03645291,-0.004025241,0.011509619,0.021310506,0.00020501725,0.006095166,-0.020796498,-0.017517958,-0.021588348,0.04359346,-0.0030006971,-0.008078266,-0.008439461,-0.009863403,-0.020199137,-0.011884705,0.023255402,0.026811784,0.0072239004,-0.030951634,0.016684432,0.023130374,-0.0025127365,-0.001906693,-0.016434373,0.03570274,-0.03739758,-0.004580925,-0.008001859,0.033035453,0.020588117,-0.007842099,-0.014628398,-0.0016766047,-0.01050244,0.016851136,0.018921062,-0.018282024,0.033757843,-0.0018163942,-0.014892349,-0.022727503,-0.013753195,-0.010634415,0.036591835,-0.03373006,-0.013892116,-0.004778888,-0.016753891,0.0067272573,0.0046226014,-0.0009559512,0.034285743,-0.001856334,-0.029090092,-0.003479975,0.003830751,0.0128641,-0.046538588,-0.018031966,-0.014142174,-0.012065303,-0.0065119294,-0.011919436,-0.001734778,0.013044697,0.0028148901,0.0010080467,0.005865946,-0.020824281,0.000047699883,-0.020838175,0.01221117,-0.026422804,-0.018823817,0.011704108,-0.043176696,-0.00353728,0.005737444,0.030507088,0.029367933,-0.039175767,0.0089326305,0.024658507,-0.019532315,0.0019084294,-0.025769876,0.011565187,-0.033702273,-0.015100731,-0.034813643,0.029201228,-0.0026568673,0.0126487715,-0.009884241,-0.02297756,-0.01483678,0.009655021,-0.018865494,0.0074531203,-0.025519818,-0.011203992,0.00019318724,-0.002733274,-0.0318963,-0.0012693921,0.0027645312,0.00958556,-0.005723552,-0.0025422573,-0.02526976,0.009835619,-0.03256312,-0.006564025,0.0043204483,0.010349627,-0.0060430705,0.0148784565,-0.015253544,0.020727037,-0.00761288,-0.0050706225,-0.036313992,0.008328323,-0.011030341,0.021282721,0.022796962,-0.015017377,-0.022616366,-0.019615669,-0.012884938,0.013204456,0.02087985,0.010252382,-0.003591112,0.012419552,-0.0038376972,-0.019087767,0.014850672,-0.02803429,-0.018921062,-0.011169261,-0.026631188,0.008001859,0.007182224,0.0022887262,0.015614739,0.018532082,-0.02357492,-0.015962042,-0.022074573,-0.01640659,-0.01503127,-0.0012989129,0.019865727,0.0034539273,-0.015059054,0.044065792,-0.0057270247,-0.0070363567,0.01457283,0.01739293,0.012093087,-0.012412606,0.016614972,-0.011926382,0.017559635,-0.020088,-0.03217414,-0.009974539,-0.005067149,-0.0040321867,-0.004636494,-0.01765688,0.0044593695,0.024533477,-0.02685346,0.0006273159,-0.0056714565,-0.007661502,-0.0006186333,-0.027561959,-0.02645059,-0.027339684,0.0072308467,0.02481132,-0.0020404046,-0.01864322,-0.010113461,0.02165781,0.022755286,0.028451053,0.22760843,-0.0012659191,0.010412141,0.040926173,0.0026082448,0.037842125,0.010044,-0.0115165645,-0.019073876,0.0239639,-0.0048865518,-0.012697394,0.0006459834,0.006341751,-0.002490162,-0.0039175767,-0.013496191,-0.02304702,-0.03675854,0.010023162,0.014934025,0.01476732,-0.0021810622,-0.0013544813,0.019282257,0.009300772,-0.0105163315,0.0075781494,0.030368166,-0.0013284336,-0.0058034314,-0.0016088807,-0.0071127634,0.008974307,0.016489942,-0.008814548,-0.004636494,-0.013843494,0.026811784,-0.006109058,0.014350556,-0.008585328,-0.0074461745,-0.0054596015,-0.0056401994,-0.012690448,-0.022213494,0.0046156556,-0.017156763,0.013565651,-0.017212331,-0.014281095,-0.0045774523,0.0037404522,0.0007749196,-0.014253311,0.0044871536,-0.0033271618,-0.036008365,-0.0010757707,0.01503127,0.02408893,0.0019830996,0.0059319334,-0.020685362,0.023991685,-0.03492478,0.008550597,0.011815245,0.001171279,0.003348,-0.008099103,-0.020685362,-0.002210583,-0.020226922,-0.01099561,0.00041285632,0.029117875,0.011231776,0.003594585,-0.02856219,-0.03203522,0.006098639,0.0037473983,-0.010571901,0.006074328,0.0007002495,-0.016684432,-0.022616366,-0.0038759005,0.011412374,-0.017573526,-0.010953934,-0.01686503,0.012905776,0.0066404315,0.017893046,-0.022894207,-0.019407287,-0.038370024,-0.0047615226,0.0484557,0.020101892,0.015962042,-0.030006971,-0.0037300333,-0.016156532,-0.0005001162,0.010544117,-0.020268597,0.005831216,-0.04456591,-0.0062827095,0.0063521704,-0.014058822,0.015128515,-0.011863867,-0.0006459834,0.007050249,0.011676324,0.01686503,-0.048288997,0.016531618,0.012697394,-0.005518643,0.00791156,-0.04437142,0.0126487715,0.007411444,-0.041065097,-0.011592971,-0.023033129,0.018059751,0.005626307,-0.022060681,0.01812921,-0.012766855,-0.004296137,-0.03570274,-0.025436465,0.021935651,-0.013899062,0.01857376,0.012558473,0.012697394,-0.026478374,0.0128641,0.008967361,0.016448265,-0.02690903,-0.009404963,-0.005508224,-0.008870116,0.015503602,0.034091253,0.0049560126,-0.004185,-0.015448033,-0.009786996,-0.007088452,-0.013419785,0.0015446297,0.015100731,-0.0074600666,-0.013711519,-0.024061145,-0.17670771,-0.0002452827,0.034313526,-0.038453378,0.03545268,0.0195601,0.0141352285,0.0066508506,0.003287222,-0.019782374,0.04589955,0.00043087266,-0.0008643501,0.0073072533,-0.004410747,0.0052060704,0.015114622,0.018726572,0.02454737,0.02271361,0.034119036,-0.016392697,-0.023394324,-0.006817556,0.013141942,0.00791156,0.019185012,0.0053276266,0.0016062759,-0.023102589,0.01007873,0.010898365,0.023060912,-0.021227153,-0.008439461,0.015795337,0.0032003962,-0.018212564,-0.011836083,0.005852054,0.044149145,0.015795337,0.011801353,0.025978258,0.028812248,0.013989361,0.005404033,-0.01483678,0.0046990085,-0.007960183,0.017476283,-0.03164624,-0.009842564,0.008745087,0.005504751,0.02546425,0.002832255,-0.0024832159,-0.039175767,-0.008946523,0.00856449,-0.028284349,0.013336431,-0.004421166,-0.01027322,0.0031951868,-0.00020089303,-0.0038550622,-0.016170423,0.013315594,-0.02001854,-0.015989825,0.0066473777,0.0026481845,0.014211635,0.009377179,0.0026811785,0.031729594,-0.0071405475,-0.0028739315,-0.035063703,0.031479534,-0.0025387842,0.038564514,-0.0059180413,0.02304702,-0.0010193341,0.0110998005,0.0047615226,-0.0076198257,0.036202855,-0.039481394,-0.02376941,0.00015205356,0.00600834,0.01096088,0.0056297802,-0.0007549497,0.009043768,-0.014725643,-0.02192176,-0.021685593,-0.009606399,0.017365145,0.015767552,-0.0013579543,0.0050602034,0.0031413548,0.015906474,-0.0053241537,-0.011620755,0.025742091,0.0020473506,0.017740233,0.0022088464,0.036675185,0.001518582,-0.00008682573,0.005282477,0.019462856,0.047511037,-0.027673095,-0.008620058,-0.0018823817,0.0115165645,-0.002511,-0.08979864,-0.0054596015,0.041565213,0.032924317,-0.008092158,0.018018074,-0.010030108,0.0098703485,-0.04278772,0.039092414,-0.0072933612,-0.011085909,-0.0051748133,-0.004764996,0.004664278,-0.0079323985,-0.023644382,-0.006418158,-0.019990755,0.020532548,0.0038932655,-0.013774034,0.027228547,-0.025811551,-0.026936814,-0.00086825725,-0.015767552,0.0120027885,0.0067342035,-0.023449892,0.028006507,-0.02257469,0.0008283174,-0.010162083,-0.023366539,0.002939919,-0.036536265,-0.013016913,0.024394557,-0.0012337936,-0.0029416557,-0.002385971,0.007939344,0.013906009,-0.009689751,-0.024644613,-0.010141245,0.02074093,0.011676324,-0.024241744,-0.011252614,0.008953469,0.0134892445,-0.02408893,0.0008400389,0.024366772,0.02422785,0.017879153,-0.049455933,0.0072516846,0.0020542967,-0.024561262,0.020768713,0.012857154,0.012759909,0.030145893,0.0066369586,-0.03867565,-0.0042405683,-0.02764531,-0.03125726,0.007765693,-0.03689746,0.0055846306,-0.009974539,0.039759237,0.01437834,-0.004542722,-0.00038420383,-0.012877991,-0.026992382,-0.018295918,-0.048372347,0.01667054,0.020490872,0.0049282284,0.0122945225,-0.0016071443,-0.03531376,-0.013009967,-0.041370723,-0.010203759,0.008571436,-0.004310029,-0.015267435,0.01851819,0.01023849,-0.004980324,0.014795104,-0.0068245023,-0.018893277,-0.014947917,-0.039036848,0.0273119,0.003104888,-0.005733971,0.0031621929,0.006074328,-0.0206159,-0.00612295,-0.006230614,0.011641594,-0.03464694,0.005879838,-0.03906463,-0.0151701905,-0.02403336,0.01073166,0.01982405,0.018198673,0.014808996,0.0012268475,0.0024450126,-0.0008587064,0.0028513568,0.005859,-0.00028066416,-0.011030341,-0.02146332,0.025325328,-0.018087536,-0.00525122,0.03078493,-0.023672165,-0.006442469,0.029590208,0.0045600873,-0.02422785,0.013051643,-0.013107211,0.019157229,-0.020449195,-0.0035008134,-0.027631419,0.004407274,-0.030201461,0.011197045,0.025617063,0.020768713,0.007432282,-0.0162121,0.0062410333,0.009648074,0.0076962323,0.009724481,-0.03656405,-0.015197976,-0.029256796,0.017948614,-0.013350324,0.015239651,-0.0071266554,0.012232008,0.011961112,0.047038704,0.007814315,-0.004546195,-0.0049317013,-0.024241744,0.004751104,0.019379502,-0.017754124,0.0018789087,0.0060534896,-0.0058173235,0.02331097,0.025881013,-0.011766623,0.01890717,0.006584863,-0.0063000745,0.041981976,0.02718687,0.003344527,-0.021046557,-0.0016001981,0.04292664,0.038842358,0.010967826,0.04517716,0.013176672,0.0026030352,-0.046177395,0.014920133,-0.009710589,0.0036640456,-0.005265112,0.04509381,-0.012600149,-0.009661967,0.016003719,0.027659204,-0.010203759,-0.0019014834,-0.009571668,0.0034330892,-0.006821029,0.01076639,-0.025825445,-0.00570966,-0.0013223558,0.00060300465,-0.014239419,0.027881477,-0.006289656,0.016323237,-0.014753427,0.02081039,-0.0118082985,-0.01871268,-0.025116947,0.0364807,-0.0050775683,0.014711751,-0.0039974563,-0.0074739587,0.04359346,0.016517727,-0.021671701,-0.027798124,0.0417597,0.0139407385,-0.0022418404,0.0015359471,-0.012551527,-0.0095786145,-0.0024658507,-0.024922457,0.0022835166,0.009141012,-0.019129444,0.043760166,-0.013141942,0.013107211,0.0029312365,-0.01890717,-0.004139851,0.039481394,-0.0055255895,-0.016962273,-0.032868747,0.047900017,-0.012919668,0.009154905,-0.04142629,0.017768016,0.005275531,0.0031951868,0.012989129,-0.009175743,-0.011426265,0.011252614,0.0054457095,0.020185245,-0.01476732,0.0134892445,-0.01562863,0.0055533736,-0.035341542,-0.024186173,-0.05256777,0.013398946,0.015795337,-0.037647635,-0.010620523,0.009425801,0.022255171,0.019643452,-0.0015428931,0.030618224,0.024436232,0.005397087,0.017545743,-0.04031492,0.0020977096,0.016198207,0.0018823817,-0.023727734,-0.0062792366,-0.021171585],"Selecting arrays in nicely printed format in SQL":[-0.027263371,0.008294994,0.021229314,-0.024899665,-0.03831847,0.03685033,-0.014490548,-0.0067681284,-0.037320133,-0.0363218,0.022374462,0.0015516412,-0.017500237,0.0024995094,-0.01764705,0.007964663,0.017324058,0.011011055,0.017045112,-0.02673484,-0.04427912,0.015650379,0.0042539374,0.00397132,-0.0053109988,0.015430158,0.0034905043,-0.028628742,-0.021478897,-0.005035722,0.021875296,0.0042576077,0.0009129999,-0.03549964,-0.04093176,0.012993044,0.0038979133,-0.0042209043,0.011708422,0.017823227,0.025898,-0.010798174,0.00064139394,-0.018865608,0.01932073,0.0132646505,0.003674022,0.006595622,0.0039125946,0.013741796,0.038612098,0.0016562461,-0.027219327,-0.020216295,0.0042869705,-0.0057808035,-0.0039823316,0.021889977,-0.0057037263,-0.009924631,0.041430928,-0.00532201,-0.0101815555,0.032974437,-0.012053435,-0.01733874,0.01868943,-0.0031840298,0.0042649484,-0.028393839,0.03811293,0.016325723,-0.003204217,0.015738467,-0.0131471995,-0.021757843,-0.011884598,0.009763135,0.01921796,-0.026132902,-0.0008152768,-0.0065625883,0.02694038,-0.000032603046,0.020539287,0.010555931,-0.011767147,0.035264738,-0.01838112,0.0018177415,0.012802186,0.028893007,0.0083977645,0.014916308,0.0026995435,0.024694124,-0.015694423,0.020730145,-0.016824892,-0.000032775093,-0.009645684,0.03235782,-0.03623371,-0.00490726,-0.015694423,-0.00091988186,-0.007759123,0.0019801545,-0.008383083,-0.0065001925,0.0076490124,0.029274724,0.028379157,-0.0042539374,0.014857583,-0.0043897405,-0.007300329,-0.043310147,-0.016413812,-0.015180574,0.015899962,0.03156502,0.011297342,-0.018322395,0.021992747,0.012075457,-0.02704315,-0.021816568,-0.015723785,-0.019129872,0.066947214,0.04562981,0.032533996,0.010078785,-0.010592635,0.0015387948,-0.0056156376,0.04806692,-0.03039051,-0.017191926,0.017470874,0.020950366,-0.017030431,-0.013081132,0.002611455,0.021141225,0.018058129,-0.009755794,-0.008808844,-0.009653024,0.0071571856,0.00940344,-0.002932611,0.006184542,0.017103838,0.0016085316,-0.027072513,0.009726431,-0.0175296,0.0030757545,0.025193293,0.009520892,-0.0013873929,0.0051605143,0.022154242,0.021904659,0.011414793,-0.009990697,-0.0018828904,-0.019482225,0.015415477,0.0019783194,-0.009476848,-0.0092566265,0.015356751,-0.01325731,0.04031514,-0.022932356,-0.03059605,0.006034058,0.023681108,0.032856986,0.0018305879,0.019085828,-0.0052742953,0.004584269,0.006298323,-0.0019159234,-0.015224618,-0.0063423673,0.009653024,0.022638729,-0.03458939,-0.026426531,-0.60088056,-0.0252667,0.00855926,-0.04739158,0.027924035,0.031476934,0.004305322,0.010614657,-0.0015314542,-0.012692075,0.003050062,0.015283343,0.015547609,-0.015400795,-0.00019418454,-0.031476934,0.018014085,-0.043926768,0.010937648,0.03623371,-0.0029271054,0.014681406,0.010666042,-0.0052375915,0.022550639,0.019379456,-0.024576673,-0.011018395,-0.012728779,0.019761173,-0.020803552,0.01023294,-0.0175296,-0.012185567,0.0553489,0.021317402,-0.031858653,0.019012421,0.025002435,0.05367522,-0.018175581,-0.014776835,0.023651745,-0.0034262731,0.0024261023,0.013697752,0.0000011720751,0.0062359273,-0.0022939697,-0.025692461,-0.0005294482,-0.012295677,-0.009425462,-0.0123617435,0.02412155,0.0038869022,0.026749521,-0.0110404175,0.022506595,-0.0006877321,-0.014497888,-0.0087648,-0.032064192,-0.006408434,-0.029171953,0.005659682,0.026529301,-0.020172251,0.01429969,-0.015444839,0.005366054,0.030919041,-0.00076802104,0.0062909825,-0.003017029,0.033884685,0.007425121,0.00991729,-0.012266315,0.00084601605,-0.001759016,0.0008547331,-0.023035126,-0.0035473946,0.0044227736,0.013139859,-0.045042552,-0.012178226,0.0043420256,0.01367573,0.0014452009,0.0076636937,-0.0035106912,-0.0069773383,0.002391234,-0.006595622,-0.0048962487,0.00044067157,-0.0017599335,-0.02986198,-0.030419873,-0.0074618245,-0.012229611,0.015841236,0.035264738,0.00012983868,0.010467842,-0.004514532,0.0110404175,-0.007927959,0.003070249,0.008933635,-0.029289406,-0.0016846913,0.020025438,-0.038259745,0.0030610731,-0.0069553163,-0.051326197,0.0006372648,0.03561709,0.013668389,0.03541155,-0.009638343,0.01159097,0.010188896,0.020906322,-0.0026793566,-0.014108831,0.002943622,0.0005023794,0.007392088,0.03100713,-0.0330038,-0.028158937,-0.010732108,-0.011422134,0.0023710472,0.0014864923,-0.024473904,0.015635697,-0.00037368765,-0.0022003758,-0.025472239,-0.0007056251,-0.010401776,-0.029671121,-0.0034501303,-0.022888312,0.008272972,-0.032299094,0.014997057,-0.017588325,0.023681108,0.004514532,-0.0039639794,-0.015004397,-0.020686101,-0.01597337,-0.021478897,-0.008757459,0.004375059,-0.018630704,-0.020847596,-0.010658701,-0.026749521,-0.018645385,0.028232343,-0.008735437,-0.0125452615,0.020377792,0.0110404175,0.00066295726,0.026690796,-0.044455297,0.011943324,-0.0132646505,-0.013558279,0.025721824,0.0023325083,0.022286374,0.025927363,-0.00062350096,-0.015753148,0.013506894,0.022301055,-0.011003714,0.008471171,-0.014791517,0.013712433,0.0060597504,0.010240281,-0.005512868,0.0116864,0.003707055,0.030830953,-0.017779183,0.0010653195,-0.009087791,0.009564936,0.017353421,0.021655073,0.01701575,-0.0181609,0.024870303,-0.030096883,-0.0050283815,-0.007480176,-0.0022260682,0.011561607,0.013815203,-0.017382784,-0.0072746365,0.008302335,0.00013293554,0.016032096,0.016487218,-0.0140060615,-0.0083977645,0.008199565,0.021684436,-0.0042686188,0.040491316,0.0031785243,-0.0028445225,-0.00897768,-0.0007189301,0.011679059,0.007876574,-0.0067791394,-0.012802186,0.0057404297,0.0023655416,-0.005292647,0.010989033,0.0137050925,0.032416545,-0.0040006833,0.03191738,0.008082114,0.0037529345,0.024180276,-0.0024940039,0.0047751274,0.021214632,0.004503521,0.020935684,0.027718494,-0.008192224,-0.000107013686,-0.030126246,0.0064231153,-0.049241435,0.02328471,0.020098845,0.007281977,0.00522291,0.010409117,0.02663207,0.011466178,-0.00028078188,-0.005784474,0.01921796,-0.004125475,-0.002883061,0.005021041,0.021097181,-0.017999403,-0.0056266487,0.0017636039,0.0070727672,-0.035763904,0.006933294,0.0024609708,-0.006140498,-0.01503376,-0.003310657,-0.006085443,0.029318769,0.020876959,-0.034442578,-0.03573454,0.024796896,0.03112458,0.0025875978,-0.018571978,-0.002306816,0.016208272,-0.0057918145,-0.02078887,0.016090821,0.008706074,0.018836243,0.0047567757,-0.041842006,0.034736205,0.03312125,0.00085748587,-0.0016892793,0.008331698,-0.009535573,-0.0069479756,-0.009271308,-0.019350093,0.066183776,0.012581965,0.009153857,-0.023431525,0.0042025526,-0.03740822,0.0048962487,-0.022198286,-0.0047787977,0.020583332,-0.002883061,-0.020612694,-0.009770475,0.004371389,0.026676115,0.006129487,-0.020025438,-0.07129291,-0.002517861,0.03112458,0.023739833,0.014373097,0.010379754,-0.014270327,-0.0281883,-0.002413256,-0.000469805,-0.0036152962,-0.008713415,0.011612992,-0.010203578,-0.018219626,0.040021513,-0.025589691,0.0041511673,0.00016849207,-0.013169222,-0.026778884,-0.020172251,-0.027263371,0.005127481,-0.004606291,0.019599676,0.009638343,0.031682473,0.018131537,0.027131239,-0.02494371,0.019966712,-0.03999215,-0.0071755373,0.030713502,0.020656738,0.008742778,0.004437455,0.016560625,0.034912385,-0.0096970685,-0.013925314,-0.006588281,0.0057367594,0.009638343,0.0076636937,-0.0047861384,-0.0027527637,-0.017514918,-0.005608297,0.027601043,-0.017206607,-0.002789467,-0.0040337164,-0.0027913023,0.009542914,-0.004573258,-0.002119628,0.010218259,-0.010768811,-0.020010756,-0.00250685,-0.040667493,-0.01221493,0.029010458,0.017603006,0.0022040461,-0.010475183,-0.033473607,-0.022682773,0.019863943,-0.016986387,0.006713073,-0.010365073,-0.012266315,-0.039140627,-0.0013176561,0.014211601,0.027645087,0.009653024,0.027175283,0.021082498,0.0006436879,-0.03235782,-0.009036405,0.013580301,-0.03799548,-0.012904956,-0.013088473,-0.0030188642,-0.005388076,0.008757459,0.018175581,-0.0076857163,-0.019232642,0.02746891,-0.010078785,-0.016017415,0.033532333,0.01588528,0.0016709275,0.004811831,-0.011157868,0.009572277,-0.007318681,-0.016384449,-0.025956726,-0.013543597,0.0058138366,-0.011047758,0.0010139346,0.030507961,-0.029950067,-0.028540654,-0.017632369,-0.018865608,0.023519613,0.02714592,0.0044007516,0.009777816,-0.003466647,-0.016824892,0.008177543,0.011825873,-0.046833687,0.047685206,0.005659682,-0.0068892497,0.024385815,-0.024973072,-0.0398747,0.00339324,0.0108789215,0.011679059,0.0144465035,-0.004312663,0.0015654049,-0.005773463,-0.0114882,0.0032390852,0.022198286,-0.032856986,-0.004019035,-0.0015580643,-0.006441467,0.0033326792,0.025560329,-0.022110198,-0.01962904,-0.00036565878,-0.012692075,-0.005292647,0.032181643,0.011913961,-0.017280014,-0.0037327474,-0.011994708,-0.03605753,-0.008309675,-0.015298025,-0.006753447,0.036468614,0.015503565,0.029289406,-0.0094401445,0.01920328,-0.015165892,-0.02403346,0.018939015,0.008001367,-0.009704409,0.028467245,0.00013763818,0.024356453,-0.008265631,0.0057808035,-0.015298025,0.010108148,0.028966414,0.001242414,0.003738253,-0.006547907,-0.01660467,-0.016751485,-0.019673085,-0.010152192,0.008500534,-0.026911017,0.0014892451,0.014916308,0.0024187616,0.009623662,-0.008206906,0.021875296,-0.0056817043,0.028966414,-0.0053733946,0.015253981,-0.012170886,-0.0027435878,-0.020069482,-0.021273358,-0.0031491616,0.020480562,0.03291571,0.009520892,0.009131835,0.00741411,-0.013763818,-0.00052623666,0.000105809355,-0.008339039,-0.008243609,-0.00048035727,-0.02015757,-0.019863943,-0.004312663,0.027689131,0.013947336,-0.0072526145,0.02172848,-0.018102173,-0.022095516,-0.006386412,-0.021566985,0.030008795,0.000605608,-0.007278307,0.004250267,-0.025530966,-0.025075842,-0.010798174,-0.0062616197,-0.003319833,0.014637362,0.03312125,-0.011752466,-0.030772228,0.0037621104,-0.00918322,-0.0024664763,-0.018880289,0.054967184,-0.014975034,-0.0015975205,-0.023974735,0.005857881,-0.021655073,0.0061588497,0.0008625326,0.0047053904,0.018425165,-0.002987666,-0.010974351,0.01973181,-0.05000487,0.020935684,0.009484189,-0.032768898,-0.020818233,-0.016663397,0.0039786613,0.007538902,-0.002567411,0.027512955,0.008170202,0.03362042,0.007582946,0.0067828097,0.012391107,-0.030977767,0.004125475,0.03382596,-0.028760875,0.0006583693,0.019496907,0.02745423,0.013829884,-0.0009643849,-0.0033143274,-0.0044851694,-0.014387778,-0.002079254,0.008970339,-0.014894286,0.025707142,0.001300222,-0.01691298,-0.013910633,-0.01378584,0.02244787,0.011025736,-0.01190662,-0.024694124,0.0070544155,0.0062506087,0.015606334,0.0034299435,-0.014497888,0.029083865,0.019482225,-0.0204512,-0.0057441,-0.018219626,0.0066323252,-0.0317412,0.025310744,-0.00096530246,0.027777221,0.00094970345,-0.027057832,0.0079353,0.0067571173,0.006063421,0.014901627,0.003927276,-0.008713415,-0.00010070527,0.014820879,0.02203679,0.008750118,-0.018836243,-0.010166873,-0.021566985,0.007972004,-0.0019691435,-0.018983059,0.0062799715,-0.04122539,0.015811874,0.004125475,-0.03362042,-0.0044117626,-0.018718792,0.016545944,-0.025560329,-0.015606334,-0.027747858,0.006298323,-0.013462849,0.03144757,0.012537921,0.0052486025,0.013169222,0.03538219,0.02349025,0.021420171,-0.028100211,-0.0067938208,-0.014534592,-0.011759806,-0.012714097,-0.006390082,-0.026426531,0.033268064,0.027087195,-0.021757843,-0.044660836,-0.00427963,-0.017881952,-0.007267296,-0.016898299,0.0060707615,0.020642057,0.0038428581,-0.015753148,0.01973181,-0.015026419,-0.009865905,-0.013815203,-0.01461534,-0.013374761,-0.007898596,0.017089156,-0.015797192,-0.049975507,-0.017573643,0.013763818,0.0039236057,0.006808502,-0.011825873,0.028129574,0.011084462,-0.0074985283,-0.015430158,-0.021170588,0.014710769,0.016325723,-0.03338552,-0.0019966713,0.013543597,-0.00032849645,0.0046319836,0.023005763,0.0018994069,-0.0037492642,-0.023137895,-0.022638729,-0.01733874,0.011994708,0.0107614705,0.036468614,0.022124879,0.0088161845,0.036204346,0.0064671594,0.008801503,0.023857284,-0.0028683797,0.008419787,-0.0031821947,0.020142889,0.016722122,-0.011003714,0.0014351074,-0.006617644,0.0011745124,-0.008882251,0.0037419233,-0.010467842,-0.017573643,-0.023093851,0.0075315614,-0.012413129,0.0052742953,-0.0060413987,-0.03224037,-0.0064598187,-0.00224442,0.01200939,-0.022330418,0.012611328,0.019893305,-0.030977767,0.0068782386,-0.0023490249,0.0008671206,0.0035859335,0.014784176,0.18463336,-0.015518246,0.010996373,0.045571085,0.0009244698,0.014461185,0.005986343,-0.005777133,0.0066910507,0.016531263,-0.017764501,-0.020744827,-0.0034226028,0.003905254,0.03059605,-0.0058725625,-0.0073884176,-0.038788274,-0.054791007,-0.020935684,-0.00480082,-0.007883915,-0.0017736973,-0.010952329,0.01920328,0.010489864,0.0046429946,0.01795536,0.018190263,-0.0031509968,0.00002276765,-0.0057477704,-0.0023214973,-0.0126627125,0.012721438,-0.0029509626,-0.0034317786,0.02776254,-0.012736119,0.00048678037,-0.009014383,-0.03582263,-0.0053733946,-0.016678078,-0.007259955,-0.027116558,-0.022947038,0.0024316078,-0.013771159,-0.0041511673,-0.008904273,0.00960164,0.0233728,0.024987753,0.00668371,-0.017294696,0.032945074,0.010607316,-0.02287363,0.011539585,-0.016208272,0.026294399,-0.015576972,0.009153857,-0.0035932742,0.026588026,0.003382229,0.0200548,0.007737101,-0.0036978791,0.019247323,-0.008610644,0.0052082287,0.011568948,-0.030419873,0.0009304341,0.038670823,0.032945074,0.011003714,0.021449534,-0.03338552,-0.020084163,-0.027821265,0.014424481,-0.031036492,-0.040873036,-0.0035896038,-0.008662029,-0.025648417,-0.007215911,0.0039566387,-0.017001068,-0.015224618,-0.0053293505,0.012772824,0.013220606,0.02318194,0.017911315,-0.015988052,-0.008206906,-0.021229314,0.06066357,0.0057441,0.0044191033,-0.008889591,-0.005189877,-0.0036703516,0.014791517,0.006305664,-0.008808844,-0.013859247,-0.0409024,-0.0036942088,0.006804832,0.0027839616,-0.0036483293,-0.010328369,-0.020113526,0.0051641846,-0.012317699,0.0012671888,-0.041107938,0.01858666,0.0144465035,0.0030243697,0.00028514044,-0.04968188,0.018792199,0.002275618,-0.0350592,0.0077958265,-0.03341488,0.0071902187,-0.011451497,-0.014130853,0.01471811,-0.0032611073,0.0035987797,-0.003341855,-0.013807862,0.017059794,-0.028804919,-0.00086482655,-0.012985704,0.0037455938,-0.008867569,-0.00407409,0.004162179,0.0150484415,-0.031095218,-0.009770475,-0.014160216,0.010276984,-0.018777518,0.024738168,-0.037349496,-0.0028518632,-0.017808545,0.022374462,0.029744528,-0.005399087,0.012178226,0.0469805,0.0056266487,-0.022154242,-0.017368102,-0.18921396,0.0111798905,0.0051862067,-0.038289107,0.004947634,-0.0011148693,0.026705477,-0.013829884,0.009197901,0.005806496,0.010240281,-0.0045438954,-0.03990406,0.005281636,0.01711852,-0.025560329,-0.00038997486,0.030919041,0.022110198,0.020524606,0.029568352,-0.013294013,0.009330033,-0.008082114,-0.00751688,0.0028702149,0.0038428581,0.013418805,0.0042539374,-0.026749521,0.017309377,-0.0069112717,0.0037052198,-0.022110198,-0.0028665445,0.02203679,-0.0138886105,-0.01597337,0.004459477,0.02745423,0.022066154,0.014167557,-0.008008707,0.018175581,0.0181609,0.052265804,0.014226282,-0.032005467,0.0029216,-0.014255646,0.014174897,-0.041959457,0.025912682,0.008001367,0.021434853,0.011356068,0.0026151254,-0.0041695195,-0.009895268,-0.017881952,-0.0062616197,-0.038553372,0.0018957366,0.029274724,-0.011612992,0.014050106,-0.025398832,0.0069920197,-0.0076269903,0.018674748,-0.017353421,-0.0013415135,0.002789467,-0.030537324,0.0064377966,0.004360378,-0.019966712,0.004261278,-0.017059794,-0.0043200036,-0.017397467,0.041489653,0.0014864923,0.0016690923,0.042341176,0.014402459,-0.003780462,0.01095967,-0.0066323252,0.012119501,0.029215997,-0.01889497,-0.009968675,-0.008779481,0.028628742,0.021126544,0.011752466,0.008632666,0.0018535275,-0.03153566,0.01033571,-0.0076416717,0.009484189,0.0077003976,-0.0039566387,0.018880289,-0.004305322,0.019467544,0.06383476,0.0070544155,-0.025207974,0.030214334,-0.0025233666,0.013822543,0.017940678,0.016134866,-0.001137809,-0.01607614,0.00908045,-0.009462167,0.02329939,-0.025046479,-0.01795536,0.01482822,0.034207676,-0.010247622,-0.117921054,-0.017485555,0.027601043,0.027336778,-0.023270028,-0.0048081605,-0.006034058,0.025707142,-0.041753918,0.021801887,-0.008485853,-0.02454731,-0.018395802,-0.0023820582,0.003185865,0.028379157,-0.02757168,-0.00089831854,0.0128462305,0.02516393,-0.032827623,-0.0039823316,0.030684138,-0.0019085828,-0.0047898088,-0.008272972,-0.021655073,0.018498572,0.00082307635,0.010790833,-0.004019035,-0.008830866,0.010908284,-0.014850242,-0.033444244,-0.045482997,-0.025149249,-0.018146219,-0.003729077,-0.006848876,-0.01013017,-0.005545901,0.021963384,-0.0076269903,0.0116203325,0.012471855,-0.033091888,0.025354788,0.03573454,-0.012956341,-0.015811874,-0.010842218,0.0005812919,0.0018581154,0.02172848,0.024341771,0.0138445655,0.016942343,0.012126842,0.014908968,-0.029215997,0.0143290525,-0.018527934,0.03925808,0.030537324,0.011715762,-0.002484828,-0.003466647,0.0056853746,-0.009131835,-0.027791902,0.019115191,-0.04101985,0.016237635,0.00054871757,0.013528916,-0.0317412,-0.008948317,0.01576783,-0.028467245,-0.014013402,-0.016046777,-0.004980667,-0.015914645,0.0029839957,0.0131031545,-0.013294013,-0.028584698,-0.021537622,-0.02630908,0.010291666,0.026749521,0.006610303,-0.0023233325,-0.031242032,0.00887491,0.020025438,-0.0062689604,0.015107167,-0.006595622,-0.030008795,0.011077121,-0.060604844,0.012391107,-0.017793864,-0.003121634,-0.011811191,0.0031032823,-0.01368307,-0.020392474,-0.0010662371,-0.0012800351,-0.03673288,0.011165209,-0.0071645263,0.004826512,0.0044080922,-0.03194674,0.008133499,-0.0103210285,0.019394137,0.008463831,-0.04063813,-0.020832915,0.0034648117,-0.014123512,0.0022609364,-0.002528872,-0.0363218,0.008625326,-0.036879692,-0.011099143,0.025736505,-0.0029564681,-0.012486536,0.018909652,-0.0330038,-0.05437993,0.013352739,0.015621016,0.022741498,-0.031682473,-0.0072856476,-0.009528233,-0.0072195814,-0.024635399,0.003633648,-0.010489864,0.0017424994,-0.0012626009,-0.013793181,-0.010042082,-0.0126627125,0.0064157746,0.004980667,-0.012339721,-0.009763135,-0.028863644,-0.0010075115,0.016589988,0.016898299,0.0022499254,0.04783202,-0.0035730873,0.011165209,-0.0034611414,-0.020642057,-0.018777518,-0.0065515772,-0.018307714,0.03203483,-0.020304384,-0.009946653,-0.018087491,0.0062175756,0.0033143274,0.03059605,0.0025417183,0.0062909825,0.0051972177,0.0021214632,0.035587728,0.0108789215,-0.01513653,-0.023960054,0.0032629424,0.04501319,0.0024059154,-0.006096454,0.015459521,-0.0071241525,0.026705477,0.0233728,0.013734455,-0.02381324,-0.01973181,-0.015283343,0.01868943,-0.0031601726,0.0064341263,-0.004096112,0.023930691,-0.022521276,0.015224618,-0.0053109988,0.0041107936,-0.03643925,0.013815203,-0.0223451,-0.009829202,0.012897615,0.026074177,-0.019496907,0.0018810552,0.002422432,0.020245658,-0.032005467,0.028643424,-0.041049212,-0.017764501,-0.025296062,0.001525031,-0.003949298,0.0068452056,0.014923649,0.013029748,0.012692075,0.025853956,0.004272289,-0.031212669,0.012736119,0.0003702467,-0.009976015,0.020642057,-0.0014773165,-0.032328457,-0.0014222612,-0.017324058,-0.011187231,0.013205925,-0.011121165,0.08333166,-0.007494858,-0.0144465035,-0.0016700099,-0.006004695,0.013580301,0.016149547,0.0015901797,0.006118476,-0.024694124,0.027953397,0.0054357904,-0.022829587,-0.047127314,-0.0053697242,-0.012692075,-0.008206906,-0.009285989,-0.012200248,-0.005667023,0.018850924,0.0093960995,0.015298025,0.019041784,-0.018865608,0.003997013,0.025648417,0.010812855,-0.00004673963,-0.022550639,0.004239256,-0.009153857,-0.027439548,-0.022403825,-0.000014215443,-0.012882934,-0.01493099,-0.0027637747,-0.0014452009,0.011011055,-0.0007010371,0.03153566,-0.030449236,0.004206223,0.0056339893,-0.00017938843,0.005868892,-0.008412446,-0.014373097],"{{0,0,0}}\n{{1,1,1}}\n{{2,2,2}}\n":[0.020685356,-0.011677901,-0.01064646,0.0049735284,-0.02103859,0.008534122,-0.025249135,-0.023807941,-0.0078559145,-0.048265833,0.026506646,0.03475818,-0.015372724,-0.005665866,0.0076581035,0.016785659,0.003885569,0.00869661,0.015697699,-0.0059731794,0.0024744011,0.022691723,-0.0108584,-0.0036806937,-0.019173518,0.021745058,0.0030360424,-0.008965068,-0.011819195,-0.03133888,0.039505642,-0.02921948,-0.0033062662,-0.009742182,-0.01976695,0.015174913,-0.0063617365,-0.0075874566,0.007297805,0.011416509,0.019032223,0.023355803,0.008505864,-0.0070152185,-0.005118354,0.011232827,0.007128253,-0.005941388,-0.014284765,0.016672624,0.02020496,0.029728135,-0.027100079,-0.012052329,0.013140288,-0.008781387,0.017477997,0.01890506,0.008414024,-0.013352228,0.02512197,-0.014447252,-0.028244555,0.012801184,0.004454275,-0.02339819,0.0056870603,-0.0014155834,-0.01170616,-0.002945968,0.028583659,0.014468446,0.0072483527,-0.034645148,0.027877193,-0.03537987,-0.0104274545,-0.024217693,-0.005570493,-0.014256506,0.008067855,-0.0014173497,0.00397741,0.030688932,0.0052172597,0.008265665,0.0068174074,0.02297431,-0.009763376,0.0051748715,0.014094019,0.0036453702,0.016404167,-0.0126386965,0.01181213,-0.007933626,-0.031734504,0.03566246,0.0022165405,-0.013140288,-0.0009775739,-0.0021741525,-0.019159388,-0.015514018,-0.010413325,-0.035577685,0.009636211,-0.00008405855,0.0072695464,-0.00061153556,-0.02038864,0.0078559145,0.008131436,-0.023468837,0.01503362,-0.010180191,0.010900787,0.009911734,-0.0022041774,-0.017520385,0.033373505,0.04962225,0.0025945005,-0.031649727,0.031621467,0.017591031,0.009099296,-0.0082091475,-0.011049146,-0.02061471,0.043094493,0.031621467,-0.0014906456,0.010943175,0.012370239,0.012857702,-0.010498101,-0.0009148749,-0.013062577,0.008322182,0.01267402,0.008922679,-0.012264269,0.02214068,0.002998953,0.0045814393,0.008802581,-0.0017661678,0.007149447,-0.021236401,0.007453228,-0.009855216,0.017675808,0.018113816,-0.0119181005,0.020798393,-0.005453926,0.003631241,0.0078559145,-0.014235312,-0.0066831787,-0.00084290357,-0.008180889,-0.019343069,0.008392829,0.0060190996,0.007389646,0.00006446512,-0.019710433,-0.020544063,-0.017845359,0.011529543,-0.03933609,0.0013546507,-0.009791634,0.0087672565,0.010272032,-0.01138825,-0.04122942,0.02236675,-0.010264968,-0.0010720638,0.0022730578,0.028993411,-0.0007426735,-0.025814308,0.009685664,0.018495308,0.010717106,-0.0058283536,0.013239194,0.017181281,0.01181213,-0.004019798,-0.6162654,-0.04450743,0.0026333563,-0.033825647,0.006333478,0.029247738,0.020091925,0.0044684047,-0.04233151,-0.011939294,-0.014051631,0.040268626,-0.005966115,-0.009332431,-0.003263878,-0.0144825755,-0.007651039,-0.006012035,-0.0029442017,0.022070032,-0.029502066,-0.0014906456,-0.010787752,0.010660589,0.0054150703,0.0043765637,-0.007318999,-0.0052914387,-0.0063405423,0.0072554173,-0.017845359,-0.0049382052,0.01846705,-0.006411189,0.035690717,-0.009099296,-0.028739082,-0.00037906377,0.021745058,0.02427421,-0.011246956,-0.012440885,0.037979674,-0.013253323,-0.017181281,0.013175611,0.010851335,-0.014468446,0.014094019,-0.030180275,0.01288596,-0.0015224366,-0.004397758,0.007820591,0.026506646,-0.019597398,0.031904053,0.016672624,0.009784569,-0.019569138,-0.020162571,0.008640093,-0.030915001,0.009304171,0.0021194012,0.0005130717,-0.03549291,0.005651737,-0.009932928,-0.0034069377,0.003935022,0.026379483,-0.0167574,-0.010356808,0.02902167,0.040014297,0.028908635,0.0007983078,0.008682481,-0.0028135052,-0.02103859,-0.019441975,-0.03846007,-0.017096505,-0.015302078,0.0008062556,-0.02837172,0.01979521,-0.0010075987,0.004726265,0.035690717,0.02944555,-0.014920586,-0.036764547,0.008117307,-0.011035016,-0.0067185024,0.029699877,0.02236675,-0.01845292,-0.0188768,0.0020169637,0.031932313,-0.0144825755,-0.005231389,0.006609,-0.01244795,0.011211633,0.010900787,-0.036227632,-0.011670836,0.0077428794,-0.015118396,-0.024500279,-0.020699486,-0.032921366,0.008428153,-0.014539093,0.0055669607,-0.011338797,0.02061471,-0.0011771509,0.039505642,0.007509745,0.019117,0.015400983,0.01277999,0.030971518,-0.017350832,0.000631405,0.004980593,0.02361013,0.012052329,-0.019399587,0.019032223,0.001747623,-0.009198202,-0.012504468,0.012306657,-0.019710433,-0.013062577,-0.017223667,0.0076227803,-0.025404558,-0.018989837,-0.0038537781,-0.032582264,0.009600888,0.0050194487,-0.015372724,0.0016080957,0.0066125323,-0.006884522,-0.0076369094,0.012483274,-0.013048448,0.007891238,-0.028060874,-0.0016531331,-0.016474813,0.025842566,0.012038199,-0.019441975,-0.023313414,-0.010229643,-0.0022571625,0.0016946379,-0.013161482,-0.002043456,-0.03908176,-0.021377694,-0.007368452,0.0005779784,-0.003874972,-0.009021585,0.020727744,-0.0214766,0.0029918882,-0.0004426458,-0.015966156,-0.004623827,-0.00056561525,-0.016573718,0.008357506,0.025814308,0.014369541,0.0126386965,-0.024796996,-0.01170616,0.028442366,-0.023157991,0.035323355,0.0010579345,-0.003737211,0.011112727,-0.008131436,-0.023539484,-0.0053656176,-0.012320787,0.0052490504,0.03334525,0.0035870867,0.017845359,-0.012539791,0.02447202,-0.036199376,0.0085835755,-0.0062345723,-0.01084427,0.016022675,0.015782475,-0.02488177,-0.021377694,0.002221839,0.014101083,0.027340278,-0.0144967055,0.0022271376,0.020473417,-0.008456412,0.005821289,-0.006389995,0.027665252,0.0026192267,-0.031169329,-0.016418295,0.008788451,0.0004830469,0.028159779,-0.018749638,-0.015796605,0.024966547,0.02296018,0.020289736,0.019993018,0.0122854635,0.021024462,-0.0054927818,-0.00709293,0.014708646,0.020982074,0.005884871,0.008470541,-0.003378679,-0.0027711173,-0.010695912,0.04148375,0.019837597,0.017011728,-0.010745365,0.009812828,-0.013104965,-0.026125154,0.009615017,0.0078559145,0.0063193482,0.0018562423,0.0072695464,0.030378086,0.026068637,0.031395398,-0.0019427845,0.009339496,0.0023631325,0.015358595,-0.018311627,-0.030236792,-0.016460683,-0.021603765,-0.025093712,0.005294971,-0.009275913,-0.00037177833,-0.02361013,-0.0016443022,0.00058062765,-0.0057223835,0.028682565,0.035125546,0.011437703,0.0013811432,-0.02986943,-0.0017043519,0.030123757,-0.018396404,-0.007947755,-0.009834022,0.0074814865,0.003885569,-0.0058990004,-0.0036171116,0.019258294,0.0033133307,-0.0022801226,-0.001273407,0.00408338,0.020049537,-0.016658494,-0.018000782,-0.03696236,-0.021109236,0.014086954,0.0065312884,-0.019258294,0.020007148,0.014256506,-0.0004479443,-0.019710433,0.009261784,-0.035521165,-0.0060544233,-0.016941082,-0.014143472,-0.0006936624,0.015090138,-0.03238445,0.00013809225,-0.0051642745,0.012681085,-0.0043200464,-0.022734111,-0.006725567,-0.005418603,0.010307355,-0.026337095,0.06013448,0.01503362,0.009275913,-0.010286161,0.004927608,-0.000244835,0.006570144,-0.010378002,0.0040092007,-0.020317994,0.017873619,-0.0011559568,-0.04040992,0.013175611,0.0026651472,-0.015457501,-0.027665252,0.0067644226,0.011684966,-0.0083998935,-0.010201385,0.043970514,0.0059555178,-0.010681783,-0.008597705,0.0064889006,0.035097286,0.006767955,-0.03006724,-0.025842566,0.020275606,0.0062204427,0.02105272,-0.027778286,-0.011232827,0.027538087,0.038290516,0.04998961,-0.006736164,-0.018848542,0.009275913,0.003726614,-0.016644364,-0.0021847496,0.0131968055,-0.008322182,0.006499497,0.00526318,-0.013670139,0.0115436725,-0.009579694,-0.00986228,-0.02082665,-0.009396013,0.024147047,-0.0109784985,-0.02664794,0.006534821,-0.029360773,-0.003263878,-0.009049844,-0.004729797,-0.015923768,-0.0119110355,-0.045468222,-0.04747459,0.0004958516,-0.03456037,-0.024585055,-0.025475204,-0.010724171,-0.018311627,-0.00096079527,0.018933319,0.037894897,0.0061851195,0.0014094019,0.0032550471,0.01698347,-0.008258601,-0.020685356,-0.0035182063,-0.0014226481,-0.0057117864,-0.0042388025,0.010568748,0.002566242,-0.008428153,0.002232436,0.00924059,-0.0074814865,0.004464872,-0.0056905923,0.0012062925,0.02062884,0.0043659667,-0.0069551687,-0.0083998935,0.007234223,0.029106446,-0.04597688,0.012115911,-0.014948844,-0.023920976,-0.010448649,0.016220484,0.000035737303,-0.0020540531,-0.0054715876,0.01040626,-0.0137478495,-0.017294316,-0.022903664,0.006845666,-0.0054009412,0.02081252,-0.015782475,-0.03970345,-0.005390344,0.0053762146,-0.015273819,0.035182063,-0.009706859,0.020176701,-0.012914219,-0.0069127805,-0.040296882,0.001601031,0.028866246,-0.00043823037,0.009169943,-0.0019039288,0.013606557,-0.031028036,-0.029417291,0.005736513,-0.0012566284,-0.017492125,-0.013663074,0.0035658928,0.01737909,-0.0010685315,-0.0025044258,-0.026280576,-0.019936502,-0.012172428,-0.0022059435,0.0058036274,0.02064297,0.005609349,0.010766558,-0.01590964,-0.0296151,-0.035973307,-0.055952195,-0.030745449,0.010554618,0.028103262,-0.002894749,0.03374087,0.0287956,0.019230034,0.024005752,-0.00074355665,0.004630892,0.00848467,0.011868647,-0.040099073,0.0019145259,0.019625656,-0.004019798,0.020770133,0.019343069,0.00989054,0.028470624,-0.012101782,0.017237797,0.013055512,-0.047983248,-0.030971518,0.0013926233,-0.013917402,-0.0016080957,-0.016870435,-0.017167151,0.0024514408,0.012377304,0.0048392997,0.013083771,0.034673404,-0.014263571,0.007368452,-0.018170334,0.00343343,-0.025503462,-0.012815313,-0.010208449,-0.017958393,-0.007757009,0.015302078,0.007806462,0.0104345195,0.0072306907,-0.0070187505,0.023977494,-0.033430025,-0.0038820368,0.0013564168,-0.0024620378,-0.023271026,-0.029360773,-0.031084552,-0.019427845,-0.013210935,-0.010038897,-0.020247348,0.006771487,-0.028018486,-0.0052349214,0.008809645,-0.0057965624,0.029502066,0.012977801,0.029134704,0.018085558,-0.013055512,0.005835418,-0.01870725,-0.028654305,0.015570535,0.012737602,0.029134704,-0.028640177,-0.019102871,0.015061879,-0.002704003,-0.00397741,-0.03227142,0.022592818,0.02256456,-0.001336989,-0.027622864,-0.019413717,-0.02687401,-0.030321568,-0.009254719,-0.012440885,-0.003663032,-0.004097509,-0.021617893,0.00741084,-0.024118787,0.059625823,0.021405954,0.018184463,0.011628449,0.013691332,0.0071247206,0.013656009,-0.008640093,0.017562773,-0.0060473583,0.010575812,0.016503071,0.02428834,-0.0037831315,-0.0056128814,-0.009600888,0.036764547,-0.023341672,0.0022500977,-0.0070752683,0.019427845,0.015330336,0.0057435776,-0.022296103,-0.007771138,-0.018000782,-0.002114103,0.02512197,-0.014256506,0.004517857,-0.017916005,-0.009932928,-0.012695214,-0.044563945,-0.0082232775,0.009078102,-0.017364962,-0.017845359,-0.0012813547,-0.009374819,0.025602369,0.020360382,-0.026563164,0.02276237,0.003369848,-0.024203563,0.0024373115,0.003380445,0.01973869,-0.04617469,0.009925863,-0.0008084633,0.005305568,0.007071736,-0.020529935,-0.012518597,-0.010264968,0.01672914,0.0012080588,-0.014058695,0.010914917,0.010957305,0.008491735,0.012695214,-0.014708646,0.022649335,0.023680778,-0.023737295,0.01256805,0.008195018,-0.017746454,0.00998238,-0.011091534,0.00065436517,0.027382664,-0.019512622,0.011444767,0.044959567,0.010441584,-0.023511225,-0.016192226,-0.009706859,0.009671534,-0.010554618,0.002790545,0.008668351,-0.022847146,0.038544845,0.014962973,0.009713923,0.021575505,-0.017859489,-0.018127946,0.019413717,-0.013034319,-0.00029914465,-0.028173909,0.00083716353,0.031367138,0.02596973,0.006315816,0.00023688725,-0.012751731,-0.012221881,-0.030152015,-0.01480755,0.00692691,0.0021529584,0.029671619,0.0038573104,0.03992952,0.0013573,-0.004433081,-0.015160784,-0.0029795251,0.007891238,0.003758405,0.001379377,0.024853513,-0.019908244,-0.015725957,0.007629845,0.019286552,0.019950632,0.013846755,-0.0015374491,-0.010724171,-0.013705462,0.021123366,0.0015083073,-0.00011689823,0.014334218,-0.050074387,-0.004207012,0.0021211675,0.01126815,-0.0065171593,-0.02235262,0.023793813,-0.0075945216,-0.005294971,-0.011699095,0.010964369,0.008435218,-0.004429549,0.029332515,0.02231023,0.0059237266,0.01395979,0.036255892,0.03238445,-0.016178098,0.001389974,-0.033571318,-0.00890855,0.027156595,0.007474422,-0.0062275077,-0.00019946658,-0.012108847,-0.018099688,-0.004316514,-0.011261086,-0.009932928,-0.010674718,0.027622864,0.009396013,-0.033853903,0.0037619374,-0.013578298,-0.030773707,-0.002241267,0.0026404208,0.010455714,-0.0065418854,0.010462778,-0.027580475,-0.0026669134,-0.027764158,0.022451526,0.009374819,-0.018184463,-0.002915943,0.20741874,-0.0073613874,-0.023553614,0.044422653,-0.020784263,-0.004493131,-0.0009254719,-0.01655959,0.007354323,0.016220484,0.01672914,0.0082162125,-0.013797303,-0.01268815,0.010914917,0.006464174,-0.020586452,-0.031112812,-0.027255502,0.00922646,0.0046026334,-0.0017635186,-0.008724869,-0.034023456,0.022070032,0.00233664,-0.008689545,-0.0131968055,0.016997598,0.02386446,-0.022917792,0.010681783,0.0011003226,0.019879984,0.001147126,-0.011805065,-0.003832584,-0.0071847704,0.032130126,0.021080978,0.0018262175,-0.018410534,0.026252318,0.00912049,0.005655269,0.0064677065,-0.012511533,-0.011027952,0.011550738,0.009000391,-0.011861583,-0.0006640791,0.018580085,0.0054998463,-0.00574711,0.0042953203,0.030886741,-0.018989837,0.024683962,0.0017688171,-0.0009784569,0.03540813,-0.017138893,0.022493912,-0.0095585,0.007220094,-0.0059343236,0.018339885,0.010257903,-0.013394617,0.0020240282,0.0068739248,-0.01480755,0.041738078,-0.034362562,-0.015711829,0.029671619,0.0214766,0.010787752,0.01997889,-0.03198883,-0.022479784,0.030208534,-0.012130041,-0.028527142,-0.056093488,0.010173126,0.014291829,0.0051607424,0.0030748982,-0.0055069113,-0.023793813,0.0019728094,0.0038502458,0.02493829,-0.01256805,0.002988356,0.008675416,-0.008103178,-0.0035341016,-0.021632023,0.009417207,0.03181928,-0.003535868,-0.005891936,0.0030289777,0.00022077098,0.009494918,0.013528845,-0.008456412,-0.041342456,-0.01630526,-0.0027940774,0.009177008,-0.01247621,-0.003959748,0.00039186847,-0.0012901856,0.00815263,-0.011847453,0.015358595,-0.017138893,-0.00922646,0.001284004,0.012320787,-0.00536915,-0.013952726,0.013875014,0.023426449,-0.057280354,0.0009784569,-0.0011771509,0.012808248,-0.0054892492,0.0030890275,0.018170334,0.013903272,-0.0039986037,0.0027976097,0.0064359154,-0.0034705198,-0.011571932,0.038177483,-0.016884563,0.007778203,0.0017034688,0.0006790915,-0.010243773,0.000010935062,-0.0447335,-0.023751425,-0.007538004,0.0013387551,-0.00966447,0.009381883,-0.028442366,-0.02794784,-0.04298146,0.007368452,0.023313414,-0.0502722,-0.012172428,0.01590964,-0.02191461,-0.010293226,-0.015584664,-0.18209895,0.010074221,0.030180275,-0.016686752,0.006633726,-0.003505843,0.026436,-0.004231738,-0.02297431,-0.003885569,0.029106446,-0.012094717,-0.012921283,0.013232129,-0.0040798476,0.0020081329,-0.0077075562,0.017068245,0.018127946,0.018650731,0.049537472,-0.033006143,0.014991232,0.01978108,-0.0052808416,-0.009431336,0.009996509,0.023256898,0.011091534,-0.015287948,0.013331034,-0.031056294,0.03973171,0.0018138543,-0.003242684,-0.019569138,0.0018332822,-0.00022032943,-0.00461323,0.026096895,0.00912049,0.017421478,-0.00082082645,0.016785659,0.0077004917,0.034616888,0.011854518,-0.01565531,-0.006450045,-0.022281973,0.016036803,-0.042020664,0.020035407,0.017096505,0.030547637,0.012165364,0.006308751,0.009657405,-0.005937856,-0.011684966,0.007792332,-0.034899477,0.016361779,-0.007283676,-0.0057965624,0.0049735284,-0.0004417627,0.0068174074,-0.037725344,-0.0006707022,-0.0063193482,-0.01672914,0.0007855031,-0.025277393,0.01780297,0.005559896,-0.0034828829,0.0058177565,0.016601978,-0.009622082,-0.024585055,0.03936435,0.015740087,0.008859098,0.032440968,-0.006644323,-0.017591031,0.011310538,-0.017661678,-0.043490116,0.027792417,-0.01214417,0.020713616,-0.014136407,0.006428851,0.0013334567,-0.00698696,-0.0030713659,0.023765553,0.0082091475,0.0052172597,-0.0041398974,-0.033656094,0.012610438,0.020529935,0.008081984,-0.0031137539,0.02578605,0.045835584,0.014553223,-0.0015206705,0.007223626,-0.00665492,0.002315446,-0.005609349,-0.009417207,-0.027580475,0.008986262,0.020487547,0.006284025,0.013119094,0.01482168,-0.009607953,0.009374819,-0.0037089523,0.0085765105,-0.08833665,-0.0060791494,0.0030554703,0.03331699,-0.015146655,0.013232129,-0.009593823,0.014948844,-0.03238445,0.04077728,-0.01719541,-0.04784195,-0.0069692982,0.014510835,-0.00024086113,0.00091222563,-0.021561377,-0.0016133942,-0.022719983,0.023468837,0.015287948,-0.013507651,0.010681783,-0.022734111,0.0007559198,0.015725957,-0.023468837,0.03441908,0.01783123,0.008830839,0.01802904,-0.0055669607,0.00082480034,-0.041596785,-0.011451832,-0.017421478,-0.005750642,-0.018933319,0.0014376605,-0.027410924,-0.010568748,0.005761239,0.0013988048,-0.0017149489,-0.032356195,-0.005312633,-0.025616497,0.03651022,0.010264968,-0.024203563,-0.009487853,-0.0057082544,-0.014023372,0.0089509385,0.0022359684,0.022451526,0.010929046,0.020600582,0.008011337,0.0058636772,-0.019597398,0.028286943,-0.01913113,0.06561667,0.010349743,0.0033239278,-0.03944912,-0.015994415,0.027001172,-0.012412627,-0.023779683,0.0027940774,-0.0026987044,0.030971518,-0.024641573,0.0010570515,-0.0039738775,-0.025051324,0.026732715,-0.050300457,-0.011367056,-0.036001563,-0.0048993495,-0.010731235,0.010031833,0.028230425,-0.007318999,-0.017294316,0.025164358,-0.010872529,-0.003652435,0.021985257,0.021533117,-0.03198883,-0.029304257,-0.014228248,0.004987658,0.004860494,0.020925555,0.0045319865,-0.034927733,-0.00087425305,-0.06556015,0.03306266,0.012243075,-0.0126457615,-0.008943873,0.004217609,0.015796605,-0.018198593,0.0056164134,-0.0154151125,0.007495616,0.024655702,-0.041427232,-0.003663032,-0.016093321,-0.045553,0.02921948,0.012398498,-0.0025697742,0.022861276,-0.014143472,-0.0068138754,-0.0019834065,0.021971127,0.0031808682,0.012101782,-0.0057223835,0.026111024,-0.0036877582,0.0050583044,0.023482967,0.0032144254,0.0053762146,0.033995196,-0.0062663634,-0.019894114,0.0053974087,0.004380096,0.012341981,-0.0041858177,-0.033260472,-0.03309092,-0.004620295,0.0054998463,0.00024527655,0.02704356,-0.008717804,0.019837597,0.017774712,0.0040798476,0.010893723,0.016093321,-0.0013811432,-0.011232827,-0.0080325315,-0.03094326,0.016079191,-0.004789847,0.00341047,-0.01973869,0.03634067,-0.005298503,0.039223053,-0.0027746495,0.016842175,0.012151234,-0.01418586,0.010957305,-0.009247654,-0.030858483,-0.023666648,0.008131436,0.013034319,0.030971518,0.021137496,0.011593125,-0.014849938,0.01978108,-0.0022571625,0.021165755,0.041370712,-0.012871831,-0.027029432,0.024768736,0.030886741,-0.028075002,0.0077216853,0.032977886,-0.013133223,-0.0031420125,-0.033543058,0.016291132,0.004715668,-0.0076581035,0.013620686,0.022847146,-0.00013433913,0.01698347,0.022296103,0.00783472,-0.013408746,0.020558193,-0.005948453,-0.025687143,-0.040325142,0.010441584,-0.015782475,0.001525969,0.007884173,-0.0068739248,0.008852033,0.01612158,-0.02126466,0.010286161,-0.02664794,0.022395007,-0.012984865,-0.02188635,-0.026831621,0.017774712,-0.019018095,0.019074611,-0.011126857,0.0059131295,0.027750028,0.0024991273,0.011861583,-0.0057647717,0.024768736,0.004323579,0.0155987935,0.017689936,-0.006411189,-0.014779292,-0.038431812,0.020713616,-0.010907852,0.027170725,-0.0053868117,0.07053368,0.021632023,-0.009113425,0.018410534,-0.0042458675,0.0020805455,-0.0033751465,0.014327153,-0.00945253,-0.04320753,0.008286859,-0.0005779784,-0.0035535295,-0.01148009,0.020134313,-0.04787021,-0.012440885,0.013119094,-0.028993411,0.014779292,0.021307047,0.015104267,0.009445465,0.010575812,-0.017138893,-0.023525355,0.0012451482,-0.011465961,-0.029784653,-0.008258601,0.007559198,0.013896208,-0.024980677,-0.033034403,-0.0012592776,0.0009766908,0.007820591,0.018820284,0.011487155,-0.0049134786,-0.0015948495,0.054002345,-0.008385764,-0.017350832,-0.04066425,-0.019286552,-0.00922646,-0.009056908,-0.01277999],"SQL: Get records that satisfy conditions coming from multiple records":[-0.012938749,0.0008774,-0.010860837,-0.0022564265,-0.033932082,0.033817835,0.0046628052,-0.004141542,-0.018237067,-0.044043157,0.0103966985,0.020479212,0.0122960955,-0.0049412884,0.010875118,0.0109822275,0.012810218,0.0058160103,0.02179308,-0.010503808,-0.008582989,-0.0029240716,-0.0057553155,-0.023306886,-0.010082513,-0.00677999,0.01404554,-0.024149476,-0.017737225,0.00907569,0.028233891,-0.0012014043,-0.023792446,-0.021250395,-0.01792288,0.01186766,-0.013117263,0.010068231,0.000018548797,0.020379243,0.033732146,-0.02953348,-0.000019218229,-0.016437639,0.024592191,-0.0003155248,0.0075761657,-0.012795937,-0.01913678,-0.0006288182,0.04215804,0.034760393,-0.03884481,-0.007490479,-0.0079617575,-0.0047877654,0.023221198,0.036274195,-0.016694698,-0.010453824,0.03221834,0.005023405,-0.0078332275,0.0015878887,-0.02953348,0.0044271657,-0.005051967,-0.020436369,-0.01476674,0.0020422088,0.006694303,0.016480481,-0.011189304,0.026248809,0.0041950964,-0.026920024,0.024049507,0.007190574,-0.014488257,-0.002338543,0.0121175805,-0.0071298787,-0.01198191,0.021607425,0.02941923,0.02870517,0.0021457472,0.04161536,-0.015695017,-0.017937161,0.012188987,0.036616944,0.039158996,-0.006158759,0.00071182754,0.0013013725,-0.0065407804,0.041072674,-0.0064443825,-0.0121033,-0.018108536,0.0063515548,-0.035702948,-0.010375277,-0.03121866,0.014616787,-0.0071048867,0.0007024555,0.0122960955,-0.021821642,0.010111075,0.030904474,0.052611865,-0.0021939462,0.016123451,-0.008754363,0.0068371147,-0.034674704,-0.04984132,-0.0122960955,0.004976991,0.014052681,0.012817359,-0.020964772,0.013217232,0.026962867,-0.036702633,-0.012596001,0.0035078148,0.0062373052,0.068435416,0.013945572,0.011532052,0.020036494,-0.025520468,0.0005748175,-0.023663914,0.008847191,-0.023835288,-0.016237702,0.0023885274,0.0034685414,0.0035328069,-0.003777372,0.00051144476,0.03913043,-0.0042522214,-0.03693113,-0.013174389,-0.007683275,0.014738178,-0.016266264,0.017494446,-0.00095594645,0.0032007694,-0.014852427,-0.02082196,0.016166296,-0.01743732,-0.0057553155,-0.0041236905,-0.025163438,0.016380513,-0.019293875,0.029304981,0.023321167,0.003597072,-0.0063229925,-0.02506347,-0.005437559,0.005940971,0.02022215,-0.011639161,0.00774754,0.007433354,-0.0024563628,0.00056990836,-0.02422088,-0.0406728,-0.005119803,0.036045697,0.0076904153,0.04344335,0.015780704,-0.0049662804,-0.028376704,-0.016294826,-0.018179942,-0.012438907,0.005437559,-0.0033471514,0.0038487779,0.01077515,-0.016537607,-0.60506505,-0.025220564,-0.00049448584,-0.03218978,0.03267534,0.006730006,0.0024028085,0.006608616,-0.016066328,0.027462708,-0.013638526,0.025277687,0.0059374003,0.0015566486,-0.001983299,-0.026720088,0.00016970058,-0.007676134,0.024820691,0.02384957,-0.03487464,0.006040939,0.003389995,0.025277687,0.003741669,0.0066871624,-0.029933352,-0.024106631,0.019636622,0.007072754,-0.03087591,0.027762614,0.003088305,0.0009202435,0.044871468,0.004659235,-0.0108894,0.028148206,0.0227642,0.04272929,-0.018422721,-0.0026652252,0.01996509,-0.014752459,0.0072012846,0.009297048,0.018308472,0.028148206,0.008975722,-0.0030900904,0.0053590126,-0.0041272608,-0.010796572,-0.022064423,0.0055053947,0.01161774,0.02893367,0.0029080051,0.0152523,-0.010089654,-0.009397016,-0.0116962865,-0.040015865,-0.016694698,-0.024420816,0.007519041,0.018094255,-0.008240241,-0.006497937,-0.020479212,0.032789588,0.02227864,0.009247064,0.02142177,-0.005516106,0.009068549,0.060723577,-0.008247381,0.0011692715,0.006283719,0.00943986,-0.025691843,-0.024506504,-0.0058267214,0.004409314,-0.0018993969,-0.052497618,-0.0015120199,0.007411932,0.0355887,0.0052590445,0.01926531,0.021036178,-0.028862264,-0.012681687,0.017351633,-0.02287845,0.0020172165,0.032875277,-0.034074895,-0.007954617,-0.008011742,-0.016152015,-0.010025389,0.022907013,0.00617304,0.0005810655,-0.01658045,0.017394478,-0.004634243,0.0128816245,-0.018379878,-0.014588225,0.007604728,0.0023099808,-0.03898762,0.02203586,-0.011532052,-0.020864803,-0.015766423,0.020207869,0.04684227,0.014738178,-0.0101539185,-0.012367502,0.03387496,-0.013631386,-0.005226912,0.017937161,-0.0075119007,0.027205648,-0.0072691203,0.02082196,-0.021407489,-0.01476674,-0.018951125,-0.011996191,0.018808315,0.011082196,-0.019893683,0.0075476035,-0.0064193904,0.019350998,0.0055732303,-0.0005458088,-0.00078323344,-0.024535067,0.0026402331,-0.02373532,-0.028476672,-0.019550934,-0.001562004,-0.022450015,0.0051162327,-0.014623928,0.0022689225,0.0018565534,-0.020536337,-0.023206918,-0.022107266,-0.005894557,0.003945176,-0.008333068,-0.011367819,0.013781338,-0.038444936,-0.0033435812,0.007661853,0.002349254,-0.0075975875,0.027776895,-0.026505869,0.020764835,0.021464612,-0.042186603,0.009254204,-0.02904792,-0.0043164864,0.0124103455,0.0010327079,0.0045414153,0.011803395,-0.021478895,0.0071477303,0.028505234,-0.0005882061,0.01659473,0.023949537,-0.02747699,0.04312916,-0.005594652,0.0055053947,-0.025991747,0.022335766,0.015666455,0.018294191,-0.0069656456,0.005887416,0.018094255,0.014145508,-0.0011175023,0.01658045,0.0075476035,-0.019922245,0.02323548,-0.026934305,0.0018690494,-0.030133288,0.014324023,0.016251983,0.010489526,-0.021450331,-0.0031222228,-0.021993017,0.018651221,0.05786734,-0.006480085,-0.00040455905,0.0015271937,0.013217232,0.010853697,-0.0063372734,0.055953663,-0.0028473102,-0.028648047,0.0018369168,-0.005130514,0.014681052,0.028105361,0.016423356,-0.009946842,-0.0036399157,0.016766105,0.0020065058,0.0129458895,0.0153808305,0.014709615,-0.028748015,0.016294826,-0.02773405,-0.00067032286,0.022221515,0.02444938,-0.021121865,0.010489526,-0.023264041,0.032703903,-0.00072923274,-0.00026777212,0.0065586315,-0.0042307996,0.014395429,-0.011931926,0.023421135,0.0059623923,-0.025948903,-0.021750236,0.003605998,0.034931764,-0.0020172165,-0.0032453982,-0.008597271,0.0073012533,-0.024620755,0.024463661,0.008647255,-0.008854331,-0.014109805,-0.020136463,-0.011753411,0.011082196,-0.017023167,-0.00726198,-0.036588382,0.012745953,-0.004705649,-0.022864169,0.018536972,0.024349412,0.022592826,-0.01742304,-0.0019243889,0.0068335445,0.0017039232,-0.014980958,0.0020993333,0.015723579,0.024977783,-0.023706758,-0.004334338,0.046699457,-0.0021993017,0.018836876,-0.014095524,-0.029790541,0.012853062,0.03858775,0.012067596,0.000067389316,0.012546016,-0.017408758,0.011824816,-0.0029597746,-0.027562676,0.034474768,-0.016666137,-0.004705649,-0.04541415,-0.0030615279,-0.016166296,-0.005591082,0.01004681,-0.010311012,0.03618851,-0.011032212,-0.010589494,-0.029247856,0.0093256105,0.023578228,-0.019993652,-0.009282767,-0.043529037,-0.004555696,0.038759124,0.03258965,0.0025759677,-0.009004284,-0.004709219,-0.01706601,0.004852031,-0.0146667715,-0.036274195,0.0085472865,-0.0141312275,-0.0017199896,-0.016737543,0.020693429,-0.04150111,0.016780386,0.011296413,-0.008654395,-0.012667406,-0.01815138,-0.010318153,-0.012203268,-0.0027134242,0.024377974,0.03196128,0.027548395,-0.016837511,0.013781338,-0.0058410023,-0.0016146658,-0.026463026,-0.031761345,0.010917962,0.012760234,-0.014538241,0.016609011,0.019279592,0.012338939,-0.0050126943,0.012267534,0.010439542,0.020507773,0.015509361,0.020279275,-0.023506822,0.027619801,-0.020050777,-0.016780386,0.023906695,-0.008625832,0.012567438,-0.02312123,-0.0082331,0.008333068,-0.034474768,0.0071298787,0.0032168357,0.017822912,-0.02130752,-0.017394478,-0.051983494,-0.0035328069,-0.0017842549,0.040015865,0.009161376,-0.02240717,-0.02384957,-0.0307331,0.0015084496,-0.022092985,-0.0040272926,-0.014095524,-0.015637891,-0.031075846,0.012488891,0.03110441,0.02652015,0.01235322,0.009718343,0.0012638844,0.007561885,-0.039644554,-0.011489209,0.016551888,-0.018822595,-0.011032212,0.0075476035,-0.013917009,0.013695652,0.010218184,0.0011773048,-0.021750236,-0.0061944616,0.0002697804,-0.013110123,0.017594414,0.016866073,0.033132337,0.014595366,-0.0103966985,-0.010325293,0.0003467649,-0.014566803,0.0035042444,-0.022692794,-0.00738337,0.012517454,0.026805773,0.006622897,0.011910504,-0.016566169,0.008918596,-0.013288638,0.02082196,0.0054089967,-0.0010514519,0.030104727,-0.0005141225,0.011482068,0.005059108,-0.0027169944,0.0024081639,-0.00920422,0.034474768,-0.0013906299,-0.027505552,-0.014809583,-0.008390193,-0.036017135,0.010118216,-0.0058802757,0.0053840047,0.019579498,-0.0101539185,-0.0059016976,-0.025706124,-0.016566169,-0.0024545777,0.01875119,-0.02676293,-0.003015114,-0.002918716,-0.014209773,-0.0051983492,0.010075373,0.008018882,-0.023135511,0.0032186208,-0.0042200885,-0.0038880513,0.02130752,0.020307837,-0.019436685,0.0022100126,0.011274992,-0.042643603,-0.017251665,-0.014459695,0.0013834892,0.020279275,0.022321483,0.031304345,0.009089971,0.012810218,-0.013338622,0.0011540978,0.018579815,0.014388288,-0.0041094096,-0.005508965,-0.008275944,0.02457791,-0.013974134,0.018579815,-0.0036738336,-0.00059579295,0.049184382,-0.014124087,-0.0071477303,-0.004434306,-0.015994921,0.017808631,0.0051162327,-0.0038452076,-0.006015947,-0.043786097,-0.014809583,0.0032221912,-0.0014941684,-0.012617422,-0.002858021,0.0278483,-0.0059374003,0.0035631543,-0.005348302,0.02990479,-0.03121866,0.022221515,-0.013031577,-0.0149095515,-0.0040130117,0.00005779415,0.034360517,0.005348302,0.0011915859,-0.0054518403,-0.005394716,-0.020150745,-0.019950809,0.00065425655,0.0054018563,0.025092032,-0.00981117,-0.003050817,0.025748966,0.0065300693,0.031418595,0.0024724293,0.028291017,-0.021036178,-0.039273243,-0.0024474373,-0.04190098,0.038073625,-0.010625198,-0.01379562,0.029704854,0.019308155,-0.0096183745,-0.023678197,-0.00799032,-0.021821642,0.020864803,0.027562676,-0.0046449536,-0.033817835,0.0008729371,-0.0057588858,-0.016280545,-0.019450966,0.01997937,0.0034060613,-0.011446365,-0.0092613455,-0.0060730716,-0.013152966,0.014059821,-0.01222469,0.0054804026,0.013281497,0.0023796016,-0.039273243,0.016409075,-0.022664232,0.01839416,0.0069656456,-0.011424944,-0.011746271,-0.019450966,0.0016932123,0.006187321,-0.009725483,0.02674865,0.028233891,-0.008575848,0.023321167,-0.0058659944,0.022864169,0.015266581,0.0021029038,0.033675022,-0.015637891,-0.01862266,0.009596953,0.0070763244,0.012695969,-0.00931133,-0.01428832,-0.003363218,0.013395746,0.0063479845,0.020879084,-0.003025825,0.00593383,-0.0134171685,0.011603459,-0.0055625197,0.0064943666,-0.012838781,-0.0018797603,-0.0046628052,-0.005319739,0.006333703,0.0024795698,0.020564899,-0.016766105,0.007783243,0.02554903,0.012688828,-0.015309425,0.0041843858,-0.04092986,-0.012324658,-0.025606155,0.018794032,0.0042736433,-0.009746905,0.009218502,-0.0027205648,0.024677878,-0.025520468,0.01234608,-0.011939066,-0.014359727,-0.011003649,0.011274992,0.023521103,0.022549983,-0.031018723,0.021350363,0.005123373,-0.00266344,0.011781973,0.028476672,-0.023949537,0.023678197,0.0023224768,0.012367502,0.0067371465,-0.04844176,0.0044985716,-0.017337352,0.010817993,-0.0004654772,-0.0146667715,-0.0062408755,0.029933352,-0.008540145,0.010589494,0.019379562,-0.012310377,0.0041701044,0.023878133,0.011881942,0.02407807,-0.024292286,-0.002590249,-0.024377974,-0.0050912406,-0.010817993,-0.012067596,-0.03715963,0.012488891,-0.002615241,-0.009061408,-0.019536654,0.0048984447,-0.036417007,-0.014481116,0.006076642,-0.0064479527,-0.0006323885,-0.0053054583,-0.015894953,0.029647728,0.00931133,-0.00036238495,-0.040729925,-0.011896223,-0.0010639479,-0.003923754,0.036388446,-0.017694382,-0.033589333,-0.021893049,0.011846239,0.016966041,0.012246111,0.0021153998,0.0038273563,-0.006080212,0.0066407486,-0.035617262,-0.0070049185,-0.011653443,0.00086044107,-0.022121547,-0.008840051,0.013181529,0.0022599967,0.012667406,0.013381465,0.023135511,-0.0063836873,0.007918914,-0.024420816,-0.023835288,-0.0086758165,0.0032596793,0.0076547125,0.024806408,0.0023421135,0.019650903,0.008268803,0.012253252,-0.0140384,0.018108536,0.001532549,-0.013152966,-0.0048698825,0.00040612105,-0.0048698825,-0.012360361,-0.008682957,0.0153808305,-0.012688828,-0.021950172,0.014202633,-0.009639796,0.019450966,0.017680101,-0.0380165,0.012017612,0.0022939146,-0.01476674,-0.012895905,-0.011424944,-0.0016012773,-0.008340209,0.0049341475,0.019593779,-0.0086758165,0.0068621067,-0.015523642,0.008797207,-0.0069085206,0.009175658,0.19399555,-0.0011380315,-0.0048091873,0.02095049,0.0027277053,0.017337352,-0.015166613,0.009218502,-0.011274992,0.0066764513,-0.02953348,-0.030276101,0.031532846,0.004734211,0.01996509,0.006994208,-0.0066300374,-0.034817517,-0.043357663,-0.003670263,0.011203585,0.015323706,0.008982862,-0.036331322,0.034189146,0.022450015,0.015295143,0.012774515,0.027805457,0.016366232,0.0036738336,0.0032346873,-0.0029472786,0.01355998,0.016237702,-0.0060480796,-0.019579498,-0.008590129,0.02689146,0.00049091555,0.0052376227,-0.016523326,-0.010696604,-0.016166296,0.022592826,-0.009039987,-0.03258965,0.023563946,-0.012453189,-0.011253569,-0.045442715,0.004537845,0.028062519,0.01271025,0.004384322,0.01186052,0.022664232,0.0121175805,0.0022314342,0.00001128269,-0.004998413,0.020993333,-0.010439542,0.009354172,-0.009818311,0.015952079,-0.008440177,0.01756585,0.0040272926,-0.02179308,-0.0033578624,-0.028847983,0.0022599967,-0.013645668,0.0029454932,-0.015038082,0.008982862,0.016523326,0.018079974,0.038816247,-0.013131545,-0.017722944,0.002227864,0.0032793158,-0.037445255,-0.033989206,0.0052376227,-0.021735955,-0.036874007,0.011103617,0.009097111,-0.011460647,-0.0164662,-0.010325293,0.012774515,0.04370041,-0.008154553,0.009854014,-0.0052376227,-0.03196128,-0.029219294,0.07106315,-0.008625832,0.004584259,-0.015095207,0.004409314,0.0066514593,0.027077116,0.009539828,-0.026862899,-0.01645192,-0.023206918,-0.0017664034,-0.015566486,-0.013888448,0.0011371389,0.004141542,-0.011660583,-0.012267534,-0.018165661,0.0091470955,-0.015695017,0.0096183745,0.018337036,0.006926372,-0.015423674,-0.0051626465,0.0037595206,0.0065300693,-0.052983176,0.028176768,-0.021350363,-0.005301888,-0.0033007376,0.007640431,0.011460647,-0.0021261107,0.005316169,-0.019051094,-0.009418438,0.01975087,-0.021164708,0.0042415103,0.02190733,0.028533798,0.001078229,0.00031039253,-0.014966676,-0.018951125,-0.03187559,0.025606155,-0.00014403909,-0.0038237858,-0.005351872,0.04415741,-0.014588225,-0.011853379,-0.008811488,-0.0032757455,0.007611869,-0.02917645,-0.006526499,0.011653443,-0.02760552,-0.037730876,-0.023992382,-0.1825706,0.024892095,0.028262455,-0.0028883687,0.04418597,0.005348302,0.009447,0.007440495,-0.020479212,-0.0153808305,0.021236114,0.0025456203,-0.05606791,-0.017223103,0.0067728492,-0.0064372416,-0.0066871624,0.028019674,0.023778165,0.013895588,0.029019358,-0.012910186,-0.006794271,-0.0152523,-0.0074047917,0.0036666929,-0.020136463,-0.015766423,-0.012181846,-0.009968263,-0.006962075,-0.0028776578,0.015066644,-0.031047285,-0.041215483,0.0040844176,0.008504443,-0.024892095,-0.019665185,-0.0003436409,-0.0044700094,0.006355125,0.01512377,0.02239289,-0.008425896,0.023506822,-0.0070513324,-0.010482386,-0.011781973,-0.0013808116,-0.00078948145,-0.04275785,0.0007372659,-0.000735927,0.003941606,-0.0037380988,-0.007954617,0.00007988535,-0.01766582,-0.027919706,-0.011753411,-0.017380197,0.011610599,0.025634717,-0.011075055,0.016751824,-0.002336758,0.031418595,-0.014316883,0.0044700094,-0.023563946,0.007904633,-0.015238019,0.0045913993,0.015552205,0.016123451,-0.013252934,0.0012067597,-0.0014647135,-0.017265946,-0.020493492,0.03341796,0.014866708,0.0022814185,0.008725801,0.017937161,0.0014022334,-0.0032864565,0.0021975166,-5.2996563e-7,0.032275464,-0.028005393,-0.04852745,0.022707075,0.01355284,0.0042522214,0.003607783,-0.008868612,0.0142597575,-0.014723896,-0.0074976194,-0.006223024,-0.009918279,0.01975087,0.0033507217,0.0134171685,0.00738337,0.013931291,0.030704536,-0.00702277,-0.015994921,0.009961123,-0.009339891,0.024606472,0.016609011,0.0056981905,-0.002081482,-0.0071584415,0.017537288,-0.01343859,0.061637573,-0.000007691475,0.0049805613,-0.016566169,0.036874007,0.023206918,-0.11487781,-0.0016334099,0.021278957,0.007604728,-0.012039035,0.013145826,-0.00065604167,0.017323071,-0.026905743,0.021950172,-0.025634717,-0.021278957,-0.008425896,-0.0062658675,0.012624563,0.013674229,-0.018908283,0.0058517135,-0.0103966985,0.03304665,0.0033864246,0.001961877,0.0072584096,-0.019450966,0.0031525705,0.0054518403,-0.03133291,0.00653721,0.0073905103,-0.0064729447,-0.004973421,-0.0164662,-0.007533322,-0.010146778,-0.010817993,-0.06552205,-0.033989206,-0.0031043715,0.010089654,0.0015548634,0.013338622,-0.022221515,0.020122182,-0.010375277,0.010725166,0.0034221276,-0.016851792,0.017965725,-0.00083500275,-0.0006073964,-0.0036113532,-0.020850522,-0.006080212,-0.010489526,0.023949537,0.0050769593,-0.0052590445,-0.0005899912,-0.020165026,0.028819421,-0.015709298,-0.0124746105,-0.0029365676,0.024320848,0.032789588,0.0047020786,-0.008340209,-0.027162803,0.0113821,-0.009347032,-0.01815138,0.008083148,-0.018951125,0.010689463,0.007604728,0.016694698,-0.032703903,-0.03898762,-0.000046497513,-0.014938114,0.0058981273,-0.016166296,-0.011946207,-0.026191683,0.0046413834,0.004748492,-0.004309346,-0.0059016976,-0.017622976,-0.031675655,-0.005919549,-0.00052126305,0.018794032,-0.016152015,-0.022421451,-0.014009837,-0.0013111908,0.015709298,0.018351316,-0.009575531,-0.0140384,-0.01622342,-0.05895271,0.020979052,-0.02082196,0.00822596,0.014266899,-0.014895271,-0.007904633,-0.0006350662,-0.030961597,-0.009097111,-0.03453189,0.008911456,-0.021507457,-0.02227864,-0.012374642,0.014573944,0.00617661,0.014738178,0.013602824,-0.004091558,0.009089971,-0.011917644,0.0025331243,0.0071477303,0.015637891,0.006280149,-0.018894,0.015537923,-0.040472865,-0.005130514,0.0030365358,-0.009739765,0.0040237224,0.0583529,-0.000710935,-0.04078705,0.022135828,0.0012906616,0.029562041,-0.015337987,-0.00520549,-0.032789588,-0.006108775,-0.005148365,-0.0024170897,0.001568252,0.015823547,0.028719453,-0.020350682,-0.009668359,-0.00822596,0.014995239,-0.019536654,-0.0072798315,0.017651537,-0.014552522,0.0375595,0.009646937,0.0024813549,0.0007618117,0.053440176,0.026791492,0.055668037,-0.0015878887,0.011332116,-0.023092667,0.0037987938,-0.005716042,0.007072754,0.0051162327,-0.012031894,-0.015637891,-0.018322753,0.017580133,-0.0017681886,-0.0051162327,0.007069184,0.03230403,0.0016691128,0.0140384,0.041986667,-0.016994603,-0.0056839096,0.0103966985,0.022164391,0.013709933,-0.004259362,0.017508727,-0.00063997536,0.021678831,0.00015285324,0.011667724,-0.018137097,-0.016380513,-0.003741669,0.02844811,-0.03258965,-0.0290622,0.016680418,0.028548079,0.0040522846,0.0124103455,0.0017592629,0.0042736433,-0.028105361,0.009061408,-0.028062519,-0.023706758,0.0018851158,0.009097111,0.009789749,-0.0071263085,0.004455728,0.01113218,-0.025877498,0.029205013,0.0064229607,-0.035760075,-0.027305616,0.023563946,0.0055553787,0.005387575,0.035760075,0.00411655,0.015937796,0.054011423,0.004262932,-0.035988573,0.026305933,0.011781973,0.010453824,0.007311964,0.011967628,-0.01778007,-0.025377655,-0.048041888,-0.013031577,0.013338622,-0.024977783,0.067007296,0.0064336713,-0.012274674,-0.0013343977,-0.022949856,-0.005230482,0.03356077,0.025234845,0.0075476035,-0.04647096,0.028019674,0.0058445726,0.0025384796,-0.027933987,0.00224036,-0.0016102031,0.004948429,0.0004686012,0.0027044984,-0.01960806,0.031761345,0.011353537,0.005883846,-0.014838146,-0.0031918436,-0.021136146,-0.005965963,-0.008411615,-0.00774754,-0.0481847,0.014752459,-0.005619644,-0.012853062,-0.015395111,0.0006761246,-0.030476037,-0.013881307,0.013895588,0.015280862,0.01706601,0.013252934,0.013524277,-0.023463978,0.024363693,0.004287924,0.0029401379,-0.012867343,-0.0036881147,0.002904435],"SELECT CustomerID\nFROM CustomerList\nWHERE ProductID IN ('A', 'B')\nGROUP BY CustomerID\nHAVING COUNT(*) = 2\n":[-0.019672068,-0.00035415517,0.008690152,-0.006888536,-0.046126693,0.030044613,-0.011518426,-0.0037588885,0.0012518589,-0.03698614,-0.003960908,0.013936037,-0.010193708,-0.0062361117,0.012412611,0.00973668,0.006216241,0.0077827205,0.01895672,-0.02911731,-0.013101465,0.019208416,0.009677067,0.0155257,-0.0039377254,-0.010047989,0.018122148,-0.03033605,0.0027239523,0.005000812,0.018214878,-0.013293549,-0.032747038,-0.018228125,-0.02850794,0.009995,-0.000957937,0.0019109063,0.02887886,0.022546707,0.015313745,-0.017923439,0.0074581644,-0.025394851,-0.0059546093,0.024917953,0.0035899868,0.018572552,-0.011631028,0.0073124454,0.0028862301,0.017300822,-0.034628138,-0.008829248,0.0022636126,0.011876101,0.0305745,0.011438943,-0.014717622,-0.02338128,0.018546058,0.01952635,-0.01443943,0.011657522,-0.031104388,0.018413585,-0.026269166,-0.018996462,0.0014472548,0.021751875,0.010564629,0.0115912855,-0.0096903145,0.018241372,0.016148318,-0.011187247,-0.01825462,0.0015971136,-0.005613494,-0.011385955,0.019420372,-0.024997436,-0.0035303745,0.008345726,0.028719895,0.0115912855,0.004835222,0.027063997,-0.0073654344,-0.021526674,0.01604234,0.024917953,0.009100815,-0.0015358453,0.0097962925,0.025474334,-0.024573525,0.0352905,-0.018347349,-0.006411637,-0.02172538,-0.007418423,-0.0055373227,0.0011955583,-0.017022632,0.028216502,-0.021049775,-0.023301797,0.009107439,0.004302023,0.0022851392,0.029249782,0.045702785,-0.05071022,-0.0021642586,0.006660022,-0.0042390986,-0.029090816,-0.023023605,-0.004497419,0.0077827205,0.0124722235,-0.005613494,-0.023738954,0.030865937,0.015790643,-0.036111824,-0.016347025,0.012896134,-0.0000036740237,0.07285951,0.014412936,0.011723758,0.011180623,-0.018214878,-0.0028945096,-0.028295984,0.004010585,-0.015313745,0.0040337676,0.023156077,0.012776908,0.0077959676,0.013154454,0.009233288,0.023540245,0.016982889,0.015446217,-0.018479822,-0.017751226,-0.0023977403,0.004043703,-0.0011169031,0.0048782756,0.02037417,-0.040562876,-0.0042490344,-0.011326342,-0.010412287,-0.018850742,-0.008716647,0.0015300497,0.004888211,0.0033117959,0.022189032,0.026759312,0.017486284,0.012445729,-0.015154778,0.012816651,0.0073124454,0.009001462,-0.005004124,0.00496107,0.019764798,0.014744116,0.014121498,-0.0025517389,-0.015976103,-0.014134745,0.023116335,0.025196144,0.01932764,0.014161239,-0.014532161,-0.007815839,0.0009827755,-0.018731518,0.017857203,-0.021526674,0.007232962,0.012180786,0.0035767397,-0.015591935,-0.61678886,-0.010637488,0.0074117994,-0.020798078,0.021447191,0.011339589,0.0091736745,0.022189032,-0.010975292,0.020453652,0.012326505,0.007259457,0.029594209,-0.013869802,-0.001169064,-0.02059937,0.02277191,-0.019089192,0.029170299,0.01707562,-0.017022632,0.003715835,-0.010047989,0.010716972,-0.003957596,0.029859152,-0.0058685024,-0.0024043638,0.012127797,0.029620703,-0.022824898,0.025884997,0.016956395,0.003280334,0.03425722,0.023023605,-0.012677555,0.033939283,-0.0021063022,0.024573525,-0.0169299,-0.029647198,0.021990325,-0.026958019,0.018095654,0.009372382,0.010783208,0.024573525,0.00768999,0.0006971331,-0.012525212,-0.0048782756,-0.018055912,-0.025275627,0.027501153,-0.0070541254,0.014002274,-0.0011409137,0.02172538,0.0025401474,-0.0094055,-0.006219553,-0.0413842,-0.004951135,-0.035687912,0.0021476997,-0.008498069,-0.020943798,0.01263119,0.009061074,0.024295336,0.024215853,-0.01324056,0.009915517,0.019605832,0.020519888,0.026600346,0.025050424,-0.011200494,0.010399039,-0.010551382,-0.0020052926,-0.014320206,-0.0029292835,0.0037787592,0.010458652,-0.035767395,-0.016082082,-0.0019539597,0.015684666,0.02032118,0.017949935,0.0063851424,0.0015797267,-0.013187571,0.010763337,-0.016333777,-0.011862854,-0.0031346148,-0.045967728,-0.00922004,-0.02210955,0.0049080816,-0.005779084,0.040907305,0.0062394235,-0.0041629276,-0.008498069,-0.001557372,-0.021063022,-0.0010382481,-0.035343487,-0.015485958,-0.013127959,0.00298724,-0.032561578,0.011472061,-0.016916653,-0.0051862723,-0.044139616,0.012551706,0.0058022663,-0.0021874413,-0.0067560636,0.017804215,0.020864315,-0.007742979,0.00040983476,0.017221339,-0.012584825,0.014187734,-0.01980454,0.007882074,-0.022811651,-0.0068090525,0.0005961233,0.0012626222,0.006752752,0.014876587,-0.027262704,-0.022083055,-0.0014861685,0.0058254492,-0.0027173285,0.0043815062,-0.012690802,-0.03711861,0.004417936,-0.0119092185,0.004593461,-0.0083523495,-0.011491932,-0.018731518,0.01707562,-0.0035171274,-0.019592585,-0.0014588461,-0.020480147,0.018347349,-0.02150018,-0.02074509,0.008014546,-0.010213579,-0.018095654,0.004159616,-0.030733466,0.00966382,0.0230501,-0.010432158,-0.031104388,0.016638463,-0.00724621,-0.009246535,0.018002924,-0.009743304,-0.0035767397,-0.030097602,0.0058088903,0.017910192,-0.013174324,-0.0010879249,0.019208416,-0.006173188,-0.002437482,-0.0017138544,-0.005341927,0.0023397838,0.0045106662,-0.04567629,0.045093413,-0.016400013,0.013472386,-0.027501153,0.011034904,0.0010581188,0.04130472,-0.002273548,0.017049126,-0.0032819898,0.01871827,0.03213767,0.017327316,-0.013737329,-0.011425696,0.012657684,-0.017989676,-0.011074645,-0.010637488,0.032164164,0.017155103,0.019460114,-0.011048151,-0.008849119,-0.027607132,0.0047789216,0.026918277,-0.0061963703,0.02662684,0.015353486,0.034813598,0.03184623,0.008544434,0.037992924,0.007941687,-0.0130352285,-0.01443943,0.014956071,0.012644437,0.031448815,0.0018844119,-0.007385305,-0.0033117959,0.0409338,0.02013572,0.011160753,0.00014054435,0.035396475,-0.03820488,0.038920227,-0.020440405,0.00008243267,0.045967728,0.008425209,-0.011478685,0.0049975,-0.010180461,0.024586773,0.02766012,-0.000121811994,0.020281438,-0.0048484695,-0.010518264,-0.014426183,0.014929576,0.024984188,-0.034363195,-0.007219715,0.032588072,0.034310207,0.017433293,0.018612294,-0.025620054,0.031634275,0.0069547715,0.008557681,0.028587423,0.0014555344,-0.004805416,-0.010008248,-0.006815676,0.008027794,-0.03250859,0.0039542844,-0.027130233,0.013194195,0.0065672914,-0.006275853,0.00636196,-0.0018993149,0.014426183,-0.030680478,-0.011405826,0.018559305,0.010365921,-0.009776422,-0.0012783533,-0.009769798,0.0045371605,-0.016426507,0.01797643,0.010796455,0.034972567,0.005047177,-0.012598072,-0.021142505,0.018135395,0.03899971,-0.000053868433,0.0076370016,0.009696939,-0.009604208,0.0067262575,-0.033647846,-0.016360272,0.04106627,0.0062096175,-0.029249782,-0.04829923,0.010882561,-0.0037125233,-0.009889022,0.00691503,-0.023341538,0.016823923,-0.0068421704,-0.007968181,-0.017963182,-0.00013992337,0.016068835,-0.009180298,0.0009513134,-0.053068217,0.0044378066,0.023752201,0.028163513,-0.011313095,-0.023129582,0.004884899,0.0021808175,0.011631028,-0.0305745,-0.00049428554,0.017155103,0.012439106,-0.0022934186,-0.026216177,0.027090492,-0.023950908,0.013936037,0.004361635,-0.018228125,0.002709049,0.000044838613,0.017102115,-0.0036098575,0.000101372,-0.00091736746,0.013883049,0.0152077675,-0.0005211939,0.049279522,0.015843632,0.010147342,-0.027289199,-0.014956071,-0.0015027274,0.010856067,-0.00794831,0.0063718953,0.012260268,0.01006786,0.009928764,0.0010531511,0.006136758,-0.0011384299,0.015194519,-0.009014709,0.0025550507,-0.0029243159,-0.00846495,-0.022334753,-0.0033333227,-0.018665282,0.004427871,-0.009047827,0.014042015,-0.0010854411,0.014333453,0.0010125816,-0.0146911265,-0.019089192,-0.0067825583,-0.011869477,-0.045623302,-0.021288224,-0.0022122797,0.04313283,0.0012386116,0.006686516,-0.010240073,-0.039821036,-0.025315369,-0.015300497,-0.014545408,0.00048476414,-0.020095978,-0.0047126855,-0.0006739505,0.019579338,0.028401962,0.0092796525,0.017247833,-0.0058949967,0.0052823145,0.009418747,-0.02107627,0.04403364,-0.047848828,-0.018426834,0.012617943,-0.03184623,-0.0029739928,-0.018214878,0.00017925096,-0.0146911265,-0.026838794,0.00794831,-0.026242672,0.03555544,-0.005229326,0.014214228,-0.005921491,-0.0018231437,0.00024238207,-0.0028348973,-0.022308258,0.006411637,-0.026944771,-0.013485633,-0.0053485506,0.010293062,-0.016201306,0.0030882498,0.0032687427,-0.0066500865,-0.009683691,0.0037622002,-0.0073919287,0.038549304,0.007789344,-0.0004740008,0.004918017,0.00912731,-0.006007598,-0.0010299685,-0.022758663,0.02214929,-0.000632553,-0.028905354,-0.009961883,-0.0039244783,-0.03881425,0.014479172,0.01392279,-0.013293549,-0.0081139,-0.008080782,-0.011558168,-0.030786455,-0.014359947,0.0025881685,0.053545117,-0.0049378877,-0.028666906,0.013869802,-0.01571116,0.012319881,0.01744654,-0.0001282286,-0.026507614,0.002273548,0.0077694734,-0.0018529498,0.0137638245,0.036429755,0.0026742753,-0.0035270627,0.006173188,-0.037198093,-0.03147531,0.00022499514,-0.00982941,0.018002924,0.04554382,0.043901168,0.012366246,0.036694698,-0.018691776,-0.009531349,0.028560929,0.0004479204,-0.00724621,-0.01016059,-0.016823923,0.020122472,-0.01661197,0.021049775,0.014929576,-0.0025981038,0.032985486,-0.0013338259,0.0025451153,0.0020367545,0.0007530196,0.017526025,-0.0032604632,-0.02723621,0.000109392764,-0.035025556,-0.029143805,0.008902107,0.014571902,-0.014465924,0.012882886,0.040483393,-0.0104652755,0.007405176,-0.002515309,0.011703887,-0.020943798,0.018744765,-0.013684341,-0.010942174,-0.00007348047,0.008504692,0.020824574,-0.009120686,-0.010697101,0.0020483457,0.01025332,-0.024944447,-0.019075945,0.012637814,0.013565117,0.0057724603,-0.030733466,-0.016664958,0.006070522,0.012021819,0.014187734,0.00060150493,-0.0073389397,-0.010789831,-0.03062749,-0.0062924125,-0.029673692,0.06639489,-0.0028216501,0.024242347,0.041278224,0.016015844,-0.024109874,-0.0052193906,-0.033753823,-0.021420697,0.025474334,0.009412124,0.028587423,-0.024613267,-0.012505341,-0.010902433,-0.035846878,-0.02338128,0.027063997,-0.008842495,-0.0025533948,-0.009491608,-0.0028348973,-0.03632378,0.017062373,0.0073786816,-0.0013222345,0.020400664,-0.00973668,-0.010001624,-0.02465301,-0.026070457,0.008286114,0.009140557,-0.026746064,-0.020586124,-0.008676905,-0.01500906,-0.023725707,0.00545784,0.01984428,0.015141531,-0.011054775,0.016770935,0.02214929,-0.009564467,0.0127305435,0.014558655,0.026004221,-0.008948472,-0.034628138,-0.018546058,0.011670769,0.0067759347,0.0057559013,-0.0090213325,-0.020519888,-0.012942499,0.012955746,0.020188708,0.0021162375,0.022732168,0.011564791,0.00025418034,-0.009233288,-0.013088218,0.0036330402,0.014147992,-0.0055638175,-0.018996462,0.00054396247,-0.0132471835,-0.011823111,0.0062924125,0.014598397,0.046391636,0.008948472,-0.020877562,-0.00964395,-0.0141744865,0.009379006,-0.028428456,-0.0076701194,0.019022956,0.011604533,-0.0025914803,-0.0057260953,0.017406799,-0.0069878893,0.024149615,0.016188059,-0.015538947,-0.014638138,0.020851068,-0.0016765967,0.01914218,0.0030617553,0.013697588,0.017181598,-0.0018115524,0.005762525,0.010551382,-0.00776285,0.028190007,-0.0051233484,0.0024275465,-0.010670607,-0.028348973,0.001412481,-0.041993573,0.011339589,-0.02277191,-0.0005923975,-0.030071108,0.007107114,-0.0024076756,0.023354786,0.007709861,-0.0046696323,0.009345888,-0.0037754474,0.0012916004,0.003359817,-0.020095978,-0.028137019,-0.023884673,-0.0012916004,-0.032588072,-0.0031279912,-0.0141744865,0.032906003,0.00743167,-0.022083055,-0.0113925785,0.011299848,-0.048193254,-0.00525582,0.015274003,0.021751875,0.00431527,0.011664146,-0.02502393,0.014717622,-0.0041827983,-0.0025583624,-0.04954447,0.010008248,0.007961557,0.011054775,0.04416611,-0.025182897,-0.024613267,-0.021169,-0.01060437,0.024348324,0.018559305,0.029223287,-0.031157376,0.001154161,0.006769311,-0.023421021,0.005560505,-0.003752265,-0.009107439,-0.0121675385,-0.026136694,-0.0037456413,-0.003437644,0.0035601808,0.0074117994,0.009802916,-0.009140557,0.006020845,-0.017512778,-0.00075177767,-0.013048477,0.011015033,-0.015565441,0.014200981,-0.005991039,0.01971181,-0.011472061,0.014055262,0.00418611,0.021195494,-0.0052690674,-0.0057393424,0.0020963668,-0.0115912855,0.0025517389,-0.0066302153,-0.020387417,0.009047827,-0.024679504,-0.027262704,0.005815514,-0.002045034,0.0230501,-0.019301146,-0.024056885,0.0045967726,0.007444917,-0.008014546,-0.0008010407,-0.029435243,-0.02224202,-0.018413585,-0.011399202,0.027209716,0.0005435485,0.004888211,-0.00055555376,0.013604858,-0.010306309,0.034310207,0.19955558,0.01947336,-0.013684341,0.010167213,0.014386442,0.041225236,0.018095654,0.005242573,-0.002401052,-0.010167213,-0.00457359,0.0014820287,0.01965882,0.012015196,0.0011773434,-0.0052193906,-0.012902757,-0.031581286,-0.04549083,-0.02008273,0.010558005,0.014518914,-0.0042821523,-0.040615864,0.033382904,-0.0031164,-0.026017468,0.0054114745,0.02671957,-0.0027239523,-0.009531349,0.018890483,-0.0020748402,-0.0002823306,0.003894672,0.0064844964,0.0015855223,0.008544434,0.021354461,-0.007497906,0.020957045,0.00043011951,-0.00486834,-0.004298711,-0.0058651906,-0.004384818,-0.019022956,0.009067697,-0.008875613,-0.009604208,-0.038257867,0.027130233,0.00820663,0.026308907,0.003603234,0.00026473668,0.012028443,-0.02017546,-0.030124096,0.01060437,-0.005404851,0.021804865,-0.031554792,-0.009955259,0.012810027,0.0005534839,-0.048670154,0.012386117,-0.0041000033,-0.018850742,0.026613593,-0.014611644,-0.009610832,0.008445079,-0.007186597,0.010127472,-0.0115912855,0.033091467,0.008445079,0.011723758,-0.018691776,-0.0014406312,-0.0074780355,0.010948798,-0.032164164,-0.010187085,-0.017393552,-0.006229488,-0.019778045,-0.007564142,0.0014489107,-0.021818113,-0.00532868,-0.015062048,0.024705999,0.024825223,0.009100815,-0.0029474983,-0.016029092,-0.024864964,-0.01867853,0.03367434,0.00053361314,0.0037125233,-0.03603234,0.007126985,-0.0035899868,0.013975779,0.027925063,-0.028534435,0.0052094553,-0.0147971045,-0.022281764,-0.0020119161,-0.011180623,-0.005702913,0.01707562,-0.0106176175,-0.029700186,-0.016770935,0.027156727,-0.022308258,0.030256568,0.013002111,0.007868827,0.018705023,-0.0147971045,0.00074722397,-0.012392741,-0.026189683,-0.000022018268,-0.034734115,-0.001072194,-0.007954934,-0.0047491156,-0.003702588,0.00016817714,-0.0012369558,-0.011710511,-0.018453328,0.002192409,-0.010425534,-0.016241048,0.026918277,0.033833306,-0.025037177,-0.00008300188,0.0047623627,-0.019022956,-0.039344136,-0.009637326,-0.0027140167,0.0036264167,-0.004874964,0.042364493,-0.00971681,-0.021063022,-0.013512127,0.014055262,-0.003308484,-0.030971916,-0.0073654344,0.03499906,0.0034674504,-0.0073124454,-0.012346376,-0.16606669,0.011882724,0.021606157,-0.024017144,0.024825223,0.0075840126,0.013134583,-0.007126985,0.013154454,0.005030618,0.036721192,-0.021367708,-0.034654632,0.0027206403,0.0043252055,-0.005878438,-0.02120874,0.028481446,0.036800675,0.004464301,0.042894382,-0.0022685803,-0.008120524,0.008133771,0.012810027,0.008438456,-0.012757038,0.0037191468,-0.022652684,-0.037701484,0.007756226,0.011617781,0.02050664,-0.016585475,-0.010803078,0.022003572,-0.00964395,-0.02826949,-0.003623105,0.012750414,-0.0018744766,0.008935225,0.029991625,0.0136578465,-0.0041231858,0.044590022,0.018135395,-0.013631352,0.018281113,-0.026613593,0.0465771,-0.05343914,0.0077032372,0.0013404494,0.0000012677968,0.030548006,-0.0033366345,0.0036727816,-0.03330342,-0.015432969,0.015472711,-0.011001786,-0.008451703,0.021738628,-0.0012626222,0.0011872789,0.0014861685,0.000086106695,-0.0014787168,-0.01609533,-0.025302121,-0.009981753,0.0035171274,-0.01787045,0.014293712,0.009915517,-0.010478523,0.027289199,-0.00013599062,-0.019645574,-0.033806812,0.03984753,0.0071667265,0.042708922,-0.01604234,0.018863989,-0.01314783,-0.0073985523,-0.00029102407,-0.00649112,0.01961908,-0.03415124,-0.034946073,0.009935388,0.025792267,0.015976103,-0.0067659994,-0.008935225,0.026070457,-0.0023132896,-0.006378519,-0.017618755,-0.034654632,0.028004548,0.009577714,0.027739603,0.012386117,0.018612294,0.018453328,0.009889022,-0.0019026268,0.030733466,0.023513751,0.01995026,0.031104388,0.016347025,-0.021513427,0.0049941884,0.01449242,0.008358973,0.024586773,-0.014823599,-0.010756713,-0.003215754,0.009412124,0.0152077675,-0.08181461,-0.024467548,0.024878211,0.005133284,0.0009463457,0.0052491967,0.0071004904,0.017896945,-0.028666906,0.026004221,-0.006133446,-0.015485958,-0.023460763,-0.0041927337,0.0045868373,0.008458327,-0.009730057,-0.013346538,-0.0020483457,-0.012306633,-0.002954122,-0.01049177,0.011564791,-0.02742167,-0.005259132,0.0032687427,-0.024388066,0.00027280918,0.017751226,0.013002111,-0.009723433,-0.019698562,-0.0018115524,-0.011352836,-0.022467224,-0.016850417,-0.03470762,-0.021698887,0.037383553,0.0156184295,0.018824248,-0.012498718,0.0064381314,-0.018307608,0.006474561,-0.032535084,-0.019261405,0.041039776,-0.0003878941,-0.0131412065,-0.00089998054,-0.021420697,-0.0018943473,-0.027262704,-0.008604046,0.016161565,0.020162214,0.016863665,-0.028190007,0.005129972,-0.00055555376,-0.0076833665,0.026865289,0.02126173,0.023791943,0.0043417644,-0.015538947,-0.020625865,-0.001947336,-0.015234262,-0.028772883,-0.0026096953,-0.02784558,0.015062048,-0.010200332,0.010471899,-0.0074250465,-0.016532486,0.018877236,-0.032402612,-0.008882237,-0.020851068,-0.036615215,-0.0119092185,-0.009266405,0.011034904,0.009928764,-0.00051498425,-0.013538622,-0.04366272,-0.005014059,-0.00046323746,0.030812949,0.009756551,-0.030812949,-0.0071004904,0.015552194,-0.0045106662,0.011458814,-0.015300497,-0.013300173,0.0012916004,-0.07179974,0.009783045,0.0061930586,-0.007531024,0.026136694,0.0072660805,0.0067593753,-0.007160103,0.0030236698,0.010730219,-0.02535511,0.039715055,-0.015168025,-0.011624404,-0.02460002,0.013154454,-0.006358648,0.027116986,0.009908893,-0.0040834444,0.021698887,-0.004398065,0.0013694277,-0.0039046074,0.0030087666,-0.0063255304,-0.022732168,0.025845256,-0.01528725,0.006934901,0.041675642,-0.013750576,0.012810027,0.025898244,-0.008325855,-0.047398426,-0.00794831,-0.0042655934,0.027011007,-0.041172247,-0.012498718,-0.024215853,0.008001299,-0.02037417,-0.022917628,0.0047358684,0.012021819,0.021553168,-0.0043252055,-0.008564305,0.02898484,0.004563655,0.008584175,-0.0362178,0.008908731,-0.028666906,0.027116986,-0.015022307,0.041172247,0.004043703,0.021513427,-0.013333291,0.058340598,0.011472061,0.0062725414,0.006216241,0.0011765155,0.004143057,0.023248808,-0.017181598,-0.005504205,-0.014095004,-0.030230073,0.0061764996,0.04130472,-0.012326505,-0.003263775,0.015115037,0.006183123,0.0076966137,0.01853281,0.0012617942,-0.0040238323,0.009253158,0.042549953,0.05659197,0.009590961,0.0010531511,-0.0060407156,0.007272704,-0.017115362,0.010432158,-0.019725056,-0.017632002,0.008034417,0.041887596,-0.020731842,-0.020678854,0.015790643,0.028057536,0.00024424496,0.009233288,0.0053651095,-0.015843632,-0.020201955,0.02483847,-0.017724732,-0.018241372,-0.032853015,0.002401052,0.008074159,0.0067958054,0.0066765808,0.0021145816,-0.022891134,0.00649112,-0.017963182,-0.013074971,-0.03227014,0.009233288,-0.029806163,0.009299523,0.008478197,-0.00490477,0.033091467,0.020440405,-0.011419073,-0.012445729,0.038125396,-0.007259457,-0.008822625,0.011054775,0.008034417,-0.026136694,-0.0116508985,-0.035025556,-0.0048815873,0.0032190657,-0.022268517,0.047106985,-0.024917953,-0.026242672,0.0074912827,-0.013538622,0.012538459,0.033753823,0.001168236,-0.024957694,-0.037727978,0.03560843,0.0035767397,0.012379494,-0.027116986,0.026335401,-0.0154064745,0.013074971,-0.015790643,0.0109819155,0.013300173,-0.008418585,-0.017208092,0.019036204,-0.020453652,-0.016492743,-0.008339102,-0.012531836,-0.020453652,-0.027951557,-0.033329915,0.0070210076,-0.014095004,-0.032243647,0.006643463,0.010226826,-0.029620703,-0.010114225,-0.001915874,0.01849307,0.017526025,-0.012174162,0.03425722,-0.04209955,-0.005302185,0.0034409561,-0.0046530734,-0.022652684,0.015591935,-0.011048151],"get distinct records without NOT IN query":[-0.039411947,0.0045720697,-0.015594656,0.008548707,-0.024511963,0.022541367,-0.012759264,-0.02205935,-0.026099782,-0.024568671,-0.0015293396,-0.0059507787,0.011206887,0.003131336,0.01338305,0.029034413,0.01282306,0.0005670784,0.039411947,-0.007102657,-0.017508546,0.027361533,-0.0012635215,-0.012624583,-0.022484658,-0.021052785,0.016005788,-0.018628525,-0.038447917,0.0021673026,0.018897887,-0.008974016,0.0013920002,-0.0083927605,-0.029119475,-0.0012475725,-0.024696264,-0.021889227,0.017310068,0.010930436,0.0044338442,-0.015169347,0.0073578423,-0.0054262313,0.02890682,0.016388565,0.018756118,0.015849842,-0.0038951198,-0.003941195,0.031217666,0.0058621727,-0.0055361027,-0.0062024198,-0.01706906,0.019776858,0.02807038,0.042332403,-0.010930436,-0.013971394,0.015367825,0.008520353,-0.019564204,0.02825468,-0.024426902,0.0078398585,-0.022399597,-0.042332403,0.008286433,-0.006244951,0.015311116,0.03643479,-0.032663714,0.014339995,0.014616446,-0.030508818,0.01417696,0.01818904,0.008173018,-0.0040687877,0.010611455,-0.033514332,-0.030537171,0.01818904,0.032663714,0.04547969,-0.0027981775,0.04499767,-0.0082155485,-0.025079042,0.012645848,0.033457626,0.04616018,-0.00676241,-0.018685233,0.0151409935,-0.032238405,0.021548979,-0.004401946,-0.0018359163,-0.029573139,0.013028626,-0.012362309,-0.02214441,0.004093597,0.010852463,-0.002247048,-0.021534802,-0.017707024,-0.0015036438,0.0007309995,0.01851511,0.039695486,-0.011121825,0.007662647,-0.0077122664,-0.0061067254,-0.015070109,-0.025901306,-0.020358114,-0.00081340305,-0.0026829897,0.023647169,-0.025688652,0.03805096,0.013631147,-0.027971141,-0.012007885,0.007818594,-0.011922823,0.067142084,0.008371495,0.01081702,0.010951702,-0.018486755,-0.009874253,0.002955896,0.02625573,-0.008761361,-0.018316632,-0.0076272045,0.025107397,0.009236289,-0.000009359009,-0.002080469,0.027077993,0.0047740913,-0.0030781724,-0.009860076,-0.01609085,0.012014974,-0.006248495,-0.0041219513,-0.020627476,0.005330537,-0.016686281,-0.02629826,0.0055431915,-0.023930708,-0.014701507,-0.0009082115,0.0038667659,0.0074358154,0.00835023,0.019649267,0.024582848,0.0061067254,-0.0026121049,-0.019337373,-0.009576537,0.02644003,0.015849842,-0.021463918,0.0136595005,0.012539521,0.0061846985,0.016388565,-0.0005444839,-0.02383147,-0.024894742,0.026936224,0.011277772,0.042133924,0.029970093,-0.019946983,-0.010661074,0.00044834637,0.011646372,-0.002319705,0.02093937,0.0064008976,0.00009126418,0.0032004488,-0.023675524,-0.5911225,0.0040510665,0.0088676885,-0.024597025,0.037285406,0.0023019838,0.0024313487,-0.008782627,-0.0321817,0.029232891,-0.01930902,0.012886857,0.025405113,-0.02811291,-0.012142566,-0.021804165,0.009051989,-0.009704129,0.009080343,0.011802319,-0.016048318,0.023108445,-0.021945935,0.018897887,-0.0025128662,0.004770547,-0.00019548698,-0.010760313,-0.007251515,-0.00039673338,-0.031217666,0.005490028,-0.023236038,-0.01198662,0.0535322,0.019946983,-0.016473627,0.045990057,0.010923347,0.0336561,-0.019238135,-0.007662647,0.039582074,-0.0047918125,0.0038313235,0.0054474967,-0.0003601834,0.0025057776,0.03152956,-0.040120795,0.015211878,-0.024256779,-0.04788977,-0.010420065,0.016785521,-0.006489503,0.012348132,-0.00564243,0.030792357,-0.0073932847,0.010668162,-0.015098462,-0.015226055,-0.042218987,-0.03348598,0.0055325585,0.011887381,-0.016672105,0.009392236,0.002348059,0.028935175,0.007152276,0.015282763,0.001388456,0.0050859842,0.003175639,0.020584946,-0.010377535,0.013865067,0.025334228,0.0062095085,-0.016615396,-0.02733318,-0.0033493068,0.009250467,0.021180378,-0.031869806,-0.033571042,0.012376486,0.023803115,0.0019830023,0.03138779,0.0016073128,-0.010412977,-0.014077721,0.0179055,-0.011547134,0.0035655054,0.025362581,-0.041396722,-0.013262546,-0.019833567,-0.019181427,0.0011332707,0.043494914,0.011121825,0.022172766,-0.028325565,0.011242329,-0.0060500177,-0.0007885934,-0.021137847,-0.01837334,-0.008584149,0.011391187,-0.037824128,0.013326342,-0.00998058,-0.02084013,-0.0048059896,0.015864018,-0.013035715,0.025291696,-0.0007943528,-0.014084809,0.026851162,-0.0028619738,0.018401694,0.023845647,-0.020017868,0.010001846,0.009229201,0.014106075,-0.025518527,0.012525344,-0.0022116057,-0.030849066,0.0126316715,-0.0031579179,-0.03008351,-0.0045295386,0.010016022,0.0028123544,-0.010320826,-0.010653986,-0.04034763,-0.025972191,0.026851162,-0.014042279,-0.0046854853,-0.022839082,0.0018137648,-0.017848793,0.0031348802,-0.00387031,-0.012043327,-0.0017242727,-0.03082071,-0.028325565,-0.0041184067,0.00797454,0.02615649,-0.007499612,0.0027840005,0.0078398585,-0.03626466,-0.0064469725,0.0040546106,-0.0021424931,-0.013531908,0.019791037,-0.00974666,0.009399325,0.024256779,-0.0075563197,0.010788666,-0.035272278,0.024299309,0.0023551474,-0.0007593534,0.009257555,0.0058657173,-0.016445274,-0.012163832,0.029034413,-0.001993635,-0.01684223,0.010143614,-0.016246796,0.04332479,0.005256108,-0.0030533627,-0.018430049,0.013035715,0.002202745,0.020159638,0.02289579,0.017522722,0.0019830023,0.012142566,0.01945079,0.009151228,-0.0005785972,-0.010455508,0.031189311,-0.026184846,0.011490426,-0.031416144,0.021832518,0.008520353,0.0037994252,0.015849842,-0.0014540245,-0.00667026,-0.009484386,0.05404257,-0.015920727,0.013531908,0.0003927461,0.00998058,0.033315856,-0.008959839,0.028424805,0.025518527,0.00054669904,-0.011320302,0.007903655,0.0265818,0.020641653,-0.002569574,-0.021350501,0.029204538,0.000023203696,-0.0062236856,0.021449741,-0.0075067,0.033372562,-0.024554495,0.02308009,-0.021449741,-0.005773567,0.025291696,0.021038609,-0.016204266,-0.0010446648,-0.011121825,0.014729861,0.007084936,-0.0010863096,0.019238135,-0.012624583,0.020783423,-0.025901306,0.025901306,0.020556591,-0.017366776,-0.02513575,0.017012352,0.019479143,0.013787094,-0.0045720697,-0.027730133,0.013538997,-0.012787618,0.031274375,0.0015399723,0.01945079,-0.018387517,-0.013999748,0.012624583,0.010923347,-0.061357882,-0.008059601,-0.009087431,0.028339744,-0.016530335,0.010086907,0.018770294,0.017593607,0.014006836,-0.014070633,-0.007605939,0.020216344,0.022583896,-0.006244951,-0.01920978,-0.014545561,0.02653927,-0.025972191,-0.014495942,0.011724345,0.0072018956,-0.00011552007,-0.013780005,-0.00024300195,0.004919405,0.030395402,0.014368349,-0.019223958,0.016048318,-0.0046996623,-0.018600171,-0.015254409,-0.007747709,0.0321817,-0.023930708,-0.0017030073,-0.025107397,0.012929387,-0.010264119,0.0019546484,0.0139855705,0.004827255,0.0033510788,-0.0033315856,0.011887381,-0.0175369,-0.008017071,-0.009732483,-0.015041755,0.0017552848,-0.0175369,-0.024682088,0.038731456,0.01967762,0.021208731,-0.021747457,0.015041755,-0.033882935,0.01562301,-0.027021285,-0.0025872951,-0.00018230685,-0.024313487,0.0027556466,-0.030849066,0.022867436,-0.035215568,0.014042279,0.0019511041,-0.009406413,-0.024356017,-0.010299562,-0.015608833,-0.008272256,0.01645945,0.017707024,0.017508546,0.028056204,0.013404315,0.03082071,-0.002333882,0.01566554,-0.012341044,-0.019946983,-0.0065214015,0.025617767,0.004550804,0.0016330086,0.00998058,0.008669211,0.003145513,0.0013627603,0.0017189564,0.0034627225,0.033911288,0.027035462,-0.0021336325,0.00012382689,-0.0039376505,-0.0055750897,0.032295115,-0.004660676,-0.01385089,0.008605415,-0.020060398,-0.014630622,0.0038880312,0.0018554096,-0.0016170595,-0.017636139,-0.019635089,-0.030849066,-0.02308009,-0.0142124025,0.014843277,0.04505438,-0.0022629972,-0.016048318,-0.024511963,-0.015438709,-0.01804727,-0.026496738,0.005064719,-0.0029310863,-0.0047209277,-0.033174086,-0.003620441,0.006599375,0.032266762,0.020145461,0.03110425,-0.007492523,0.009987668,-0.022130234,-0.0265818,0.020726716,-0.024738794,-0.02093937,0.0000032119674,-0.0142620215,0.020131283,-0.000039678875,0.0049371263,0.002527043,-0.010675251,0.033911288,-0.012142566,0.030225279,0.026851162,0.0133334305,0.018912064,0.00056309113,-0.0076130275,-0.009888429,-0.013120776,-0.010831198,-0.008151752,-0.02191758,0.017380953,0.021960111,0.009151228,0.015311116,-0.022541367,0.032380175,-0.02774431,-0.0035087976,-0.005578634,0.008463645,0.034903675,-0.0045259944,0.027588364,-0.0017092098,-0.005670784,0.0009808685,-0.019550027,0.024582848,-0.013758739,-0.020698361,0.03422318,-0.018061446,-0.040290922,-0.0059295134,0.02112367,-0.011972442,0.008988192,0.0050150994,0.008052513,-0.019394081,-0.041907094,0.013553173,0.019507498,-0.019946983,0.0019032569,-0.0059578675,-0.03269207,0.023703877,0.0005139148,0.0021921124,-0.016530335,-0.006074827,-0.0038632215,-0.0074499925,-0.0075988504,0.023562107,0.004830799,-0.005404966,-0.0034077868,-0.029544784,-0.0031774112,-0.03558417,-0.005050542,0.020358114,0.029629847,0.032720424,0.009682864,-0.0111005595,-0.028665813,0.0040687877,0.015580479,0.013071157,-0.0023657803,0.008499088,-0.0056495187,0.009498564,-0.013716209,-0.012000796,0.0091937585,-0.01529694,0.03464849,-0.010271207,-0.0075350543,-0.0059436904,-0.007485435,0.0011040308,-0.017380953,0.006602919,0.011582577,-0.04630195,-0.008385672,0.004494096,-0.008584149,0.019606736,-0.016388565,0.025050689,0.000095417585,0.0073649306,-0.0041184067,-0.00023480589,-0.02821215,0.03827779,-0.023788938,-0.00853453,0.0022381875,-0.007953274,0.025816243,0.025320051,-0.024653733,0.013439758,0.0009985896,-0.02760254,-0.018387517,-0.011759788,0.002007812,-0.005847996,-0.01725336,-0.023264391,0.011447895,0.016204266,0.013404315,0.0032429795,0.0011625107,0.010760313,-0.032465238,-0.005323448,-0.04397693,0.039950673,0.012022062,0.013680766,0.015169347,0.012766353,-0.027857726,-0.035555817,-0.009973492,-0.039893966,0.043211374,0.004671308,-0.015963256,-0.03161462,0.018685233,-0.009831722,-0.023859823,-0.01282306,0.015424533,-0.014311641,0.020017868,0.0038525888,0.006765954,-0.010767401,0.022853259,0.013468112,0.02690787,-0.012319778,-0.00054581295,-0.05886274,0.0023374262,-0.05483648,0.043211374,0.0061917873,-0.004575614,-0.0036080363,-0.0063122916,-0.0086763,0.01314913,-0.014446322,0.02126544,0.022030996,-0.026099782,0.010200323,0.007924921,-0.009767925,-0.0049513034,0.0026209655,0.02853822,-0.012865591,-0.030338693,0.029573139,0.005479395,0.011781054,-0.009207935,-0.024171717,0.008640857,-0.013156218,0.010093995,0.011603842,-0.0058267307,0.028013673,0.009399325,0.000782834,-0.0107248705,0.005805465,-0.015679717,-0.0019741417,-0.0065320344,-0.0015993383,0.0011917508,0.006957343,0.002581979,-0.018430049,0.027999496,0.0060464735,-0.0017242727,-0.018671056,0.0055609127,-0.0020662919,-0.0014159238,-0.03240853,-0.00974666,-0.009307174,0.007563408,0.009739571,-0.0034503175,0.005585722,-0.00718063,-0.004136128,-0.007428727,0.0066064633,-0.022201119,0.021364678,0.023632992,0.032295115,0.00054271176,-0.015821487,0.0075279656,-0.018387517,0.011086383,0.023817293,-0.0059472346,-0.007485435,-0.033372562,-0.004834343,0.031954866,-0.028552398,-0.012574963,-0.01594908,0.0101223495,-0.0154670635,0.0013698487,0.00057992624,0.020244699,-0.0035920872,-0.0061209025,0.016119203,-0.00487333,0.022229474,0.0020946458,-0.023647169,0.025263343,-0.025745358,0.0055006603,-0.027021285,-0.008449468,-0.018387517,-0.010391711,0.0015771867,0.0047351047,0.012667114,-0.0034644946,-0.004844976,0.015637187,-0.020301407,-0.0132341925,-0.011072205,-0.0068155737,0.0009277048,-0.004841432,-0.021421386,0.0030799445,0.00564243,0.00040404336,-0.031217666,0.012014974,0.014701507,0.015382001,0.030395402,-0.012036239,-0.037285406,0.0005777111,-0.0066064633,0.0057806554,0.03819273,0.013113688,-0.017848793,0.0007916946,0.008080867,-0.031557914,0.00387031,0.009640332,-0.007492523,-0.048003186,-0.024838034,0.0010730186,0.00052100327,-0.01394304,0.020273052,0.016062496,-0.0020024956,-0.017650316,-0.024100833,-0.024100833,-0.011802319,0.010512216,0.014658976,0.031813096,-0.0155663015,0.05214286,-0.006308747,-0.017012352,-0.010037288,-0.002319705,0.0016551601,-0.0048945956,0.004724472,-0.024185894,0.016884759,-0.010186146,-0.0045330827,0.0054474967,0.0069325333,-0.008896043,0.0321817,0.0050292765,-0.005511293,0.013758739,-0.003898664,0.018543463,-0.0038632215,0.0037710713,-0.0086763,-0.0136595005,0.008470734,-0.023703877,-0.0066100075,0.01114309,-0.014510118,-0.036491495,-0.024384372,-0.0177212,0.04417541,0.032096636,0.20199333,0.009356794,0.014297464,0.026000544,-0.009073255,0.029034413,0.0029594405,-0.0037001865,-0.012085859,0.023959063,-0.023391984,0.004150305,0.00909452,0.0028619738,0.033882935,-0.010058553,-0.02733318,-0.05307854,-0.040149152,0.009739571,0.014460499,-0.011632196,-0.027248116,-0.015041755,0.016402742,0.010554747,0.0056105317,0.023491222,0.011681815,0.024965627,-0.02411501,-0.013142042,-0.010016022,0.002626282,-0.0025979278,0.007219617,-0.025546882,-0.009101608,0.0009968175,0.0025642577,-0.010051465,-0.03935524,0.0032855105,-0.009548183,0.011277772,-0.022980852,-0.012844326,0.017437661,-0.011249417,-0.0037568943,-0.04956265,-0.009385147,-0.001965281,-0.009399325,0.0040971413,-0.010483862,0.0004970796,0.0053872447,-0.0047067506,0.013531908,-0.008846423,0.015793134,-0.01706906,-0.011199798,-0.007045949,0.015892372,-0.030650588,-0.014517207,0.012808884,-0.009810456,0.026879515,-0.03615125,-0.0072727804,-0.01757943,0.004993834,-0.027829371,0.018741941,0.01385089,0.010809932,0.018430049,-0.0049832016,-0.013453935,-0.01562301,0.007017595,-0.021251263,-0.0019032569,0.008073779,-0.016048318,-0.03203993,-0.00028331767,0.011476249,-0.0135602625,-0.020400645,-0.017777909,0.015864018,0.008024159,0.0058692615,-0.020244699,-0.0024703352,-0.010568923,-0.018330809,0.03479026,-0.010590189,0.014297464,-0.021520626,0.010455508,0.0043806806,0.0064469725,0.009179582,-0.0155663015,0.0019138895,-0.011256506,-0.011171444,-0.013220015,0.014488853,0.022881614,0.0052915504,-0.015793134,-0.0025890672,-0.007148732,0.04477084,-0.031699684,0.01981939,0.0041963803,-0.00499029,0.019110542,-0.010923347,0.021180378,0.00055600266,-0.045026023,0.0013645324,-0.03334421,0.02420007,-0.01086664,0.00815884,0.024058301,0.014120252,0.0032429795,-0.027829371,-0.018869534,0.026043076,0.002776912,0.025249166,0.008102133,0.029488077,-0.027545834,0.0120291505,0.011929912,-0.012390663,-0.033826225,0.0091441395,-0.008669211,0.008059601,0.015523771,0.02886429,-0.004930038,-0.005741669,-0.043665037,-0.012149654,-0.0036576556,-0.018741941,0.005163958,0.03892993,-0.007237338,-0.0269504,-0.013723297,-0.17976385,0.010859551,0.0117030805,-0.015708072,0.03031034,-0.021336325,0.027404064,-0.006237862,-0.012787618,-0.007662647,0.01684223,0.010271207,-0.039979026,0.0012298513,-0.018926242,-0.0044338442,-0.0039341063,0.022612251,-0.008328964,0.022697313,0.036179602,-0.014758215,-0.0011412452,-0.018245747,0.014474676,0.009590713,-0.009895518,-0.009930961,-0.0005179021,-0.021719102,0.003501709,-0.010760313,0.0014141517,0.008151752,0.0000948638,0.040772937,0.0052206656,-0.0057204035,-0.01319875,0.009491474,0.02032976,0.03683174,0.011681815,0.00015051944,0.0039553717,0.015410355,-0.016402742,0.0046464987,-0.0052100327,-0.0075704968,0.004823711,-0.02937466,0.008520353,-0.0037001865,-0.00774062,0.0054120542,0.0002616092,-0.0034379128,-0.017990561,-0.048995573,-0.0025784345,-0.037568945,0.0018235114,0.026128137,-0.020060398,0.01497087,0.006602919,-0.0035974036,-0.01095879,0.012142566,-0.010462596,0.014219491,-0.0014301009,-0.020896839,0.016544512,0.010611455,-0.022768198,0.0134752,0.0034503175,-0.009363882,-0.027829371,0.050186437,-0.007917832,0.018387517,0.00951274,0.003588543,0.002154898,0.006237862,0.014999224,0.0021602144,0.020882662,-0.04457236,-0.01086664,0.015537948,0.015382001,0.027645072,-0.012567875,-0.005139148,0.022853259,-0.0059472346,-0.008364406,-0.002037938,-0.014658976,0.024441078,0.01548124,0.01902548,0.023746409,0.010937525,0.03776742,-0.029629847,-0.026978755,0.010179057,-0.0018589539,0.016629575,0.012773441,0.0073649306,0.009342616,0.009661598,0.016516158,-0.0010588417,0.026411677,-0.020358114,0.0041113184,0.0021105949,0.012234717,0.0033209529,-0.12430359,-0.033967994,0.044005282,0.019876098,-0.028410628,0.018571818,-0.016445274,0.021974288,-0.03422318,0.064533524,-0.0034467734,-0.0043523265,-0.013042803,0.008633768,0.025390936,-0.0008049855,-0.025915483,-0.02629826,-0.021307971,0.027730133,-0.010590189,-0.0067907637,0.039241824,-0.011242329,-0.015963256,0.0027219763,-0.003909297,0.009129962,0.003161462,0.009271732,-0.011674726,-0.011830673,0.0009082115,-0.004086509,-0.019464966,-0.019280665,-0.03240853,-0.006454061,0.020457353,0.0025305874,0.007924921,-0.012815972,0.025759537,-0.00040692306,0.0023905898,-0.03762565,-0.009392236,0.023746409,0.0019865464,-0.023193507,-0.026383322,-0.019422434,-0.019932806,-0.0104484195,0.023944885,-0.0056105317,0.009073255,0.015452886,-0.011958266,0.005578634,-0.01361697,-0.024639556,0.010193234,0.042133924,0.025759537,0.023959063,-0.015736425,-0.019138895,0.0014602268,-0.009016546,-0.010505128,0.010951702,-0.027772665,0.007247971,0.0017349055,0.023193507,-0.019436613,-0.02943137,0.0076130275,-0.02788608,-0.020117106,-0.0123552205,-0.03683174,-0.024242602,-0.0014885808,0.016884759,-0.0023941342,-0.0066950694,-0.0086763,-0.036775034,-0.009775014,0.0027964052,0.017834615,-0.011405365,-0.014658976,0.0077051776,0.0061846985,0.005334081,0.022909967,-0.0037781599,-0.0009339072,-0.013305077,-0.04491261,0.015268586,-0.012808884,0.0042034686,0.010533481,-0.00531636,0.003990814,0.0009024521,-0.025887128,-0.008165929,-0.060393848,0.002036166,-0.025320051,-0.011759788,0.004660676,0.0034450013,0.0048095337,0.0010428926,-0.0047776354,0.008910219,0.01338305,-0.020783423,0.017012352,-0.001876675,0.022867436,-0.03646314,-0.015438709,0.026170667,-0.0071983514,-0.02163404,0.017267536,-0.0152402315,0.016005788,0.034535073,0.0026245096,-0.02951643,0.01855764,0.0044232113,0.01953585,-0.02434184,-0.02770178,-0.037568945,0.008435291,-0.0062697604,-0.025192458,0.019379904,0.023902355,0.012277247,-0.031416144,-0.018727764,0.008123398,0.007896567,0.004650043,-0.02668104,0.00029262132,-0.0022647693,0.02821215,-0.0043700477,0.014247845,-0.0046925736,0.040319275,0.030225279,0.04202051,0.012752175,-0.0024118554,0.008796804,-0.013794182,-0.0056353416,0.014155694,-0.02937466,-0.010519304,-0.015864018,0.0028602018,0.007485435,0.01996116,-0.020400645,0.012518256,0.0001910567,-0.014084809,0.011086383,0.036207955,-0.02835392,-0.004355871,0.023562107,0.037795775,-0.004504729,-0.009463121,0.028382273,0.005482939,0.01627515,-0.0146448,0.016402742,-0.017664492,-0.012660026,-0.014658976,0.03600948,-0.036179602,-0.0087188305,0.010257031,0.018217394,0.007017595,0.009881341,0.00835023,0.015452886,-0.012546609,0.040290922,-0.045706518,-0.013567351,-0.024795502,-0.0012865592,0.0126812905,0.01314913,-0.02420007,0.01566554,-0.019464966,0.00685456,0.0053801564,-0.008981104,-0.013461024,0.024923095,0.010235765,0.015027577,0.025802067,-0.012043327,0.020542415,0.037427176,0.011951177,-0.01682805,0.020556591,-0.008995281,0.0062095085,0.007967452,-0.027148878,-0.024908919,-0.009810456,-0.02191758,0.0056105317,0.013815448,-0.0300268,0.09611979,0.0034060145,0.011802319,0.0206133,-0.03892993,-0.003219942,0.019266488,0.011072205,-0.019705974,-0.03637808,0.048797097,-0.008045425,0.019011304,-0.048853803,0.015452886,-0.010554747,-0.020698361,-0.01515517,-0.010427154,-0.014439234,0.034109764,-0.00029018466,0.016898936,-0.022853259,-0.005078896,-0.009526917,-0.00068846863,-0.0061846985,0.002525271,-0.024001593,0.00830061,0.004224734,-0.026836986,-0.009385147,0.013248369,-0.027077993,-0.004267265,0.014999224,0.019096365,0.016799698,0.014985046,0.03668997,-0.018330809,0.019365728,0.031728037,-0.011497514,-0.017636139,-0.0009640333,-0.0033563953],"SELECT CONCAT(u.email, CONCAT('@', d.name))\nFROM \n user u\n JOIN domain d\n ON u.domain_id = d.domain_id\n LEFT JOIN admin a\n ON u.id = a.id AND u.domain_id = a.domain_id\nWHERE \n a.id IS NULL\n":[-0.015338085,-0.00035524004,-0.019845387,-0.021369915,-0.02521438,0.03136552,-0.034308523,0.00015514565,-0.013680988,-0.037887853,-0.0026380974,0.0017896642,0.004629927,0.016756559,-0.010936837,0.006926663,0.016942155,0.0081926845,0.010373424,-0.019328373,0.0068670074,-0.0068007237,-0.026911246,0.006151142,0.012633703,-0.0068007237,0.010459593,-0.016186519,-0.025267405,0.025267405,0.002182396,-0.0019040038,-0.022722106,-0.04552375,-0.018824615,0.03963775,0.016703531,-0.012613818,0.033513118,0.008278853,0.011288141,-0.004265366,0.00024960015,-0.048387215,0.044489726,0.01030714,0.01572253,-0.014966895,0.016398625,-0.00007399971,0.00321311,0.020640792,-0.043667804,-0.02159528,-0.022218348,0.00013111775,-0.008033603,0.039425638,-0.009127287,0.017485682,0.011858182,-0.00055719865,-0.0163456,-0.005654013,-0.02484319,-0.008431306,-0.009829896,-0.004414505,0.0022586223,0.023292147,0.035369065,0.02866114,0.005925777,0.0029131756,0.012448108,-0.0022470227,0.00016415611,0.017141005,-0.0064560478,-0.01289221,0.0039936025,-0.0021409686,-0.023623567,0.013853326,0.01650468,-0.026473772,-0.007152028,0.017472425,-0.049500786,0.00010242927,-0.008577131,0.021396428,0.0070062038,0.009167057,-0.020866157,0.0005555416,-0.035713743,0.04507302,-0.0075364746,-0.0118714385,0.0028253493,0.01769779,-0.02754757,-0.012779527,-0.025479514,-0.00965093,-0.009014605,0.0050442014,0.0069001494,-0.037384097,-0.01157979,0.028342977,0.01901021,-0.027521057,-0.007251454,-0.0065687303,-0.013316426,0.0031153413,-0.018360628,-0.0035428721,0.022231605,0.00556453,-0.0080998875,-0.019924928,0.025386717,0.009876295,-0.0041858256,-0.023133066,0.014237773,-0.018811358,0.030570114,0.0072845956,0.014343827,0.009080889,-0.014582449,0.026579827,-0.02866114,0.011844926,-0.01818829,-0.019368144,0.008219198,0.010174572,0.019368144,-0.007881151,-0.003416933,0.04024756,0.009432193,-0.017194033,-0.015815329,0.00051411416,0.030941304,0.022443714,-0.013840069,-0.016160004,0.017604992,0.0032396235,-0.026513543,0.021847159,-0.00072870817,-0.013435738,-0.016358856,0.017406141,-0.0026546684,-0.019620022,0.01720729,0.033804767,0.013614704,0.0050806575,-0.026646111,-0.0045603295,0.0033804767,0.019566994,-0.011897952,-0.0018178348,-0.0096708145,0.0065190173,0.010042004,-0.001201395,-0.030358007,-0.02754757,0.002921461,0.0003813393,-0.0075165895,0.039849855,-0.00453713,-0.020335887,0.012070291,-0.012414967,0.0020415427,0.027388489,0.0036522406,0.021648308,0.006635014,-0.0224172,-0.59856975,-0.014635475,0.012202858,-0.00718517,0.029907277,0.0003925247,-0.020587767,-0.0071453997,-0.005842922,0.0011276541,-0.027255923,0.015536936,0.0015709274,0.000080213824,-0.0030722567,-0.011036262,-0.00326448,-0.034308523,0.000902289,0.012507764,-0.011016377,0.010154687,-0.005332536,0.014052178,0.006068287,0.01285244,-0.0038312068,-0.015404369,-0.0008049346,-0.00269941,-0.01395938,0.01395938,0.016730046,-0.013077805,0.041732315,0.012958494,-0.014834327,0.022112295,-0.013236886,0.04356175,-0.02874068,0.0034931593,0.044118535,0.0036422978,0.007065859,0.016663762,0.014807814,0.016133491,0.01055239,-0.019885156,-0.0019736018,-0.019553738,-0.029695168,0.007682299,0.026327947,-0.013641218,0.016332341,-0.012547534,0.026062813,0.0036422978,-0.010897066,0.03298285,-0.032823768,-0.004967975,-0.009478591,-0.017114492,0.009100773,0.010844039,0.0045967856,0.009180314,0.035209984,0.0051469416,0.014131718,0.016027436,0.001957031,0.005186712,0.063049205,0.015749045,-0.006860379,0.0362175,-0.004043315,0.006787467,-0.0016844386,-0.017300086,0.032876793,0.004076457,-0.040300585,0.0019885157,-0.012713243,-0.015258544,0.027865734,0.040698286,0.0084777055,0.004020116,0.001943774,0.00739065,-0.019964697,0.007973948,0.0041162274,-0.021794133,-0.007231569,-0.03253212,0.010525877,0.017141005,0.042951938,0.012786156,-0.005919148,0.013084433,0.053530842,-0.01802921,-0.003025858,-0.041493695,-0.020388914,-0.025068555,0.007410535,-0.03534255,0.035369065,0.010784384,0.02245697,-0.0035031019,0.0041559977,0.012328797,0.029748196,-0.022244863,0.016849356,0.024074297,0.022973984,-0.0033771624,0.0028783765,-0.007357508,0.012991636,0.007920921,0.015165746,-0.025612082,0.015589963,-0.003044086,0.0053888774,0.019646535,-0.0118714385,-0.0077419546,0.014595705,-0.0012129946,0.0084777055,-0.0126270745,-0.02065405,0.0016546107,-0.026182123,0.015324827,-0.02631469,-0.01904998,-0.010201085,0.01699518,-0.022814903,0.013104319,-0.0056506987,-0.026301434,-0.00961116,-0.053716436,-0.0077088126,-0.014171489,0.002527072,0.006051716,-0.008988091,-0.0132567715,0.007304481,-0.0034699598,0.012991636,0.009379166,0.0060384595,-0.014940381,0.018890899,-0.009054375,-0.0013024778,0.029164897,0.0031683682,0.014980151,-0.0095448755,0.023795905,0.0066317,-0.021383172,0.0030358005,-0.015417625,-0.024869703,-0.004653127,-0.00073947926,0.0021558825,-0.006296966,0.031604145,-0.044436697,0.02586396,-0.014874098,-0.01157979,-0.013893097,-0.006621757,0.02245697,0.032373037,0.017008437,0.0058694356,-0.006134571,0.010439707,0.0114339655,-0.0037549804,-0.014131718,-0.0035362437,-0.0018708619,-0.004020116,-0.0055744722,-0.029058842,0.033725224,-0.017671276,-0.006134571,-0.048148595,-0.0032512231,0.0030059728,-0.019023467,0.02783922,-0.0019901728,0.012527649,-0.025877217,0.03711896,0.017883385,0.011473736,0.028608112,0.0026878105,0.011679215,-0.015987666,-0.0060782298,-0.002319935,0.025519285,-0.029748196,-0.026805192,0.00443439,-0.016531194,0.010055261,0.0027607225,-0.008225827,0.00064088206,-0.018307602,0.010890437,-0.028210409,-0.0076624136,0.025810935,0.025386717,-0.004232224,0.050614353,0.0019719447,0.037463635,0.0054684184,-0.001357162,0.03608493,-0.001177367,0.032903306,0.017578479,0.0071188863,0.004212339,0.00285352,-0.008504218,0.023040269,0.021157807,0.00081860565,0.032266982,0.016199775,0.01810875,-0.009180314,0.009399051,0.010081775,0.012766271,-0.028263437,-0.006532274,-0.025810935,-0.019275345,0.010565647,0.023875445,-0.021674821,-0.015629733,-0.0024160466,-0.007543103,-0.0063466793,0.030861763,0.016663762,-0.010810897,-0.035581175,0.04019453,0.031869277,-0.004275309,-0.016040694,-0.0025834134,0.019076495,-0.010810897,0.0025983271,-0.0076624136,0.012951866,0.024167094,-0.01474153,0.0071586566,0.017883385,0.006860379,-0.015669504,-0.011480364,-0.02065405,-0.00081032014,0.01108929,-0.03711896,0.007165285,0.051383246,-0.0020879414,0.0037384096,-0.012746385,0.011878067,-0.010724728,-0.03494485,0.035793282,-0.008398165,0.002250337,0.00094123074,0.012222744,-0.044860914,0.010824154,0.02611584,0.017604992,-0.0069863186,-0.037304554,-0.0041493694,0.009273112,-0.014158232,0.016292572,-0.0128789535,0.025890475,-0.023689851,0.017671276,-0.008935064,-0.04077783,-0.004059886,0.0050640865,-0.03128598,0.0058197225,0.02746803,-0.0024591312,0.031710196,-0.014993409,-0.010459593,-0.0152055165,-0.024816675,0.0036820683,-0.004109599,-0.025280664,-0.0037218386,0.008517476,0.048175108,0.004633242,0.0016894098,-0.0052529955,-0.014065434,-0.039080963,0.016040694,0.022430457,0.03388431,-0.008848895,0.0021608537,0.027706653,0.007337623,-0.0034799024,0.00718517,0.015656248,-0.009538247,0.04183837,-0.009737099,-0.008033603,0.009763612,-0.025970016,-0.034626685,0.016292572,-0.012335426,-0.004623299,0.014688503,-0.0008716327,-0.010983235,-0.0178171,0.0063831354,0.01601418,0.017644763,-0.007370765,-0.021621794,-0.042686805,0.0025834134,0.003024201,0.024631081,-0.0056076143,-0.01728683,-0.038285557,-0.041016452,0.000971887,-0.0023746192,0.005915834,-0.010399937,-0.022112295,-0.011254999,0.02882022,-0.015430882,0.042527724,0.036880337,0.012229372,0.012965122,0.013217001,-0.04446321,-0.023212606,0.017764073,-0.026871476,-0.023212606,-0.006303595,0.0010928551,0.015483909,0.0063698785,-0.01716752,0.015430882,0.01568276,-0.0026099267,-0.0132634,0.015749045,0.028051328,0.035846308,0.008974834,0.004043315,0.0034765883,-0.018307602,-0.052443787,-0.005965547,-0.00077966385,-0.0019885157,-0.016822843,0.012163088,0.0059854323,-0.016120235,-0.037171986,0.0022470227,-0.0054518473,0.004192454,0.0076889275,0.023133066,-0.017711047,-0.005567844,0.011931094,-0.009405679,-0.0067476965,-0.03001333,-0.02311981,0.02927095,0.051250678,-0.030861763,0.02315958,0.010810897,-0.036774285,0.0023845618,0.022311145,-0.0011798526,0.004122856,0.010095031,-0.00036580404,-0.023557283,-0.011294769,0.0016206403,0.0015195574,0.0069531766,0.012872325,-0.012090175,-0.022297889,0.013448995,-0.01391961,-0.017843613,-0.018519709,-0.019818874,-0.021860415,0.014251029,0.019779103,0.012010635,0.021833902,-0.004964661,0.0036555547,-0.018426912,-0.016372113,-0.024365945,0.0014889011,0.01568276,0.014436624,0.025108324,0.011175458,0.026924502,0.01030714,0.0015932982,0.009776869,-0.0035031019,0.0052894517,0.015669504,-0.015457395,0.028475545,-0.0014333884,0.018612508,-0.004212339,0.0017913212,0.015338085,0.000041556872,-0.0017730931,0.0011922809,-0.033566143,0.01112906,-0.028024815,-0.018042466,-0.026023041,-0.03786134,-0.0008890322,-0.009889551,0.004215653,-0.0073508797,-0.004812208,0.033513118,-0.00009564553,0.0432701,0.0019719447,0.0008840609,-0.032452576,0.020786617,0.00089897483,-0.01904998,-0.0084445635,-0.0054452186,0.018055722,-0.000025710886,0.008530732,-0.0054883035,0.014290799,-0.0027275807,-0.0118714385,0.018532967,-0.029403519,0.021316888,-0.019116264,-0.015271801,0.0019238889,0.010956721,0.0038709773,-0.014728273,0.010068518,-0.009796754,-0.036721256,-0.01744591,-0.040141504,0.028687654,0.036986392,0.027759679,0.03189579,0.006840494,-0.009531619,0.0041129133,-0.016690275,-0.022350917,0.03292982,0.030888278,-0.032160927,-0.013064548,-0.0021426256,0.0065455306,-0.024631081,-0.010380052,0.034706227,0.020905929,0.030570114,-0.0057501243,0.017114492,0.0081728,0.023424715,-0.0193814,0.0023514198,-0.009677443,-0.009458707,-0.0346532,0.007337623,-0.04833419,0.0075696167,-0.023093296,0.010413194,-0.000739065,-0.0122823985,0.0020531425,0.004089714,-0.003576014,-0.00956476,0.024803419,-0.007304481,-0.0061942264,0.026500287,-0.0015419283,0.003148483,0.002580099,0.02623515,0.0025519284,-0.005276195,0.00849759,-0.0025585569,0.00049008627,0.0044078766,-0.014396854,-0.026354462,-0.054352764,-0.0025486143,0.026009785,-0.01716752,0.030782223,0.03234652,0.0018957183,-0.017883385,-0.013787042,-0.0035130444,0.008696442,0.00052281393,-0.02783922,0.009882923,-0.009127287,-0.010651816,-0.008331881,-0.016968668,0.013853326,-0.0011044547,-0.0032031673,0.00158087,-0.004619985,0.0016388684,-0.0048751775,0.003798065,-0.021290375,0.0048884344,-0.010081775,-0.012037149,-0.008848895,0.0103005115,0.028316464,-0.0033274496,0.027083583,-0.021091523,0.016133491,0.0049779178,0.021542253,-0.007735326,-0.0132567715,0.025426487,-0.007012832,-0.003678754,-0.0076624136,0.020017724,0.012593932,0.006860379,0.0044973595,0.006287024,-0.0530536,-0.008278853,-0.017551966,0.009034489,-0.000053389576,-0.0093261385,-0.02402127,-0.010744614,-0.0048751775,0.03958472,-0.008862152,0.0052132253,0.032585144,-0.020627536,-0.006684727,0.02274862,0.00009119209,-0.01330317,-0.015086206,0.0040864,-0.019593509,-0.031471577,-0.006237311,-0.004500674,0.017591735,-0.025930244,-0.03433504,-0.0022901073,-0.038736288,0.014436624,-0.011341168,0.0026612969,0.015908126,0.010035376,-0.01112906,0.004258738,-0.009836525,0.0070062038,-0.038656745,-0.005882692,0.016981924,0.012361939,0.03539558,-0.015749045,-0.016849356,-0.010916951,0.010459593,0.008431306,0.008285482,0.027759679,-0.010671701,-0.001839377,0.018068979,-0.015828585,-0.032744225,0.018360628,0.011009749,-0.032611657,-0.01885113,-0.007907664,-0.0025867275,0.006833866,0.015046435,0.0260363,-0.015510422,-0.02308004,-0.02163505,0.0063135372,-0.0021558825,0.022894444,0.022722106,0.00048221505,0.00002606043,0.021701334,-0.0005683841,0.0004784866,0.003352306,0.0117786415,-0.015669504,0.0026231837,0.007251454,-0.01904998,0.0056838407,-0.027388489,0.004281937,-0.020044237,-0.013044663,-0.013038035,-0.007874522,-0.014251029,-0.007973948,0.02656657,-0.020746848,0.014569191,0.0037152101,-0.012222744,0.0065919296,-0.008842266,-0.010565647,-0.025850704,-0.022881187,0.019739332,-0.05053481,-0.015338085,0.0052331104,0.0021890244,0.022867931,0.011513506,0.21338099,-0.009379166,0.008106516,0.03009287,0.010240856,0.011473736,0.017313343,0.0023514198,-0.00050458586,0.020972213,-0.049659867,-0.0056772125,0.024034526,-0.0033390492,0.053451303,0.01285244,-0.04462229,-0.036588687,-0.03165717,-0.013250143,-0.014980151,0.017856872,-0.02660634,-0.011473736,0.026473772,-0.008106516,-0.017273573,0.005962233,0.014966895,0.016650505,-0.01391961,-0.00020558352,0.009703957,0.009810011,0.015576706,-0.016690275,-0.009107402,-0.02016355,0.0019305174,0.011294769,0.012547534,-0.0047227247,-0.0012005663,0.0008351766,0.0005824694,-0.020786617,0.0012436509,-0.005329222,-0.014463138,0.020044237,-0.009120659,0.003489845,0.021210834,0.0023679908,-0.016292572,0.0034136185,0.025386717,-0.0016935526,-0.0018509767,0.013137461,-0.023981499,0.04865235,0.0034964734,0.03298285,-0.017061464,0.01920906,-0.0073442515,-0.01560322,0.026341205,-0.0130048925,0.016027436,-0.025187865,-0.016955411,0.023928473,-0.023424715,-0.02697753,0.0038411494,0.027070327,0.026129097,-0.004636556,-0.017180776,0.0009569732,-0.0024143895,0.0013762186,0.0036157845,0.005531388,0.0014731587,-0.004623299,-0.01942117,-0.029138383,0.011254999,-0.022430457,-0.012083547,-0.0032976218,0.012587304,0.010459593,0.012083547,0.0045338157,-0.010777755,-0.007065859,-0.030861763,0.03653566,0.018917413,0.021409685,-0.02180739,0.0045106164,0.010943465,-0.005292766,0.029297465,-0.02278839,-0.012076919,-0.030251952,-0.021422943,-0.011699101,-0.018904155,-0.0004254595,0.03292982,-0.0035561288,-0.022297889,-0.008464448,0.0137605285,-0.0013207059,0.0099558355,-0.01256742,0.005538016,0.016955411,-0.021568768,-0.000049246835,-0.0041493694,-0.049712893,0.041917913,0.0028203782,0.023225863,0.012945238,-0.00037408952,0.014953638,0.02069382,-0.018082237,-0.008530732,0.011321283,0.006833866,-0.022496741,0.032876793,0.0074701905,0.015709274,-0.03165717,-0.0014590734,-0.022960728,-0.014502908,-0.004865235,-0.035554662,0.019659791,-0.031922307,-0.013720758,0.056420818,0.0022801647,-0.02874068,-0.021528997,0.011977493,0.01904998,-0.02533369,0.00402343,0.022682335,-0.0025469572,-0.021528997,-0.010505991,-0.16533846,0.031869277,0.0270173,0.016332341,0.01646491,-0.0013687616,0.007616015,-0.020097265,0.014065434,-0.0052132253,0.0011177115,0.018652277,-0.061034176,-0.0095448755,0.0009213456,0.026884733,-0.018294344,0.013283285,0.06405672,0.0014665304,0.047379702,0.0052563096,0.0067079263,-0.0026894675,0.0067476965,-0.01403892,-0.02549277,-0.012381825,-0.011639445,-0.021316888,-0.013985894,-0.006449419,0.052974056,-0.008729584,-0.03539558,0.02754757,-0.0084445635,-0.02529392,-0.011533391,0.00015887411,0.034520634,0.020468455,0.011858182,-0.004520559,0.0043250215,0.0075563597,0.025956757,0.011016377,0.025532542,-0.0017648077,0.0422891,0.0016297543,0.0092929965,0.01256079,-0.016133491,0.031763226,-0.017472425,0.01855948,-0.013442366,0.007768468,0.0007883636,-0.046451725,0.00701946,0.027892247,-0.018214803,-0.0013008207,-0.016239544,0.012832555,0.0069664335,0.016411884,-0.026672624,-0.01958025,-0.0067443824,-0.017273573,0.014396854,0.017419398,-0.008550618,-0.0041526835,-0.0009080888,-0.0073641366,-0.00718517,0.03534255,-0.01773756,0.037039418,-0.029880762,0.006992947,-0.001296678,-0.021489227,-0.007788353,-0.018811358,0.029615628,-0.0057136687,-0.008431306,-0.0029811165,0.026937759,0.0026264978,0.021648308,0.023782648,0.0048354072,-0.002697753,0.0037682373,-0.021118037,-0.031975333,0.027812706,0.018347371,0.021290375,-0.013853326,0.0015154147,0.038285557,-0.0038643489,0.010983235,0.02418035,0.018373884,0.029748196,0.001193938,-0.0062008547,0.004364792,0.0043780487,0.001384504,-0.0075696167,0.043906428,0.011745499,0.011897952,-0.0084777055,0.00059116917,-0.008901922,-0.06909429,-0.02282816,0.02061428,0.015775558,-0.014224515,-0.0009271454,0.016478166,0.0040300586,-0.039770313,0.032160927,0.0017598365,-0.02357054,-0.017021695,-0.0064063347,0.025506029,0.021197578,-0.026672624,-0.034600172,-0.013369454,0.011712357,-0.014701759,0.00045321588,0.02615561,-0.025227636,-0.01248125,-0.015709274,0.0053192796,0.026646111,0.0021359972,0.002475702,-0.028555086,-0.02533369,0.012574048,-0.006240625,-0.02537346,-0.026553312,-0.016809586,0.013482137,0.022218348,0.0021094838,0.000536485,-0.002028286,-0.010128173,-0.02122409,-0.019805616,-0.009810011,-0.0009917722,0.030994331,-0.008928436,-0.008265597,-0.021873673,-0.012149831,-0.010532505,-0.0014980151,0.023451228,0.013502021,0.013475508,-0.0044973595,-0.0110561475,0.018201547,-0.010466221,-0.0074503054,-0.0011193686,0.01038668,0.039266557,-0.011188715,-0.036800798,-0.0037052676,0.0022602796,-0.01399915,-0.027574085,-0.0035528147,-0.029721681,0.013415853,-0.0076955557,0.0034500747,0.010824154,-0.024935987,-0.0041460553,-0.012116689,-0.01826783,-0.02713661,-0.011221857,-0.01867879,0.017551966,-0.0096907,-0.0018112063,0.009312882,-0.0044575892,-0.032823768,-0.0009644301,-0.013422481,0.03966426,-0.013203744,-0.023477742,-0.028051328,0.010108288,-0.026341205,0.012448108,-0.007045974,-0.027282435,0.0072779674,-0.06904127,-0.002508844,-0.009027861,0.017485682,-0.0013629618,-0.013574934,-0.0014135032,-0.0022950785,-0.002301707,0.01728683,-0.006860379,0.020441942,0.012302284,-0.009518362,-0.026354462,0.023331918,0.020786617,0.013535163,0.007198427,0.005982118,0.01716752,0.0045404444,0.01568276,0.009346024,0.0037052676,0.0018327486,-0.04910308,-0.0017465797,0.0047359816,-0.027043814,0.012295655,-0.01034691,0.0129120955,0.017551966,0.016889127,-0.052868005,-0.0093261385,0.0021227405,0.0016637248,-0.0038345212,-0.0042885654,-0.025320433,-0.005103857,-0.013230258,-0.0011276541,0.006253882,-0.014953638,0.007609387,-0.009253226,-0.010910323,0.019434426,0.011665959,-0.00024048612,-0.013230258,0.016889127,-0.02335843,0.024220122,-0.005372307,0.019036723,-0.008278853,0.034388065,0.0063566216,0.031073872,-0.01802921,-0.0071255146,-0.015868355,-0.01568276,-0.011301397,0.02122409,-0.013276656,-0.022430457,-0.008371651,-0.02964214,0.009107402,0.02451177,-0.00017969139,0.0011375967,0.036164474,-0.004570272,0.03412293,0.017498938,-0.02660634,0.013124203,0.016438397,0.023623567,0.0062472536,-0.01560322,0.006644957,-0.01403892,0.014198002,-0.037092447,0.013627961,-0.024737135,-0.017392883,-0.018400399,-0.001520386,-0.0072448254,-0.017949669,0.008404793,-0.00068893784,-0.0068802643,-0.011665959,-0.00015266001,-0.010287254,-0.006893521,0.020601023,-0.010419822,-0.0071255146,0.0028800336,0.037596203,0.010499363,-0.019036723,0.015788814,0.015033179,-0.012222744,-0.0002711424,0.017711047,-0.018652277,-0.02578442,0.0056672697,-0.004109599,-0.0039273184,0.013985894,-0.0054220194,0.047856946,0.030941304,-0.01679633,-0.018082237,0.012865697,-0.023093296,-0.0002096227,0.008716327,0.011215229,-0.025651852,-0.0346532,-0.003764923,0.000060639373,0.00073285087,-0.01403892,0.078055866,0.02459131,-0.028926276,0.0039571463,-0.0005683841,0.026513543,0.023888702,0.0048751775,0.0038908625,-0.035501633,0.032823768,0.011268255,0.0013712472,-0.017750816,-0.01568276,-0.007920921,-0.013270028,-0.01699518,-0.048944,-0.004643184,-0.026274921,-0.021091523,0.00804686,0.003057343,-0.03995591,-0.005892635,0.004348221,0.015828585,0.0033755053,-0.022311145,-0.0006562102,-0.012176344,-0.016889127,0.0038378353,0.005962233,-0.040539205,-0.024458744,-0.0011881382,0.027282435,0.019315116,0.004043315,0.0270173,-0.015179004,0.0023845618,0.014980151,-0.022112295,-0.015550192,0.011513506,-0.0019868587],"The Mysql command line doesn't launch":[-0.009413054,0.0016871967,0.004620137,-0.0113827465,-0.02966287,0.025986113,-0.027216306,-0.02229553,0.0035696349,-0.008072281,0.031819165,0.005131566,-0.0006496528,-0.009178074,-0.010608692,0.0014746774,0.0068040765,0.0050486317,0.009979773,-0.0065449066,0.009592745,0.014444408,0.0083694635,-0.0034158607,0.0060023773,-0.008825602,-0.01232267,-0.018618774,-0.0014202516,0.018632594,0.011755952,0.0028180417,-0.018148812,-0.010836761,-0.03051986,0.027119549,0.017886186,-0.019655453,0.0066796746,-0.0049138633,0.005563516,0.010173286,0.0006902561,-0.023525724,-0.033560786,0.033311985,0.0033553876,0.0023860917,-0.021576766,-0.0061475122,0.0056982846,-0.004336778,-0.047079094,-0.009703325,0.004122531,0.00051877194,-0.018038232,0.021217383,-0.014720856,-0.002126922,-0.00005658545,0.007021779,-0.0055082263,-0.010097263,0.000509701,0.019683098,0.0013926068,0.000017993418,0.0008837697,-0.003326015,0.018217923,0.03754164,0.00938541,-0.008093015,0.028418854,0.0014047014,-0.044259325,0.017153598,0.00705288,-0.008044637,0.016172208,-0.0009520178,-0.028916461,0.013794756,0.0054218364,-0.016863327,0.011818152,-0.0034953395,-0.029303487,-0.01762356,0.0057673967,0.011120121,0.0036871252,0.003498795,0.014237072,-0.013808577,0.011527882,0.002306613,-0.0004725533,-0.009399232,-0.019448116,0.0041743647,-0.003291459,-0.011030275,-0.013145102,0.008210505,0.0040499633,-0.0013295421,0.03040928,-0.029275844,-0.007844212,0.011859619,-0.0042883996,-0.0276448,-0.015411976,-0.014485875,0.02517059,-0.02551615,0.0063237483,-0.024133911,0.022088196,0.018466726,0.021120626,-0.027133372,0.00022223828,0.006703864,-0.028501788,-0.033477854,0.0014228433,0.004917319,0.045862723,0.0404167,-0.0011887264,-0.002583061,-0.016227497,0.008666645,-0.011562438,-0.0020578098,-0.01964163,-0.012688964,0.033201404,0.038260404,0.010698537,-0.026110513,-0.020484798,0.02475592,0.0070356014,-0.0046546934,0.0047825505,-0.023083407,0.0079617025,-0.020401863,-0.023774529,-0.047189675,0.014333829,0.018287035,-0.025018545,0.011949465,-0.027202483,-0.020291284,-0.0047376277,0.029856384,-0.00017040428,0.026442252,0.03018812,0.028833527,0.031349204,-0.016973907,-0.0064239604,-0.0009364676,0.016628347,0.0180797,-0.025142945,0.017886186,-0.004098342,0.0032344416,0.0132487705,0.013310972,-0.001667327,0.020567732,-0.03358843,0.017582092,-0.005566972,0.03497067,0.0016699187,-0.020415684,-0.0055877054,0.007871857,0.00673842,-0.016918618,0.007318961,0.007236026,-0.010816028,-0.00024124408,-0.64091706,-0.002297974,-0.007388073,-0.000881178,0.0037216812,0.022378465,0.00501062,0.00613369,-0.02395422,0.005805408,-0.009606568,0.010173286,0.025723487,-0.026414607,-0.005166122,-0.013601242,0.01284101,-0.033477854,-0.012066956,0.027893603,-0.0024154645,0.02384364,0.0061820685,0.016089274,-0.009834638,-0.011825063,-0.008784135,-0.001529103,-0.0050486317,0.023650127,-0.010069618,-0.0009511539,0.00039653011,-0.008417842,0.046747357,0.015868116,-0.040002026,0.010795294,-0.0074848295,0.04398288,-0.013601242,-0.021092983,0.0067004086,-0.012599118,-0.019973367,-0.000587452,0.02568202,-0.00115849,-0.010968074,0.017582092,0.017360935,0.009219541,-0.000120946,0.020899469,0.00030690047,0.016020162,0.037292834,-0.011272167,0.014983482,0.019157847,-0.022945184,0.031072756,-0.0043609673,-0.0067487867,-0.008569888,-0.025806421,-0.009143517,-0.00639286,-0.009378498,-0.009758614,0.01986279,0.0077128992,-0.011907998,-0.011700662,0.008383285,0.04381701,-0.004457724,0.007975525,-0.013960624,0.025792599,-0.0127235195,0.00020355644,-0.011880353,-0.0025709665,0.03632527,-0.0049553304,-0.016268965,-0.013158925,-0.006344482,0.012771898,0.011534793,0.012861744,0.0021925783,-0.0066727637,0.025488505,0.00984846,-0.0380116,0.008542243,-0.0018556572,-0.018563483,-0.005338902,0.0012561106,-0.0068628215,0.011769773,0.033256695,-0.002954538,-0.021908505,0.0032759088,0.037928667,0.001071236,-0.004544114,0.009095139,0.0030374725,-0.0008751307,0.020263638,-0.033394918,0.014776146,-0.014624099,-0.0015809371,-0.021867037,0.0075539416,-0.004533747,0.015218463,-0.028363565,-0.009744792,0.012011666,0.021811748,0.0022858793,-0.0024482927,-0.0039808513,0.019793676,0.01370491,0.0284465,-0.0070425128,-0.0015861205,0.013110546,0.032869667,0.0098069925,0.0140850255,0.015978694,-0.0074710073,0.009150429,-0.008715023,-0.0095167225,0.029220553,-0.03588295,-0.024838854,-0.006772976,-0.025847888,0.008341818,-0.012453983,-0.006150968,0.00463396,0.017665027,-0.009323209,-0.001702747,-0.027561866,-0.016158385,0.017955298,-0.036380555,-0.0023100686,-0.0017675394,-0.014375296,0.012011666,0.0041881874,-0.0120047545,-0.010670893,0.042766508,0.00041877554,-0.016047807,0.0024310146,-0.009343943,0.01393989,-0.0015455171,-0.022392288,-0.0011783596,-0.025046188,0.0059747323,-0.028722947,0.0069837677,0.029856384,0.018826108,0.0050417203,0.0029666326,0.022959007,0.012930855,-0.0027713913,-0.0069319336,-0.04785315,0.023401324,-0.019931901,0.033256695,-0.013062168,0.0015481088,-0.0017511253,0.028833527,-0.024106266,0.034473065,-0.016835684,0.016338076,0.018273212,-0.0025191323,0.0111684995,0.02096858,0.00007521329,-0.023829818,-0.019323716,0.0019126746,0.0069146557,0.013898423,0.0059574544,-0.020567732,-0.008099927,0.00034512806,0.02886117,0.01566078,-0.010007418,-0.011355102,-0.021507654,0.014665566,-0.01676657,0.00033972866,0.009952128,0.0024396535,0.025391748,0.016130742,0.02033275,0.035302408,0.022682559,-0.008652822,-0.007077069,-0.005086643,-0.0029752715,-0.019931901,0.012730431,0.0038115268,0.021853214,0.01618603,0.02557144,-0.019835144,-0.017900009,0.0072844047,0.020761244,-0.009883016,0.008922359,0.007436451,0.015052593,-0.004900041,-0.0024845763,0.0068178987,0.0011446675,-0.0060956785,-0.009572012,0.01042209,-0.0029528101,-0.004941508,0.00760232,0.00938541,0.028805882,0.048129596,0.011396569,-0.005494404,0.017609738,0.005390736,0.00587452,-0.011209967,-0.0026729067,0.005708651,0.017982943,-0.0031826077,-0.019365182,-0.012433249,0.03098982,-0.039255615,-0.008480042,-0.020913292,-0.010131819,0.018411437,0.014969659,-0.012654407,-0.021231206,-0.019931901,0.03748635,-0.018052055,-0.0025968833,-0.012709697,-0.038647432,0.051225815,-0.008169038,-0.002453476,0.0026383507,-0.0009563373,-0.007077069,0.00045743506,-0.001235377,-0.006289192,0.017789429,-0.008576799,0.014416764,0.0042918553,-0.0068628215,-0.000010872992,-0.032620866,-0.019766033,0.0406655,0.016738927,-0.009461433,-0.028087117,0.03679523,-0.008936182,-0.009108962,-0.0070597907,-0.013027612,-0.0063099256,-0.010878229,-0.0035661792,-0.006334115,0.005166122,0.0163519,0.045171604,-0.031432137,-0.06197964,-0.008535332,-0.0028819705,0.019309893,0.0039532064,-0.0012111878,0.015854293,-0.012868655,-0.001416796,-0.021701168,-0.024548583,0.009820815,0.008887803,-0.0044369902,0.009869194,0.021327963,0.004212376,0.025999935,-0.0052939793,0.006289192,-0.011534793,-0.013428462,-0.017112132,-0.01687715,-0.022779316,-0.0016431378,0.012108423,0.03541299,0.013884601,-0.01410576,-0.016960084,0.0040223184,-0.011997843,0.011534793,0.0059021646,0.024949431,0.020885646,0.03098982,0.023940397,0.01629661,0.01802441,-0.010816028,0.0021701169,0.017056841,0.0010038518,0.0015809371,-0.0016111735,-0.0012682052,-0.01232267,-0.034528356,0.012364137,0.00019156982,-0.0029649048,0.017886186,-0.008784135,-0.033892523,0.0044024345,0.004112164,0.022876073,-0.014831435,0.0054633035,-0.029386422,-0.021162095,-0.023719238,-0.006703864,0.022820782,0.00881178,-0.0067453315,-0.018093523,-0.030851597,0.0054045585,-0.02707808,0.0016370905,0.0033467487,-0.015232285,-0.034998316,0.0190058,-0.01376711,0.00881178,-0.0059747323,0.008611355,-0.026497541,0.02229553,-0.013276415,-0.018756997,0.016407188,-0.00705288,-0.0003637019,-0.024313603,0.0029908218,0.004398979,0.01197711,-0.0021286495,-0.006655486,-0.008853247,0.052829213,-0.03098982,0.023746883,0.0071047135,0.017250355,0.011258345,0.001080739,0.0015403337,0.023138698,-0.023373678,-0.008072281,-0.018867576,-0.0003015011,-0.00285087,0.0049622417,0.0180797,-0.0207336,0.015909582,0.008839425,-0.0032776366,-0.0020094314,-0.000071595714,0.025488505,-0.007360428,0.008196684,0.0216597,0.018287035,0.00069759926,0.012011666,-0.032924958,0.021714991,0.03358843,0.040471986,0.016738927,0.01416796,-0.048682492,-0.04959477,0.019074911,0.002021526,0.0085837105,-0.001874663,-0.014900547,-0.008701201,-0.036380555,-0.010961163,0.0047549056,-0.017747961,-0.0126060285,-0.02573731,0.0002539866,-0.0037700597,-0.017582092,-0.019171668,-0.02407862,-0.024203023,-0.0015645229,0.007858034,0.0007148773,-0.012073866,-0.017029196,-0.039421484,-0.019931901,-0.019448116,-0.019171668,-0.0023446246,-0.006728053,0.017830895,0.024562405,0.036021173,0.00627537,0.03259322,-0.009178074,-0.016794216,-0.023802172,0.003293187,0.0093024755,0.004993342,0.009081317,0.015716068,-0.007007957,0.046139173,-0.0059228987,-0.001452216,0.004278033,-0.008818692,-0.012530006,-0.024161555,-0.019102557,0.011306724,-0.018190278,-0.014444408,0.00057362963,-0.010622514,-0.016393367,0.016490124,-0.004053419,0.0057915854,-0.003249992,0.01895051,-0.0019800588,0.022889895,-0.018701708,-0.020166881,-0.0052248673,-0.0004786006,-0.001148987,0.010083441,-0.004803284,0.012889388,0.032123256,0.0011023364,0.011203055,-0.0037873376,0.034390133,-0.00910205,0.016462479,0.0041190754,-0.029635226,-0.011666106,-0.03870272,0.0063030142,0.0063824933,0.0028525977,0.02833592,0.011624639,0.012343403,-0.005397647,-0.018466726,0.0025346826,-0.019144025,0.031293914,-0.0037838821,0.0071738255,0.039421484,-0.0047479942,0.0040223184,0.031128045,0.01762356,-0.0116937505,0.025294993,0.047659636,0.014872902,-0.0047583613,0.031763874,-0.006088767,-0.0016621436,-0.028225342,0.02320781,-0.010221665,0.021106806,-0.035606503,-0.00038940294,-0.04647091,-0.008486954,-0.033422563,-0.0072152927,0.002938988,-0.014969659,-0.013359349,0.002773119,-0.029607581,0.009945217,0.015937228,-0.008860159,0.0028577812,0.004544114,-0.01237796,0.0014539437,0.00047816866,0.029303487,0.0067487867,-0.026027579,0.012447071,0.009696414,-0.013027612,-0.02118974,0.0151355285,0.030630438,-0.00788568,0.012536917,-0.0026970957,-0.0012630218,0.0005753574,-0.001148987,-0.0021390165,-0.010581047,0.0067522423,-0.0003671575,0.013310972,-0.0019904256,0.019600164,0.0071738255,-0.032897312,-0.026331672,-0.009641124,0.024396537,-0.0116937505,-0.010567225,-0.009309387,-0.024438003,0.0077751,-0.011569349,-0.008355641,0.0052801566,0.023885107,0.03328434,-0.015232285,-0.012066956,0.027478931,-0.009468344,-0.017817074,0.0011757679,-0.0028646924,-0.0016336349,-0.0041190754,-0.017029196,0.00042201515,0.010062708,0.03237206,0.002980455,-0.00754703,-0.025419394,0.030105187,0.026248738,0.012661318,-0.0038080711,-0.012170623,0.031293914,-0.034998316,-0.010207842,0.001770995,0.02142472,-0.012813365,-0.01485908,-0.00371477,0.015273752,-0.037679862,-0.001969692,0.0061302343,-0.0026850011,-0.010518846,-0.034473065,-0.034749515,-0.027340706,-0.020927114,0.01192182,0.01491437,0.00463396,0.024548583,0.029303487,0.00414672,0.014250894,-0.004917319,-0.022323176,-0.027893603,-0.005166122,-0.03386488,-0.013711821,-0.018052055,0.032040324,-0.008977649,0.00083236763,-0.018466726,-0.0016258598,-0.011493325,0.024493294,-0.012758075,-0.009599657,0.029441712,0.0011913182,-0.009599657,0.0060784006,-0.001097153,0.012350314,-0.0068351766,-0.0063824933,-0.042075384,-0.010332244,0.027962716,-0.017264178,-0.005850331,-0.00501062,-0.007954791,0.003991218,0.014389118,0.0061475122,0.0009304203,0.001702747,-0.002738563,-0.019171668,0.019420473,-0.0015705702,0.019392828,-0.044839866,-0.017291823,0.0319021,-0.018909043,-0.0062788255,0.0017001552,0.0010150825,-0.035274766,0.0037389593,-0.026760167,0.018439082,0.00380116,-0.011590082,0.028529434,-0.008673556,0.015121706,0.006655486,-0.004423168,-0.014029736,0.010104175,0.02113445,-0.019558696,0.0054218364,-0.01969692,-0.019821322,-0.013373172,-0.010871317,-0.0124125155,-0.014140315,0.0031428682,-0.0020336206,0.005020987,-0.02568202,-0.019848967,-0.0003870272,-0.0011014725,-0.008839425,0.006230447,-0.016407188,0.018287035,0.0018729352,-0.014789968,-0.03137685,-0.009758614,0.011327457,0.004278033,-0.025999935,0.013815489,0.008217417,0.013400817,0.04859956,0.22956242,0.021604411,0.0035368067,0.02573731,-0.006938845,0.0019593253,0.017554449,-0.012578384,-0.014071203,0.03126627,-0.028156228,-0.010553403,0.015716068,0.007187648,0.018618774,0.011389658,-0.025267348,-0.02078889,-0.020830357,-0.020581555,0.021493832,0.0029147987,-0.03414133,-0.0061406014,0.032454994,0.0069941343,-0.011652283,0.0061647906,0.016904796,0.0032517195,-0.009689502,0.008950004,0.010816028,-0.008030814,0.011562438,-0.0119840205,-0.0017934564,-0.0022841515,0.0094407,0.015591667,0.0065207174,0.009627301,0.009737881,-0.024133911,0.009565101,-0.007864946,-0.0037389593,-0.014665566,0.029303487,0.0052145002,-0.006202802,0.0013882873,0.041826583,0.014264717,0.0016258598,-0.030796308,0.019558696,-0.023802172,0.007325872,0.0047479942,-0.015384331,0.006938845,-0.022765493,0.026580475,-0.010809117,0.0058710645,-0.010912785,0.04561392,0.008645912,-0.016158385,-0.011721395,0.022544334,0.007560853,0.004875852,-0.0018383792,-0.026981326,0.019309893,0.032510284,0.029745804,0.0024828487,-0.021687346,-0.00622008,0.0027523853,-0.009461433,-0.014554988,-0.027962716,-0.003326015,0.006852455,-0.008618266,-0.0053803693,0.0002574422,-0.0377628,-0.020747423,-0.03157036,0.019226959,0.015011126,0.012129156,0.011078654,-0.018439082,-0.010304599,-0.040582567,0.06103972,0.0132695045,-0.020954758,-0.02429978,0.012336493,0.008348729,0.012972322,0.0074018952,0.0126060285,-0.009115873,-0.027271595,-0.021493832,0.0049104076,-0.00047989647,0.00800317,-0.0025087656,-0.011023364,-0.0016353627,-0.021590589,0.029607581,-0.02533646,-0.008839425,0.00037601247,-0.017250355,-0.004043052,-0.00898456,-0.009475255,-0.011251434,-0.030713374,-0.00029156625,-0.016918618,-0.0021649334,-0.000570606,-0.003334654,0.009599657,-0.0068870108,-0.0034314108,-0.0053596357,0.005736296,-0.010864407,0.015536378,-0.009323209,0.0008073145,-0.010892051,-0.037679862,0.003291459,-0.009813904,-0.038619787,-0.023511903,-0.011527882,0.0016681909,-0.015190817,0.0005317305,0.033837236,-0.0029752715,-0.014416764,-0.022309354,-0.016946262,0.0388133,-0.027976537,-0.024368891,0.039034456,-0.018176457,-0.017996766,-0.015439621,-0.17770077,0.014637922,-0.00423311,-0.015937228,0.04002967,0.01629661,0.008514598,-0.008632089,0.004689249,-0.00892927,-0.0031394127,0.0000013835898,-0.049622416,-0.0008509415,0.023055764,0.020346573,-0.0031636017,-0.009122784,0.041494846,0.009972862,0.041273687,-0.01629661,0.009585834,-0.014872902,-0.0008526693,-0.027838314,-0.006741876,-0.007249849,-0.023511903,-0.009551278,0.0043506003,0.0049034962,0.0053872806,0.010774561,0.034804802,0.0005153164,-0.0137740215,0.005494404,0.0038979168,0.019088734,0.004637415,0.015743714,0.007823478,0.0003611102,-0.006375582,0.025930822,0.016061628,-0.011424214,0.029220553,0.015702246,0.0032862755,-0.013608153,-0.013815489,-0.022613447,0.010062708,0.023359856,-0.010256221,0.0062822807,-0.008224328,-0.0040499633,-0.01031151,-0.008998383,-0.016310433,0.0006470611,-0.003170513,-0.0049622417,0.008839425,0.011417302,-0.009005293,0.0080584595,-0.027976537,-0.0065379953,0.01221209,0.00024146005,0.006541451,-0.027478931,-0.015011126,0.015356687,0.021714991,-0.003016739,-0.0042814882,0.01877082,-0.0003524712,0.0025605997,0.003533351,0.028018005,0.0010582776,0.0071600033,-0.023166342,-0.013656531,0.012709697,-0.020581555,-0.009696414,-0.019157847,0.013621976,0.020802712,0.01853584,-0.008169038,0.0047307163,-0.019240782,-0.0042469325,0.0055013155,-0.02557144,-0.0062235356,0.027769202,0.02517059,-0.038343336,0.011555526,0.017056841,-0.008016992,-0.018010587,0.041798938,0.022945184,0.03980851,0.0012051405,0.0040499633,0.0014288906,0.00933012,-0.013697999,0.0020457152,-0.00026996876,-0.019627808,0.01935136,0.014029736,0.005487493,-0.004716894,-0.11284608,-0.053409755,0.0073466054,0.022737848,-0.009710236,0.02062302,0.0034970671,0.033146117,-0.020692132,0.016462479,-0.016780393,0.005190311,-0.0006859366,0.0031756964,0.006375582,0.012032399,0.020346573,-0.005452937,-0.021355608,0.033616077,-0.02188086,-0.0027437464,-0.017015375,-0.016821861,-0.0031860631,-0.0031670574,-0.02142472,-0.004544114,0.014983482,-0.0010064435,0.023470435,0.01410576,0.016973907,-0.0056982846,-0.023290744,0.0012725247,-0.04262828,0.02787978,0.036878165,-0.016434833,-0.00018239088,-0.010242399,0.013138191,-0.028612368,-0.028778236,0.017291823,0.003075484,0.024520937,0.020747423,-0.01595105,0.006582918,0.011714484,-0.020056302,-0.007747455,0.017416224,0.001883302,0.011037187,0.028031828,-0.013635797,0.017457692,0.0034400497,-0.0003291459,-0.001589576,0.045116313,-0.0065690954,0.009413054,-0.0015532922,-0.013981358,0.009350854,0.020540087,-0.022184951,-0.0033657544,-0.047272608,0.0077543664,-0.019434294,0.010401356,-0.015121706,-0.025115302,0.014264717,-0.010961163,-0.01595105,-0.0012457438,-0.013677265,0.007263671,0.029220553,0.026456073,-0.0057466626,0.0005675823,-0.010498113,-0.0071600033,-0.009965951,-0.006928478,0.00846622,-0.014624099,-0.016434833,0.0061993464,0.027796846,0.01255074,0.01733329,-0.004170909,-0.03201268,-0.018522017,-0.058828134,0.011396569,-0.011147765,-0.019558696,-0.0034279553,-0.008915448,0.00198697,-0.03472187,-0.021148272,-0.0048136506,-0.023981864,0.02038804,0.0054736705,-0.017526804,-0.018756997,0.018148812,0.029027041,-0.011679928,0.0040361406,-0.005808864,-0.020457152,-0.028888816,0.020954758,0.0047134385,-0.0063099256,0.019503407,-0.012426337,0.02919291,-0.008065371,-0.02118974,0.011679928,-0.013103635,-0.006558729,0.012391781,-0.029441712,-0.036214687,0.014928192,0.014651744,0.012225913,0.03414133,-0.014845258,0.012889388,0.00086174026,-0.010173286,0.016614525,-0.00062373583,-0.012343403,-0.009855371,0.0063030142,-0.013615064,0.018618774,-0.0027921249,-0.008694289,-0.01854966,-0.017139776,-0.027243951,-0.007360428,0.011486415,-0.007968614,-0.021949971,0.0364082,0.010836761,0.011078654,-0.01485908,-0.005314713,-0.018148812,-0.0036733027,0.0012932583,0.019309893,-0.013663443,0.0053492687,-0.011818152,0.015384331,0.009316297,0.015384331,-0.0007209246,-0.027824491,0.019088734,0.0049898867,-0.0045302915,-0.0023377135,-0.0082727065,-0.022779316,-0.013953713,0.020830357,0.016199853,-0.020664489,-0.0028750591,0.00955819,-0.0067004086,-0.021355608,0.008141394,0.0046028593,0.029386422,-0.011064831,0.029911675,-0.0053630914,0.017236533,0.0041743647,0.01393989,-0.016476301,-0.007208382,-0.019489584,-0.021480009,0.004267666,0.008839425,-0.03369901,-0.019655453,-0.011486415,0.007858034,-0.012619851,0.0007645515,-0.0016224042,0.02810094,-0.008086104,0.0054287477,-0.018259391,-0.026041402,-0.012398693,-0.0075401193,0.01393298,0.033892523,0.0033571154,-0.013207303,0.016738927,0.016089274,0.023581015,-0.023484258,0.013808577,-0.02033275,0.0035558124,0.025115302,-0.004830929,-0.014928192,-0.024811208,0.019475762,-0.008037725,-0.0072982274,-0.00052568316,0.06374891,0.00040754484,-0.01514935,-0.0059228987,0.019918079,0.009820815,0.011078654,0.026055224,-0.000017129518,-0.010871317,0.0406655,0.008652822,0.0020802713,-0.029109975,-0.025391748,-0.000009104696,-0.035302408,-0.004993342,-0.024203023,0.011341279,0.03859214,0.025668196,0.014720856,0.008106838,-0.012695874,0.00673842,0.018674063,0.011990932,-0.0029856383,-0.025184413,0.013075991,-0.0049967975,0.009703325,-0.012232824,0.013380083,-0.0051281103,-0.0073396945,-0.009537456,0.012391781,0.030105187,0.001624132,0.0011472593,-0.008162127,-0.021797925,0.00043950914,0.0026037947,-0.013608153,-0.0032551752,-0.0038426272],"select * from tablename limit 1;\n":[-0.012145699,-0.0074890475,-0.0029644147,-0.024744032,-0.03519578,0.008812661,-0.04177956,-0.01492323,-0.021013224,-0.023934776,0.021081805,0.02597849,0.0006519483,-0.00019663465,-0.0027706733,0.012351442,0.008881242,-0.0043343203,0.0121319825,-0.008668641,0.022275114,-0.0053836103,-0.004423476,0.00068323844,0.0042588813,0.006594065,0.0077702296,-0.012598333,-0.010143133,-0.0031118637,0.021987075,-0.0007402464,-0.029188082,-0.011967388,-0.016061675,0.016336,-0.0004097716,-0.0058705355,0.020876063,0.0030724297,0.00726273,-0.005596211,0.00614143,-0.0025392123,0.029819028,-0.0004151295,0.02529268,-0.008298303,0.0047355196,-0.011089551,0.009649349,0.013531035,-0.031602133,-0.0045126313,-0.005064708,-0.01622627,0.0067415144,0.017913362,-0.015019244,0.0061482885,-0.0039536958,0.012179989,-0.025621869,0.006875247,-0.022508292,0.015801067,-0.012324009,0.007859385,-0.008188574,0.01748816,0.006456903,0.02807707,-0.0056236438,0.002822109,0.016898364,-0.016624039,-0.019284982,0.0365674,0.0017548169,0.0037205203,0.0024912055,-0.0002788247,-0.018091673,0.01673377,0.026389977,0.017762484,-0.020094238,0.042602528,-0.026513422,-0.002945555,0.001347617,0.017693903,0.025484707,0.009964822,-0.0036587974,0.012070259,-0.018132823,0.030203082,-0.012234854,-0.024291398,-0.0049446914,0.00040377077,-0.0006909538,-0.0047320905,-0.01492323,0.0016099395,-0.000011760573,-0.02352329,0.010465464,0.00305357,-0.016473161,0.02438741,0.010307727,-0.040023882,-0.0076605,0.015101541,0.0132704275,-0.012351442,-0.029434973,-0.018352281,0.0052738804,0.00065666327,0.017405862,-0.029599568,0.022714034,0.018859781,-0.03472943,-0.016829783,0.03291889,-0.0034736288,0.05673022,0.026033355,0.015924513,0.016143972,-0.011542186,0.009560194,-0.017419579,0.011830226,-0.017981943,-0.017844781,0.035607267,0.015513027,0.0011770218,0.0023660453,0.010122559,0.019806199,0.022645453,0.0072901626,-0.026444841,0.01318813,0.009649349,-0.021987075,0.0031564415,0.010945531,0.008147425,-0.02204194,-0.015801067,0.014635189,0.006031701,-0.018722618,0.0065666325,0.024277681,0.0076742163,-0.0064328997,0.0003017565,0.04726604,0.017035525,-0.014402014,0.0026798034,0.001021,0.012413165,0.027939908,-0.025553288,0.025759032,0.013791643,0.004289743,0.013318434,-0.019024376,-0.013921947,0.011946814,-0.014031677,0.034674563,0.023674168,0.032836594,-0.023770181,0.0073450273,-0.016171405,0.0052087284,0.004564067,-0.013476171,-0.014292285,0.014635189,-0.0024843474,-0.0056236438,-0.635554,-0.016281134,-0.029105784,-0.014223703,0.008476614,0.0106232,0.0066900784,0.009224148,-0.0032061627,-0.008195432,0.01737843,0.02272775,0.01901066,-0.013880799,-0.011089551,-0.0122074215,-0.008490331,-0.0040462804,-0.010938672,-0.005582495,-0.0017573886,0.019339848,-0.0024620586,0.010314586,0.004084,0.033632133,-0.021699036,-0.013880799,-0.022823764,0.022810047,-0.017405862,0.029434973,0.01907924,0.011350159,0.045620095,0.006844386,-0.0355524,0.00845604,0.0006862388,0.06139373,-0.005771093,-0.022755183,0.009128134,-0.017131539,0.0016065104,-0.0018808345,-0.008915532,0.0031632995,-0.006182579,-0.018009376,0.00053321745,-0.0014342006,-0.0050852825,0.0021465858,-0.005513914,-0.009279012,0.046744823,-0.02724038,0.03245254,0.01976505,0.0013973382,0.026952341,-0.03305605,-0.014594041,-0.020793766,0.0068340986,0.00914185,-0.0070226965,0.0021688747,-0.010945531,0.029572137,0.027939908,0.008188574,0.0014539176,-0.00014509172,0.01412769,0.025731599,0.005308171,-0.017392147,0.0237016,0.0053390325,-0.00043334631,-0.015156405,-0.004708087,0.0087166475,-0.0007059559,-0.043672394,-0.02584133,-0.011082693,0.010870092,0.032973755,0.013915089,0.033248078,0.004238307,-0.0075713447,0.0031821593,-0.020629171,-0.01680235,-0.0026472274,-0.031163216,-0.0029678436,-0.023742748,-0.009381884,0.017008092,0.046744823,-0.013654481,-0.0022614591,-0.01766647,0.030230513,-0.02951727,-0.0015422157,-0.009519045,-0.020821197,-0.00070166955,-0.0044851988,-0.02825538,0.024552004,-0.000033674354,0.0020248545,-0.014854649,0.025580721,0.009210431,0.017940795,-0.0006026557,0.012570901,-0.002522067,0.0039399797,0.0076947906,-0.012996104,-0.004104574,0.02409937,-0.008421749,0.02807707,-0.019682752,0.0015585037,-0.020574305,-0.011610767,-0.0036622265,0.007838811,0.008538337,0.009635634,0.0033313232,0.026403693,-0.02301579,-0.01687093,-0.020190252,-0.027459841,-0.0008958396,-0.0061551468,0.01250232,-0.015128973,-0.0062168697,-0.0039296923,0.01178222,0.019120388,-0.012632624,-0.003060428,-0.035497535,-0.010177423,-0.026897477,-0.008044554,0.015567891,-0.002796391,0.005267022,0.007962257,-0.049762387,-0.014936946,0.016308567,-0.028831461,-0.017529309,0.0016999521,-0.011713638,0.0073313112,0.017817348,-0.014882081,-0.015993094,-0.021891061,0.008675499,0.02456572,-0.0022786043,0.0058979676,0.021548156,-0.003768527,-0.02301579,0.011178706,0.010856375,-0.025704166,0.016678903,-0.027116936,0.024757748,-0.0058225286,0.027459841,-0.0072695883,0.00085083325,0.021465858,0.022700317,0.023838762,0.036485102,-0.008785228,0.016239986,-0.0015216414,0.0051401476,-0.010321444,-0.03088889,0.0025649301,-0.028913759,-0.0098550925,-0.024922343,-0.0028409688,0.0035353515,0.008003405,-0.03909118,0.00009885311,-0.007955398,0.022796331,0.033796728,0.007509622,0.02034113,0.010540903,0.0068958215,0.018983226,0.0036176487,0.017748768,0.020135388,-0.008325736,0.019326132,0.006731227,0.017433295,0.021479575,-0.019463293,-0.022851195,0.0010372879,0.029736731,-0.0028203945,0.033028618,0.0020077094,0.027020922,-0.03179416,0.0009464181,-0.002009424,-0.0415601,0.0077702296,0.02984646,-0.031711865,-0.012893232,-0.009951106,0.02034113,0.016678903,-0.0050921408,0.015842216,-0.01521127,0.030175649,-0.012186848,0.008353168,-0.00041362928,-0.013462454,-0.008325736,0.027034638,0.012845225,0.025539571,0.010849518,0.00075053354,0.010197998,-0.0069472576,0.008442324,-0.004756094,0.014045393,-0.0022168814,-0.022055656,-0.0051812963,0.0008113992,-0.013366441,0.025265248,-0.027089503,0.006717511,-0.003389617,-0.008325736,0.01965532,0.011158132,-0.00093441637,-0.02677403,-0.034701996,0.015485594,0.012008537,-0.01810539,-0.043151177,-0.011267861,0.008106276,0.014292285,-0.01521127,-0.0049481206,0.014717487,0.018420862,-0.033659566,-0.018338565,0.01228286,0.035607267,0.0000915128,-0.0029678436,0.010012829,-0.014347149,-0.016473161,-0.032973755,-0.0023763324,0.04819874,0.01246803,-0.016377147,-0.030998621,0.023660451,-0.028804028,-0.0026112224,-0.017913362,-0.004128577,-0.011603909,-0.012728637,0.009992255,-0.017227553,0.00023831904,0.034674563,0.02045086,-0.004594928,-0.04057253,-0.026513422,0.02261802,-0.022014508,-0.0008122565,0.0028735448,-0.0044474793,-0.022137953,-0.019970793,-0.015156405,-0.05683995,0.008250297,0.00028782597,-0.01954559,-0.028557137,0.019284982,-0.02916065,0.013661339,-0.0060248426,-0.01763904,-0.010273437,0.010122559,0.00095670525,-0.037719563,-0.01044489,0.023043223,0.013030394,0.030367676,0.015663905,0.010273437,0.0006862388,0.0024106228,-0.00834631,-0.014196271,-0.008908674,0.03154727,0.0023488998,-0.0036690845,0.052313603,-0.0090458365,0.00979337,0.0017745339,-0.0050098435,0.001465062,0.033988755,0.023070656,-0.006796379,-0.011638199,0.0002841826,-0.010294011,0.03234281,-0.008874384,0.002486062,-0.018654037,0.009347593,-0.028858893,0.0018534021,0.0077496553,0.016377147,-0.016047958,0.003960554,-0.023399845,-0.040984016,-0.013661339,0.0021414424,0.023070656,0.0052087284,0.008428607,-0.021301264,-0.035634696,-0.012317151,-0.017062958,0.014443163,0.004128577,-0.010609484,-0.028776595,-0.0056133564,0.005050992,0.01846201,0.014786068,0.028008489,-0.014909514,0.015855933,0.011007254,-0.022810047,0.0037925304,-0.045181178,-0.04899428,-0.014306,0.02005309,0.0046017864,0.0034804868,0.017844781,-0.0059494036,-0.014086542,0.024332546,-0.01850316,0.026870044,0.01250232,0.022357412,0.011933098,-0.0018671183,0.0018534021,0.010897524,-0.008181715,-0.0014324861,0.005315029,0.007825094,0.0017230981,0.03887172,0.013503603,0.0082365805,-0.017392147,0.022864912,-0.028721731,0.036375374,-0.01401796,0.030614568,0.0000051804122,0.007969115,0.023276398,-0.028721731,-0.0034667705,-0.027706733,-0.02796734,0.025786463,0.015636472,-0.030724296,0.017844781,0.0006408039,-0.026760314,-0.002117439,0.0077222227,0.0025392123,0.023687884,-0.008757796,-0.01036945,-0.021164102,-0.017213836,0.015650189,0.011151274,0.011055261,-0.004509202,-0.000082725855,-0.0109180985,0.012193705,0.013345866,-0.013359583,-0.018475726,-0.0038713985,-0.03782929,0.017049242,-0.0039502666,0.01452546,0.0036725136,-0.00491383,0.007454757,0.017172687,0.007591919,-0.014964378,0.011871374,0.0042314488,-0.007434183,0.033440106,0.03371443,0.0074204663,-0.008277729,-0.011288436,0.018407146,-0.006988406,-0.0018911216,-0.017117823,0.006254589,0.034592267,0.0013141838,0.01724127,0.022741467,-0.00455378,0.031190649,-0.023029506,0.0032713145,-0.00657692,0.003194161,0.0063643185,-0.017186403,-0.002088292,-0.0045572086,-0.011103267,-0.009923673,0.0077016484,-0.01965532,0.019998226,0.00625116,0.036786858,-0.0016030814,0.018146537,-0.005033847,0.0100334035,-0.008613776,-0.003161585,0.0025957916,-0.019134104,0.0101088425,-0.0017230981,0.01943586,-0.004786955,0.024126804,-0.029078353,0.006861531,-0.007187291,-0.013716204,-0.013428164,0.0059768357,-0.021191536,-0.020107955,-0.022494575,-0.02040971,0.024373695,0.022398561,-0.0045400634,0.012344584,-0.013242995,-0.01810539,0.0043206043,-0.026787747,0.048802253,0.0231941,0.027459841,0.015183838,-0.00002933446,-0.017899645,-0.01221428,-0.012810934,-0.015965661,0.021465858,0.026252814,0.0108426595,-0.030148216,0.015595324,-0.021205252,-0.015471878,-0.032150783,-0.01221428,0.013860224,-0.01901066,-0.028557137,0.008648067,-0.001582507,0.008476614,-0.017652754,-0.007509622,0.002283748,-0.016171405,-0.025484707,0.006991835,-0.02684261,0.025155518,-0.0016433727,-0.018420862,-0.016843498,-0.012481745,-0.01669262,0.010938672,-0.013668197,0.015746202,0.02182248,0.000014144835,-0.0015953659,-0.001885978,-0.0074890475,-0.009114417,-0.028968623,0.035909023,-0.031272944,-0.010300869,-0.015814783,0.014840933,0.011446172,-0.008593202,-0.0041354354,-0.0005229303,-0.00019020517,-0.01412769,0.019380996,0.024593154,-0.006858102,0.00172567,-0.0012918949,-0.034345374,-0.03497632,0.0064946227,-0.011713638,-0.018928362,0.0057436605,-0.0019991368,0.0025289252,0.012125124,-0.0038439662,-0.0123102935,0.024881193,0.008613776,-0.027885042,-0.0047389483,0.002681518,0.016665189,-0.00030132785,0.010952389,0.00047492355,0.0013416162,-0.01452546,-0.017789917,0.02540241,-0.009491613,0.016898364,0.022988359,-0.0068855346,-0.014031677,0.014196271,0.03519578,0.019710185,-0.009093843,-0.00455378,0.007975972,-0.019902213,-0.011679348,-0.0013810503,0.008037696,0.017789917,-0.018132823,-0.0025632156,0.0012841796,-0.041889288,-0.0066180686,-0.033549834,0.00885381,0.00440976,-0.010383166,-0.009381884,-0.012543469,-0.008270871,0.03692402,-0.0009764223,0.0020968646,-0.012708063,-0.0011795935,-0.003926263,0.011514753,-0.016143972,0.020697752,-0.011693064,-0.015513027,-0.008620635,-0.028639434,-0.014182555,0.0038542533,0.0043891855,0.0019631316,-0.048253607,-0.00034504826,-0.04490685,-0.03154727,-0.0075782025,-0.0009824231,0.01022543,-0.0022854626,0.0015867933,0.030367676,0.007797662,-0.0028323962,-0.045263473,0.0038199627,0.002345471,-0.0038542533,0.03121808,0.0035902164,-0.02305694,-0.013414447,0.0048075295,0.0090458365,0.020299982,0.02836511,0.000251178,0.013236137,-0.002026569,-0.028022205,-0.0065083387,-0.004786955,-0.0049344045,-0.028310245,-0.002743241,0.00693697,0.007921108,0.0019288412,0.003977699,-0.0051950123,0.00024410557,0.00013405447,-0.01918897,0.0026969486,0.009025263,0.008929249,0.015814783,0.02710322,-0.016569175,0.046909418,-0.014511744,0.0026369402,0.013352725,0.0065357713,-0.054645356,-0.001546502,-0.010088268,-0.014155122,-0.016418297,-0.0057608057,-0.008764654,-0.0047972426,-0.0073175947,-0.01622627,0.013736778,-0.022357412,0.020615455,0.015128973,-0.022796331,0.010630058,-0.0052190158,-0.022014508,0.0037342366,0.004858965,-0.005733373,-0.03247997,-0.005812241,-0.003987986,-0.010691781,-0.018585457,-0.020519441,-0.0030021342,0.013969954,0.024359979,0.21561873,0.023386128,-0.012529752,0.0104105985,0.009429891,0.021109238,0.010732929,0.010726072,-0.000052346608,0.0068272403,-0.027007205,-0.0045469217,0.010595768,0.0025357832,0.011370733,-0.012495462,-0.0146626225,-0.024552004,-0.03804875,-0.021959642,0.010060836,-0.023825046,-0.010321444,-0.020135388,0.02630768,0.011329585,0.02182248,-0.030011054,0.024977207,0.0036690845,-0.021191536,-0.007056987,0.0040085604,-0.0027552424,-0.018654037,-0.0069746897,-0.0060042683,0.020313699,0.027007205,0.013455596,-0.00646719,-0.046223607,-0.0069095376,-0.009587627,0.01770762,-0.009567052,-0.019106673,-0.017062958,0.0061037107,0.023454709,-0.03802132,0.042108748,0.034016185,0.0046635093,-0.010719214,-0.011123842,0.025388693,-0.0023077512,-0.00058122416,0.014882081,-0.033577267,0.049817253,-0.0003141868,0.03190389,-0.005846532,0.008956681,-0.026293963,0.035442673,0.011041544,-0.013757353,0.0075644865,0.008195432,-0.0014119118,-0.021109238,0.0016005095,-0.0115764765,0.0004980697,0.016925795,0.014827217,0.015101541,-0.0075164796,-0.024250248,-0.0014959235,-0.016322283,-0.024689168,-0.007975972,-0.0024037648,0.0014247707,-0.04885712,0.0030329956,0.00794854,-0.0064226124,-0.015746202,-0.015471878,0.038350508,0.01868147,0.017186403,0.028968623,-0.015074108,-0.0031427252,-0.018448295,0.034811724,0.00614143,-0.008119993,-0.019888496,0.012838367,-0.007043271,0.0060351295,0.0101088425,-0.021191536,-0.004145723,-0.01748816,-0.012488604,-0.007585061,-0.008339452,0.0070226965,-0.0008735508,-0.008490331,-0.0047972426,-0.02721295,0.011583334,-0.033879023,0.0143334335,-0.001076722,-0.021918494,-0.01901066,-0.013880799,0.01763904,-0.0047595226,-0.034811724,-0.008195432,-0.030669432,-0.003302176,0.0051984414,0.0019785624,0.010726072,0.014251136,-0.020670319,-0.03154727,-0.016075391,0.013812218,-0.016569175,0.021095522,0.008798945,0.008785228,-0.006378035,0.0031444398,-0.0107672205,0.0010810083,-0.023427276,-0.01770762,-0.016843498,-0.0108426595,-0.004752665,0.023825046,-0.008661783,0.000033192144,-0.020011941,-0.00034611984,0.02684261,-0.026801463,0.0026660871,0.026856327,-0.02916065,-0.020217685,-0.0044611953,-0.17633551,0.030504838,0.019559307,-0.012454313,0.016239986,-0.0054590493,0.018585457,-0.003490774,0.010602626,0.016185122,-0.0066146394,-0.009656208,-0.044358205,0.0072078654,0.0048692524,0.0038371081,0.0017230981,0.020176535,0.034098484,0.009491613,0.03610105,-0.016212553,0.016143972,0.004224591,0.015252419,0.008188574,-0.018544307,0.017543025,-0.005267022,-0.033028618,-0.008483472,0.013798501,0.003957125,-0.025649302,-0.006261447,0.008990971,0.0057402314,-0.0046532224,-0.013311576,0.012063402,0.01224857,0.06325913,0.0059494036,0.017474445,0.015965661,0.04021591,-0.0022803189,-0.017981943,0.030477405,0.0023797613,0.019353563,-0.016610323,0.022494575,0.00036026468,0.013969954,0.0022408848,-0.005448762,-0.0016845213,-0.015019244,-0.01571877,-0.020519441,-0.019682752,0.0015122115,0.014868366,-0.0109180985,-0.00093441637,-0.024689168,0.010883808,-0.0015447874,0.018832348,-0.0207389,-0.010177423,-0.0009952821,-0.01720012,0.0134487385,0.012077117,0.015128973,0.01521127,-0.027500989,-0.0122074215,-0.034894023,0.017364714,-0.0019888496,0.020711469,0.0039159763,0.013613332,0.0112472875,0.0035490678,-0.0101088425,-0.0032678857,0.035634696,-0.019559307,-0.034894023,-0.0039194054,0.002446628,0.013339008,-0.00910756,0.001380193,-0.015471878,-0.0036210779,0.00088469515,-0.0003129009,-0.001885978,0.027267814,0.025923626,0.02392106,-0.0034770577,0.016925795,0.037527535,0.0011152988,-0.025704166,0.0062305857,0.019833632,0.02016282,0.0036725136,0.014059109,-0.0038062467,-0.014251136,0.0036553685,0.014223703,0.017296134,-0.018091673,0.010849518,0.00023403273,0.012138841,-0.015801067,-0.076865606,-0.036183346,0.02193221,0.012762927,-0.008435465,0.0015867933,0.0043857563,0.027885042,-0.032973755,0.025896193,-0.027816461,-0.028227948,-0.034839157,0.007056987,0.019326132,0.024483424,0.01947701,0.0012798933,-0.0101088425,0.019490726,-0.001849973,-0.020876063,0.017145256,-0.027514705,0.0111307,-0.005503627,-0.018777484,0.014950662,0.021040658,-0.0061654337,0.020725185,-0.025759032,0.006031701,-0.016816067,-0.0045469217,-0.02670545,-0.057662923,-0.009594485,0.014909514,0.0018225407,-0.014827217,0.021904778,0.01268063,-0.011610767,-0.0029609855,-0.032644566,-0.032233078,0.034784295,0.025882477,-0.0072833044,0.01224857,0.011178706,-0.03804875,-0.016089108,0.014621474,0.01901066,0.020944644,0.016884647,-0.0019579881,0.011686206,-0.009608201,-0.014854649,0.018558023,0.023454709,0.004505773,0.0070192674,-0.012042827,-0.018146537,0.02456572,-0.01965532,-0.005647647,0.025086937,-0.031108351,0.011741071,-0.018804915,0.02938011,-0.012913806,-0.002743241,0.0030655717,-0.00032618848,0.007393034,-0.0013879084,-0.028282812,-0.03955753,0.039722126,0.010520329,0.012522894,-0.0051675797,0.006782663,-0.054179005,-0.011295294,0.0017608177,0.034921456,-0.009813944,-0.024524573,0.005246448,0.011939956,0.018722618,0.024455993,-0.016432012,-0.023111803,-0.0087166475,-0.061668053,0.012605191,0.00082168635,0.006844386,-0.0012884659,0.025128085,-0.015650189,-0.0060042683,-0.005116144,0.004114861,-0.018736335,0.001729099,-0.018558023,0.0047595226,-0.027322678,-0.011610767,-0.021918494,0.015142689,0.0030844314,0.01936728,-0.0073656016,-0.007989689,-0.017021809,0.013112691,-0.0028152508,0.021685319,-0.01221428,0.016486878,-0.024771465,-0.0046703676,0.029188082,-0.023084372,0.018311132,0.01759789,-0.016308567,-0.034647133,0.013167555,-0.010321444,0.03601875,0.00016620182,-0.02272775,-0.013085258,0.018887212,0.007454757,-0.012824651,0.020505724,-0.012015395,0.0075164796,0.008099418,-0.01748816,0.0041868715,0.0065357713,0.0034101913,0.012234854,-0.02608822,-0.022384845,0.0047629518,-0.0015070679,-0.01821512,-0.027706733,0.037746992,0.021026941,0.036046185,0.0017985372,-0.012893232,-0.0014041964,-0.0044337627,0.011768503,0.013325293,-0.014415731,-0.010972964,-0.0024260536,0.009498471,0.0028992626,0.04057253,0.008483472,0.00012837509,-0.008510904,0.010520329,0.00044320483,0.032754295,-0.021589305,-0.027843894,-0.0066969367,0.028310245,0.054590493,-0.0135996165,0.00068238116,-0.013949379,-0.012543469,-0.0009164139,0.014059109,-0.032672,-0.008469756,0.016500594,0.00008326164,-0.032617133,-0.003494203,0.006607781,0.014786068,0.0052910256,-0.0042177327,-0.0062237275,-0.0046017864,-0.03234281,-0.0006309454,-0.01022543,-0.022288831,0.0026918051,0.03371443,-0.011295294,0.013256711,0.014786068,0.0127903605,-0.0042794556,0.0051538637,0.0012558899,0.0059288293,-0.019957077,0.018585457,0.014360866,0.013969954,0.0012713206,0.011741071,0.010643775,0.0068649603,0.002734668,-0.021026941,0.016171405,-0.0118508,0.0008774084,0.021671603,-0.009162424,-0.014031677,-0.0077565135,-0.0030398536,-0.002919837,-0.0005657934,-0.023427276,0.04899428,-0.01156276,-0.028557137,-0.009484755,0.013723062,0.017680187,0.01976505,0.017570456,-0.018187687,-0.042684827,0.038103614,0.0008551196,-0.009807086,-0.036485102,-0.0019614173,0.0057265153,0.005856819,-0.016308567,-0.018489443,0.017584173,0.040846854,-0.011137557,0.020533158,-0.027720448,-0.012234854,0.00003070072,-0.002312895,-0.0030107067,0.0087166475,-0.04081942,0.01423742,-0.0054967687,-0.012111408,-0.022055656,0.024442276,-0.0106232,-0.021507008,-0.0018619747,0.016486878,-0.006453474,-0.0074204663,0.0100059705,-0.023550723,-0.023893628,0.008408033,-0.00088640966,-0.0038713985,-0.00033368953,-0.010774078],"Accessing SELECT's computed values in WHERE clause":[-0.025314584,0.003150165,0.022794453,-0.022228131,-0.032563504,0.018532882,-0.026956918,-0.02889657,-0.020684903,-0.025696853,0.049808003,0.0086505655,-0.0083107725,0.0043465197,-0.0054189917,-0.012586502,0.011616676,-0.0153614795,0.00016934349,-0.042870563,0.008445274,-0.010250425,-0.002051147,-0.02592338,-0.017980717,0.010944169,0.029930107,-0.053998783,-0.024082836,-0.001029113,0.019240784,0.00091673346,-0.02810372,-0.029958423,-0.027565714,0.0038474489,0.017924085,-0.021619335,0.022780295,0.017952401,0.0073692626,-0.017400239,0.009492969,-0.027792243,0.018348826,0.020939749,0.013046639,-0.008239983,-0.012813031,-0.007794004,0.027353344,0.034120888,-0.05340415,-0.022072393,0.006714453,-0.022242289,0.027693138,0.026277332,0.0009477042,0.021973286,0.037037447,-0.0044066915,-0.013697909,0.007199366,-0.0233183,-0.012494475,-0.0062330794,0.005801259,0.0057446267,0.015970275,0.027735611,0.013152824,0.004672155,0.0038191327,0.03194055,-0.0022865243,-0.009181492,0.016380858,0.014073097,0.0038403699,0.0073551047,-0.012494475,-0.0063781994,0.023134246,0.020713221,0.024535893,0.015828695,0.056405652,-0.02426689,-0.015545534,0.037575454,0.009443416,0.013478459,0.029108942,0.008431116,-0.00528803,-0.046551652,0.029930107,-0.017768348,-0.009917711,-0.0044810213,0.01789577,-0.040605273,-0.0063852784,-0.02933547,0.0153614795,-0.019467313,-0.012416606,-0.011340594,0.0004570394,-0.004268651,0.03100612,0.0121829985,0.008933727,0.018348826,-0.009082386,-0.018391302,-0.014462443,-0.04556059,0.0036244597,0.0010415012,0.028485987,0.033412986,-0.009301836,0.005581809,-0.009231046,-0.017131235,-0.005687995,-0.012487396,-0.032110445,0.04774093,0.012211314,0.016281752,0.0114750955,-0.014037702,0.00010259052,-0.024380155,0.0057056923,-0.006434832,-0.028386882,0.016239278,-0.00963455,-0.0090257535,0.01267145,-0.029448735,0.022482976,0.009903553,0.005100436,-0.0029678803,-0.028910728,-0.016706493,-0.0041518467,-0.007185208,-0.0025484483,0.0006946291,0.0035731366,-0.0024865067,0.035027005,0.0029059388,-0.0031696325,0.015786221,-0.0052844905,0.001948501,-0.00039111602,0.017810822,0.014780999,0.005854352,0.009740735,-0.02896736,-0.0071533523,0.011276883,0.030326534,-0.0028333787,0.014292547,0.0014352718,0.01129812,0.018957622,-0.020330952,-0.015021686,-0.0041447678,0.02201576,0.023261668,0.00855146,0.034149207,-0.005447308,0.0034616422,-0.0067958618,0.019722158,-0.04584375,0.010930011,-0.005641981,0.011106987,-0.011163618,-0.0073975786,-0.5930522,-0.017216183,0.0013087343,-0.036471125,0.017003812,0.0077373716,0.007815241,0.015984433,-0.019764632,0.028910728,0.015672956,0.024974791,0.016380858,-0.011064513,-0.00782232,-0.031544127,0.0125298705,-0.0136058815,0.026702074,0.004873907,-0.012090971,0.015658798,-0.02738166,0.03225203,0.010101765,0.010377848,0.0011644992,-0.019212468,-0.0071675107,0.03598975,-0.0073055513,0.030836223,0.0018759411,0.021661809,0.050827384,0.0022068853,-0.032053813,-0.0022635176,-0.0048455913,0.043804992,-0.025257953,-0.024719948,0.031176016,-0.0008224939,-0.0073551047,0.015672956,0.011036197,0.021392807,-0.005302188,-0.014582787,-0.0032227251,0.0071108784,-0.010476953,-0.004449166,0.022185657,0.0020865418,0.023148404,-0.00710026,0.0035094256,0.013846569,-0.00398195,0.0042120186,-0.027041867,-0.01093709,-0.009747814,0.029392103,0.017499344,0.008593934,-0.0019927449,0.017060444,0.02389878,0.028075404,0.002477658,0.01810814,0.019325731,-0.0043394407,0.052044977,-0.020444218,-0.010653929,0.008232904,0.015446427,-0.018716935,-0.039302733,-0.009584997,-0.0060242484,-0.0007114418,-0.033497937,-0.0071391943,0.01049819,0.026022488,0.01028582,0.03709408,-0.015333164,-0.020090267,0.0011255646,-0.0019343429,-0.00015275204,0.013931517,-0.0040173456,-0.03867978,-0.03723566,-0.0104274005,-0.013867806,0.015389795,0.047061343,-0.0015653489,0.008714277,0.011814889,0.012664371,-0.022907717,-0.009422179,-0.009266441,-0.018532882,0.0063109486,-0.010816746,-0.03737724,0.039472632,0.0079568215,-0.03802851,-0.010668087,0.006873731,0.008176271,0.021336174,-0.00883462,-0.004824354,0.020118583,0.02157686,0.0044739423,-0.006902047,-0.00040991965,0.029165573,0.000072338764,0.013733304,-0.010399085,-0.017909927,-0.024026204,-0.02194497,0.0114821745,-0.0041129123,-0.021930812,-0.016706493,0.0020122123,0.018377142,-0.015630482,-0.013096192,-0.011729941,-0.01564464,0.018235562,-0.031374227,0.0071639707,-0.008070086,-0.0013715606,-0.029137257,0.004990711,0.0100451335,0.003383773,0.0021856483,-0.023346616,-0.030666327,-0.014023544,-0.023658093,0.002311301,-0.02477658,0.011418464,0.0011981246,-0.034120888,0.011156539,0.012416606,-0.029590314,-0.021633493,-0.009195651,-0.014710209,0.01506416,0.025668535,-0.014568629,0.024012044,-0.015418111,0.0053977547,0.0018352367,-0.0050791986,0.014469522,0.00023161677,-0.014405811,-0.008947885,0.020444218,0.0058047986,0.00015540667,0.018150615,-0.005673837,0.0057977196,0.005259714,0.015531376,-0.013435985,0.0066188863,-0.0027696677,0.029561998,0.025187163,0.018886833,-0.015177425,0.008339088,0.0059569976,0.01622512,0.020330952,-0.01861783,0.0049128416,-0.021746758,-0.008530222,-0.016041065,-0.005730469,0.010229188,0.014596945,-0.024422629,-0.01072472,0.0015449967,0.0054189917,0.028075404,-0.021619335,0.009167334,-0.00034067797,0.018348826,0.025371218,-0.013202378,0.072489195,0.0031059212,0.006236619,0.00093531585,-0.0031413164,0.01049819,0.026249016,0.0030121242,-0.029986741,0.0030545983,0.0072772354,-0.0032209554,0.024875686,0.008339088,0.013513855,-0.011793652,0.013343958,0.0008915144,-0.025895065,0.0376604,-0.006820638,-0.022539608,0.0021679506,0.0056242836,0.03468721,0.014880106,-0.0050013294,0.014653577,-0.004622602,0.0032722782,-0.009429258,0.02947705,0.022114867,-0.016196804,0.0082966145,0.029278837,0.034460682,0.0071958266,0.010207951,-0.010809667,0.013457222,-0.0068985075,0.02694276,0.014384574,0.002920097,0.0026776404,-0.0068170987,-0.016579071,-0.010101765,-0.015050002,0.016904706,-0.05779314,0.017400239,-0.011170697,-0.0051676864,-0.0038120537,0.01962305,0.014766841,-0.018816043,-0.027056025,0.016621545,0.020670746,-0.016593229,0.0065445565,0.0053588203,0.015177425,-0.0032563505,0.0047854194,0.016479965,0.027268395,0.0121829985,-0.01789577,-0.017499344,0.010837983,0.010158397,0.013379353,0.0044810213,-0.0069834557,-0.01158836,0.000488895,-0.020217689,0.0040244246,0.04145476,0.0068560336,-0.00630033,-0.041086648,0.020557482,-0.008494827,0.0047394056,-0.025583588,-0.00018117874,0.022369713,-0.0049659344,-0.013166982,-0.03134591,-0.00021126459,0.019877896,0.017272815,-0.01311035,-0.0334413,-0.022242289,0.006179987,0.012430764,0.0028139115,-0.013266088,0.0118290465,0.0036173805,0.015078318,0.013336879,-0.010172555,0.009231046,0.018858517,0.0021856483,-0.013089113,0.04105833,-0.02614991,0.022497134,0.0027254238,0.00012421473,-0.042842247,-0.015234057,-0.032535188,-0.011871521,0.006852494,0.014540313,0.022737822,0.028882412,0.0125298705,0.008091323,0.010484032,0.01013716,-0.044512894,-0.009599155,0.013520934,-0.0007915232,-0.00027895774,0.020543324,0.023997886,0.0061375126,0.020458376,0.005535796,0.03208213,-0.010554823,0.03831167,0.010030976,0.006962219,-0.009882316,-0.00992479,0.015857011,0.039359365,-0.00804177,0.010434479,-0.014965054,-0.016961338,0.0035218138,-0.02201576,-0.013082034,0.021123804,0.0041518467,-0.021506071,-0.008608092,-0.06767546,-0.001209628,0.02137865,0.036272913,0.010193793,0.00912486,-0.0073975786,-0.01296169,-0.0032475016,-0.007779846,0.011029118,0.0022635176,-0.013620039,-0.05263961,0.0043996125,0.019821264,0.024167784,0.019155836,0.021930812,-0.014865948,0.009853999,-0.034489,-0.03780198,0.0050438037,-0.0118290465,-0.014257152,-0.01448368,0.0033005944,-0.0032404226,-0.013067876,0.0128767425,-0.01796656,-0.0036120713,0.009804446,-0.011418464,0.02833025,0.010030976,0.021845864,0.007985137,0.00005320328,-0.011312278,0.019212468,0.015163267,0.019424839,0.0118786,0.008608092,0.022780295,0.014165125,0.024210257,0.044965953,-0.032195397,-0.011092829,-0.005149989,0.0068701915,-0.02136449,0.024210257,0.009620392,0.019906212,0.018518724,-0.01557385,0.024026204,0.009131939,-0.036272913,0.0524414,-0.014724367,-0.004955316,-0.021548545,-0.002311301,-0.027990455,0.008176271,0.016550755,0.021718442,-0.005641981,-0.0063321856,-0.0019874356,-0.025682695,-0.02644723,0.002658173,0.014625261,-0.02007611,0.002084772,0.00018206361,-0.0132306935,-0.008643487,0.0045376536,-0.0064773057,-0.015828695,-0.014278389,-0.0019378825,0.0027041866,0.0327334,0.0073126303,-0.013768699,-0.017626766,-0.008133797,-0.02984516,-0.0019750474,-0.0062401583,0.007454211,0.014823473,0.011765336,0.032138765,0.016607387,0.02520132,-0.016918864,-0.0013830641,0.002383861,0.02600833,-0.01144678,-0.004541193,0.0097124195,0.024649156,0.0104274005,-0.0031678625,0.012232551,-0.0059640766,0.04657997,-0.011312278,0.01100788,-0.03329972,-0.039415997,0.0065091616,-0.0052066213,0.0029147875,-0.0073338677,-0.033328038,-0.016748969,0.008452353,0.00076674664,0.010554823,-0.010547744,0.021406965,-0.03128928,0.037632085,0.0027997536,0.0066578207,-0.011106987,-0.013103271,-0.00296965,0.005932221,0.025965855,-0.009917711,0.021775074,0.017881611,0.0015157957,-0.011269804,-0.0021909575,-0.025187163,-0.010193793,0.0043217433,-0.03389436,-0.00016547216,-0.015729588,-0.0029608011,-0.0019821264,-0.0018564737,0.029533682,-0.009974343,-0.015885327,0.00090567244,-0.013627118,-0.01376162,-0.023785517,0.02722592,-0.00054464233,0.02680118,-0.0018281576,-0.017513502,-0.03295993,-0.015630482,-0.0073551047,0.0035554392,0.024493419,0.0311477,-0.012112208,-0.014752683,0.009910632,-0.018674461,-0.008275378,-0.05128044,0.033214774,0.0018405459,0.019028412,-0.008466511,0.003367845,-0.0143208625,0.011177776,-0.0064242133,0.0082966145,0.018943464,-0.011390148,-0.009422179,-0.0033660752,-0.025739327,0.03128928,-0.0026050804,0.0033129826,-0.01608354,-0.023799675,-0.020557482,0.014455364,-0.012487396,0.019835422,0.012480317,0.0036598546,-0.013294404,-0.017541818,0.001890099,-0.023686409,-0.031374227,0.03700913,-0.0139669115,-0.006933903,0.00355013,0.015588008,0.002065305,-0.003374924,-0.01737192,-0.022652872,0.0047464846,0.007482527,0.020316795,-0.0027254238,-0.016635703,0.013096192,0.01969384,-0.024946475,-0.022907717,-0.009301836,-0.0060596433,-0.0026121594,0.008063007,-0.0022528989,0.006034867,0.024904002,0.012232551,-0.018235562,0.016479965,0.025187163,-0.00775153,0.011609597,-0.0026776404,0.0046756943,-0.012919216,0.016409175,-0.031685706,0.016395016,0.0062260004,-0.003346608,-0.012034339,-0.0012113978,0.02027432,-0.0039996477,-0.0011193705,-0.020656588,0.011092829,0.028117878,0.026886128,-0.02302098,0.023261668,0.010540665,-0.02108133,-0.0032775875,0.026093278,-0.032223713,0.028641725,-0.021322016,-0.012480317,0.015389795,-0.02020353,0.012345816,-0.008374484,-0.010753036,0.007482527,-0.010540665,-0.029505366,-0.00790019,-0.0060667223,0.02455005,-0.008601013,0.00073489104,-0.0012954612,0.008813383,-0.0006242813,0.02354483,-0.04859041,-0.026829496,-0.016210962,-0.010993722,-0.004686313,-0.03012832,-0.013818252,0.021109646,0.025795959,-0.020472534,-0.05170518,-0.011312278,-0.02057164,-0.021421123,-0.02057164,-0.019410681,0.0031926392,-0.017117077,-0.037405554,0.04604196,-0.034319103,-0.0030545983,-0.0286842,-0.0104203215,0.00920273,0.00022332104,0.055471223,0.0064383713,-0.020656588,-0.025980012,0.00746129,-0.015389795,0.02527211,-0.0050438037,-0.0086505655,0.0100663705,0.0005875589,-0.0028086023,-0.011722862,0.033639517,0.024748264,-0.04918505,0.011977706,0.01955226,-0.0072099846,-0.006562254,0.0090115955,0.013938596,-0.025654377,-0.038000192,-0.003989029,-0.010115923,0.0064242133,0.022284763,0.03440405,0.01912752,-0.0044385474,0.03550838,0.006133973,-0.0015264143,-0.0071887476,0.01672065,0.0008286881,-0.0067923223,-0.0031784812,-0.0027041866,-0.0022759058,-0.017329447,-0.015984433,-0.008034691,-0.0128979795,-0.02984516,0.017909927,-0.016904706,-0.0042721904,0.014441206,-0.017584292,0.027962139,-0.00811256,0.007068404,-0.01694718,-0.016182646,-0.00036346357,0.000854792,-0.016664019,0.016253436,-0.023488197,0.0018246181,0.0002285197,0.009938948,0.004700471,0.00304221,0.21690126,-0.011623755,-0.0065091616,0.030722959,0.016791442,0.019141678,0.008162113,0.0037412634,-0.00999558,0.020670746,-0.017796664,-0.01672065,-0.002861695,0.013096192,0.024026204,0.010703483,0.0015388025,-0.008367405,-0.04779756,-0.0029360247,0.012416606,0.031770654,-0.011064513,-0.025555272,0.010151318,-0.0059180628,0.045617223,0.016409175,0.014667735,0.01992037,-0.016352542,-0.0038297512,-0.008126718,0.00026214507,-0.0047641825,-0.013209457,-0.018646145,-0.0084028,0.016791442,0.015488901,-0.001282188,-0.032280345,-0.033922676,0.005606586,-0.007075483,-0.00920273,-0.0056915344,0.001455624,-0.014526155,0.018136457,-0.031374227,0.0067250715,0.017683398,0.002920097,-0.008374484,-0.021336174,0.02614991,0.0075887125,-0.01847625,0.0132306935,-0.038651463,0.01376162,-0.012664371,0.0038686858,-0.030071689,0.017499344,-0.021591019,0.004137689,0.011262725,-0.004463324,0.0009096544,0.0008556769,0.008353246,0.0040385826,-0.02405452,0.011276883,0.00564906,0.0188302,-0.00078842614,0.03514027,-0.010384927,-0.021279542,-0.037547138,0.023870464,-0.038481567,-0.04745777,0.015871169,-0.014405811,-0.04165297,-0.0045978255,-0.0013697909,0.0013591724,-0.0351969,-0.016678177,0.005157068,0.014950896,-0.012664371,0.011092829,-0.013570487,-0.0056030466,-0.0125157125,0.06841168,-0.0132306935,-0.004976553,0.003297055,0.018292194,0.013917359,0.011928153,0.011538807,-0.023063457,-0.0125369495,-0.017343605,-0.0057623247,-0.014596945,0.0070648645,-0.0067923223,-0.02043006,-0.0057446267,0.023332458,-0.00891249,0.008225825,-0.0118361255,-0.004657997,0.025399534,0.009181492,-0.0076948977,-0.028429355,0.0023590843,-0.018235562,-0.04513585,0.032421924,-0.0056172046,0.003419168,0.0108663,-0.0050013294,0.010986643,0.00818335,-0.018419618,-0.033922676,0.0004012921,0.008862937,-0.032931615,0.009209809,0.0069445213,0.0019750474,-0.017612608,-0.011729941,0.006873731,-0.0026404755,-0.025300426,-0.008508985,-0.021591019,-0.004643839,-0.023955412,0.022327237,-0.01948147,-0.019736316,-0.00049508916,-0.005220779,0.021704284,0.004123531,0.000738873,0.029363787,-0.013726225,-0.02556943,-0.027891349,-0.18065666,0.004555351,0.012466159,-0.031176016,0.034715526,0.008197508,0.016664019,0.008218746,-0.015531376,-0.008162113,0.015814537,-0.00089062954,-0.039784107,0.0032492713,0.013683751,0.0027820559,-0.045022584,0.01992037,0.0049871714,0.01608354,0.053319197,-0.003028052,0.01782498,-0.021831706,-0.016890548,0.011991864,-0.00062516617,0.0014149196,-0.032025497,-0.03194055,0.01933989,-0.0027413515,0.009337231,-0.020118583,-0.0217326,0.015319005,-0.010243346,-0.014526155,-0.008579776,-0.0052986485,0.007850636,0.022950191,-0.0023095312,0.018490408,0.00090611493,0.031317595,0.02961863,-0.036187965,0.008572697,-0.013577566,0.024082836,-0.011347674,-0.0051783053,-0.0062826327,0.012452001,0.017272815,-0.009804446,0.0037625006,-0.026503861,-0.016140172,-0.005709232,-0.016508281,0.01564464,0.021605177,0.007447132,0.005135831,-0.00026679068,0.008211667,-0.024960633,0.009365547,-0.029363787,0.016395016,-0.021506071,-0.00088178075,0.000231838,0.034772158,-0.008848778,0.0017901078,-0.021789232,0.0056172046,-0.0057410873,0.04105833,-0.01412265,-0.005082738,-0.0172445,0.034064256,0.015474743,-0.014228836,0.0030386704,-0.013082034,0.014455364,0.0011069821,-0.025980012,-0.02549864,0.014908422,0.017315289,0.010377848,-0.008424037,0.019651366,-0.012289183,-0.011411385,-0.033356354,-0.006335725,0.009662866,0.004601365,0.037122395,-0.03533848,0.014780999,0.051818445,0.0058720494,-0.03092117,0.025442008,-0.019311573,0.008395721,0.0044137705,0.00876383,-0.027877191,0.0067852433,0.015658798,-0.0028068325,0.047712613,-0.006250777,0.007886032,-0.017329447,0.028047089,0.002774977,-0.084778376,-0.020005317,0.0014538543,0.021775074,0.002941334,-0.012508634,-0.015177425,0.016621545,-0.075094275,0.02767898,-0.02289356,-0.013329799,0.003780198,0.016239278,0.017485186,0.03264845,-0.021024697,-0.010795509,0.009931869,0.034715526,-0.009677024,-0.037065763,0.009422179,-0.0132448515,0.0055251773,0.0036049923,-0.017230341,0.005755245,0.008756751,-0.00081674225,-0.007914348,-0.007574554,0.020061951,0.0008224939,-0.022992665,-0.026121594,-0.022199815,-0.012848427,0.0132448515,-0.0068100197,0.00920273,0.01622512,-0.008523143,-0.0024387233,-0.009032833,-0.012211314,-0.023870464,0.018419618,0.022567924,-0.007199366,-0.015984433,-0.0376604,-0.009181492,-0.0030050452,0.005988853,-0.0031714023,0.015984433,-0.002911248,0.014908422,0.004042122,-0.019736316,-0.008947885,-0.0076099494,0.021350332,0.029307153,-0.014179283,0.0023767818,-0.012968769,-0.012437843,-0.020812327,-0.021166278,0.0061587496,-0.010597297,0.018660303,-0.0026192383,0.003020973,0.008070086,-0.0050438037,-0.013266088,-0.032846667,-0.0016830376,-0.022355553,-0.0024298746,-0.024436787,0.008339088,0.009507127,-0.0135988025,-0.0073267883,0.0044951793,-0.036754284,-0.018716935,0.026135752,0.025965855,-0.022582082,0.007907269,-0.016607387,-0.009648708,0.0007472793,0.027664822,-0.005461466,-0.020543324,-0.0003855855,-0.040010635,0.012232551,0.0008016993,-0.0060596433,-0.014667735,-0.0028262998,0.007999295,-0.01912752,-0.026178226,0.03245024,-0.02210071,0.008544381,-0.016111856,-0.004403152,-0.01875941,0.007914348,-0.0139669115,-0.031459175,0.022921875,0.005557033,-0.012345816,-0.027112657,-0.012289183,0.00026015408,-0.00046854283,0.007475448,-0.031827286,0.020982223,-0.008905411,-0.025795959,0.026249016,-0.019240784,0.0014529694,0.029363787,0.021619335,-0.015913643,0.008516064,0.016664019,0.040067267,-0.031487495,-0.0026050804,-0.031119384,-0.012473238,-0.0039748712,0.028981518,0.0073126303,0.0073055513,-0.005953458,-0.0007866564,0.014965054,-0.009549602,0.010597297,0.020741537,0.0050261063,-0.012756399,-0.011347674,0.013860727,0.008593934,0.006633044,-0.0046544573,0.0385382,0.005355281,0.033526253,-0.019792948,-0.0125369495,-0.033016562,-0.004229716,0.016041065,0.033667833,-0.022709506,-0.02527211,-0.013074955,-0.0012069733,0.012990006,0.035480063,-0.009825683,-0.01347138,-0.015304847,-0.0009875237,0.0077232136,0.03440405,-0.01840546,-0.021633493,0.025470324,0.046608284,0.0068489546,-0.015375637,0.0025555273,0.0016308299,-0.008147955,0.025229637,0.008282457,-0.025470324,-0.007018851,0.003543051,0.011928153,-0.010030976,-0.0065233195,0.01775419,0.017442713,0.0014131499,-0.0036633941,-0.010703483,0.015842853,-0.02549864,0.003210337,-0.028839938,-0.024790738,0.002658173,0.0311477,0.011064513,0.019070888,0.010703483,0.008870016,-0.036386177,0.031091068,-0.030864539,-0.0104132425,-0.014136808,0.003150165,-0.025555272,-0.010377848,0.023658093,0.016168488,0.017145393,0.03794356,0.0038403699,-0.018164773,0.028670043,0.0025679155,0.019099204,0.012933374,-0.0020546864,-0.007914348,-0.017839137,-0.03143086,-0.00956376,-0.011913995,-0.0432953,0.08126718,0.02164765,-0.00036987892,-0.024592524,0.0039607133,0.0047110897,0.010887537,0.004035043,-0.020189373,-0.02535706,0.01992037,0.01064685,-0.009882316,-0.01557385,-0.009478811,-0.008395721,0.02245466,-0.00637466,-0.030694643,-0.019523945,0.01687639,0.010583139,0.01238829,0.0007596676,-0.028882412,-0.005836654,-0.007794004,-0.005599507,0.010653929,-0.06541017,0.00010436028,0.009521285,-0.017060444,0.0003946555,-0.0017325908,-0.02324751,-0.0030669866,-0.0019608892,0.020288479,0.0066259652,0.031770654,0.033356354,-0.02289356,0.009209809,-0.0016768435,0.0009884086,-0.004410231,0.0077232136,0.0042544925],"SELECT * FROM lorem;\n+-------+\n| ipsum |\n+-------+\n| 33 |\n| 41 |\n+-------+\n":[-0.008643713,-0.0031058013,0.007136009,-0.024082325,-0.043880317,0.021244295,-0.043853026,-0.013760354,-0.014108285,-0.022608733,0.033319566,0.013862687,-0.022199402,0.0013755237,-0.010151416,0.015677389,0.017478447,-0.000495035,0.020957762,-0.0061979583,0.02802555,0.0072656306,0.0037931367,0.02294984,0.00058713456,-0.00046007134,0.018133378,-0.026674757,0.0015503423,-0.022731531,0.036239464,0.0066038785,-0.022076601,-0.011700053,-0.03067256,0.005856849,0.021271583,-0.010431126,0.0073611415,0.0072997417,0.0014087819,-0.0012603994,0.010185528,-0.019647902,0.0066448115,0.009018933,0.0029403633,-0.006927932,0.006846066,-0.005444106,0.019784346,0.028134705,-0.01970248,-0.008984822,0.006675511,-0.00511323,-0.002387766,0.0068562995,0.0042058793,0.0057715713,0.011051945,0.0026947644,-0.0017388053,0.013910443,-0.020193677,-0.010970079,-0.013016735,0.0036635152,-0.0014164569,0.017519379,0.0103629045,0.022049313,-0.011686409,0.003871592,0.029035233,-0.0003735148,0.0031791397,0.024041392,-0.0040421467,-0.004349145,0.008534558,-0.023372818,-0.021858292,0.0035066048,0.026879422,0.009032577,0.009237243,0.031245623,-0.015295346,-0.009885351,-0.0035748268,0.018078798,0.009673863,0.024068682,0.011140633,0.008937066,-0.025201164,0.051275566,-0.027302397,-0.034274675,-0.036676086,-0.0053417734,-0.003980747,0.0012279939,-0.026974933,0.012204895,0.006709622,-0.015759256,0.030809002,-0.001092403,0.016564274,0.01664614,0.030317806,-0.011331655,-0.002537854,0.020643942,0.026101694,-0.0064230906,-0.012498249,-0.0154454345,0.010035439,0.014940592,0.0056487718,-0.018733729,0.022513222,0.013862687,-0.013739888,-0.027329687,-0.0038852363,0.0008595957,0.04049651,0.04071482,0.0045026443,-0.003295117,-0.019006617,0.0107040135,-0.014094641,0.022786109,-0.012771137,0.008275314,0.011747808,-0.0003479316,-0.0041820016,-0.0024184657,-0.0069040544,0.03176411,0.0029625352,-0.010376548,-0.009482842,-0.0074634743,0.015677389,-0.0121434955,-0.01374671,0.010669903,0.0057715713,-0.01805151,-0.002534443,0.043498274,0.007995605,0.00854138,0.005911426,0.016755294,-0.014926949,-0.0062388913,0.023345528,0.032691926,0.03501147,0.0016654667,0.008834734,-0.01281207,-0.008295781,0.016536985,-0.034984183,0.032309886,-0.012798426,0.021394383,0.019320438,-0.024873698,-0.013235046,-0.023140863,-0.0015281702,0.03765848,0.023441039,0.037794925,-0.010976901,0.01948417,0.0073270304,0.006337813,-0.0022581443,-0.0008851789,-0.013269156,0.01826982,-0.007613562,-0.01979799,-0.6383385,-0.02045292,-0.013351022,-0.023181796,0.010860924,0.013487467,-0.019443236,-0.0020432454,0.018938394,-0.0026504202,0.008937066,0.015895698,0.012443672,-0.00854138,-0.007163298,-0.017751334,0.01268927,0.006068337,-0.0017328359,0.013958197,-0.013951375,-0.004891509,0.014067353,0.026702045,-0.0025259152,0.040660243,-0.017314713,-0.026906712,-0.009087155,0.00975573,-0.0040864907,-0.0021933336,0.0024321103,-0.003463966,0.03812239,0.0055669057,-0.021121494,0.034138232,0.0017234554,0.03694897,-0.024900988,-0.04445338,0.010970079,0.017273782,-0.014735927,0.00007541716,0.024478013,0.012020696,-0.009380509,-0.003238834,0.000696716,-0.0004737157,0.026360936,0.011556787,0.013207757,0.004997253,0.029253544,0.01374671,0.02696129,-0.005911426,-0.01870644,0.0145176165,-0.028516747,-0.022417711,-0.0070336764,0.004127424,0.014326596,-0.02222669,0.011120167,-0.014845082,0.014708638,0.03168224,-0.0037624368,0.0058056824,-0.019716125,0.003201312,0.03200971,0.0059455372,0.007906917,0.024860054,0.006129736,-0.009203132,-0.013398778,-0.00048139066,0.0107040135,0.010472059,-0.042133834,-0.008329892,-0.018447198,0.026483735,0.037931368,0.023058997,0.0069790985,-0.017874133,0.0061365585,0.008268492,-0.0039057028,0.011263433,0.0077227172,-0.037931368,0.014080997,-0.003909114,-0.002594137,0.026702045,0.04644546,-0.006044459,0.0025361485,0.025255742,0.013862687,-0.030781714,0.00045836577,0.005870493,-0.026142625,-0.02048021,-0.0017481857,-0.027070444,0.0077772946,-0.0046936655,-0.0015622812,-0.028189283,0.024109613,0.008725579,0.034438405,-0.013132713,-0.0067437333,0.014026419,-0.005188274,0.01817431,-0.002699881,-0.02263602,0.009585175,0.012839358,0.029935762,-0.020248255,-0.000076536424,-0.0077636503,0.012805248,0.0018027633,0.009735263,0.028052839,-0.01443575,-0.012245828,0.0059250705,-0.0061433804,0.0037180926,-0.027725374,-0.009796662,-0.012191251,-0.0034503217,0.010499348,-0.018037867,-0.0037897257,-0.044071335,0.008425402,-0.0058466154,-0.011427166,-0.025555918,-0.038722742,-0.0027612809,-0.024696322,-0.0067880773,-0.00087494566,-0.0081661595,0.013016735,0.024682678,-0.037958656,-0.0037180926,0.024955565,-0.011427166,-0.010731302,-0.004345734,0.0066482225,0.0006067484,0.004604977,-0.01477686,0.017028183,-0.037931368,0.007415719,0.026074404,-0.010137772,0.009203132,0.009510131,-0.0065083676,0.003005174,0.011522676,0.02222669,0.013603443,0.024573522,-0.00033556638,0.008282137,0.006187725,-0.008057005,-0.017846845,0.014422107,0.020275544,0.040878553,-0.0018692797,0.0019272682,0.006556123,-0.0020995284,-0.00008948793,0.005618072,0.002936952,-0.034765873,0.0077022505,-0.02562414,-0.007981961,-0.016796228,0.007497585,0.0044207782,0.006307113,-0.02737062,-0.02780724,-0.0030716902,0.020834964,0.037112705,0.0029710631,-0.003460555,0.008036538,0.004632266,0.034356542,0.0021609282,0.01640054,0.028161993,0.010656258,0.0111611,0.012791603,0.020643942,0.01917035,-0.018774662,-0.020002656,0.007634029,0.020248255,0.014503973,0.0015716617,-0.011734164,0.020002656,-0.028926078,0.0047584763,0.00380337,-0.0020654176,0.02868048,0.017342003,-0.06134512,-0.004130835,-0.004888098,0.004451478,0.027411552,0.019033905,0.020807674,-0.007845516,0.019838924,-0.012430027,0.014312951,0.010512993,-0.019552393,-0.014012775,0.017669467,0.009885351,0.01178192,0.022485932,-0.0062934686,0.0111269895,0.013671665,0.012225362,0.005498684,-0.017178271,-0.0059557706,-0.0070746094,-0.0015128203,-0.017833201,-0.01764218,-0.000561125,-0.013398778,-0.008425402,0.009817129,-0.013405601,0.009742085,0.015936632,0.02110785,-0.039677847,-0.041014995,0.014190152,0.00026180147,0.000096523305,-0.012586937,-0.033183124,-0.0058193267,-0.0106153255,-0.01618223,-0.0030256405,0.020616652,0.022499578,-0.01829711,-0.004130835,0.025514985,0.023372818,0.0025958426,-0.0048471647,-0.0007005535,-0.013391956,-0.0047721206,-0.03634862,0.006849477,0.03632133,0.014162863,-0.011713698,-0.008357181,0.008971178,0.0001803616,-0.0028516748,0.00579886,0.0062354803,0.0058500264,0.0034247385,0.014858726,-0.0075044073,0.004352556,0.03261006,0.020807674,-0.01384222,-0.04314352,-0.041669928,0.014272018,-0.029826608,0.014053708,0.00055003894,-0.0074839406,-0.01056757,-0.00010137346,-0.014094641,-0.021271583,-0.012511893,0.008718757,0.00036925095,-0.03149122,0.030945446,-0.024246057,0.0067437333,-0.00043043745,0.011338477,-0.02157176,0.010103661,-0.013453356,-0.025828805,-0.00020818334,0.0016757001,0.019688835,0.0030222295,-0.00074617687,0.014449395,-0.00019763027,0.00009108688,-0.024314279,-0.013296445,0.0035236604,0.035912,-0.0030324627,-0.0024457546,0.025992537,0.013125891,0.0055225617,-0.004158124,0.011686409,0.0015486368,0.007593096,0.010130949,0.0052940184,0.0020364232,0.0010173589,-0.023168152,0.0533768,0.004489,0.007572629,-0.024832767,-0.0036089376,-0.013255512,-0.0246281,0.022431355,0.0015170842,-0.01028786,0.009482842,-0.040305488,-0.03847714,-0.0033189948,-0.010397015,0.0042843344,-0.0015230535,-0.017792268,-0.021926513,-0.025692362,0.032064285,-0.038995627,0.020507498,-0.009271354,-0.026238136,-0.022608733,0.011413521,0.01050617,0.0060035256,0.015691033,0.0016850806,-0.0068187774,-0.00573746,-0.012034341,-0.03703084,0.02416419,-0.018037867,-0.025514985,0.0041683572,-0.0077363616,0.010369726,0.0025975483,0.010424304,-0.009646574,-0.008350358,-0.008896134,-0.025214808,0.03326499,0.0010139478,0.03790408,-0.009407798,0.0047721206,-0.008248026,0.0015972449,-0.0107040135,-0.010683547,-0.004055791,0.021148784,-0.010369726,0.019647902,0.013862687,-0.01034926,-0.016577918,0.006044459,0.0005261613,0.027261464,0.0056351274,-0.00157422,0.0005449223,0.018733729,0.021312516,-0.006337813,-0.03771306,-0.029581008,-0.03149122,0.034301963,0.013596621,-0.008309426,-0.0024918043,-0.025051076,-0.003005174,-0.009073511,0.004816465,0.007981961,0.0004775532,-0.004813054,0.010151416,0.0041444795,-0.021749137,0.018310754,0.0056999386,0.002312722,0.009612463,-0.0028158582,-0.012054807,0.00053383625,-0.010581214,-0.028844213,-0.018801952,-0.009373687,-0.013692132,0.02593796,0.0039261696,0.014190152,0.010901857,-0.006713033,0.00021809683,-0.0015708089,0.024205124,-0.0052633183,-0.010799524,0.028926078,0.0010872863,0.046527326,0.01970248,0.029280832,-0.019866213,-0.013808109,0.030727137,0.038640875,-0.0109632565,-0.017683113,0.001321799,0.028735058,0.019006617,0.028625902,-0.00008613013,-0.0020057233,0.020903185,-0.022513222,0.01792871,-0.002861908,0.0016961666,-0.01584112,-0.008370825,0.01686445,0.0068324218,-0.0018232298,-0.019634258,-0.0067846663,-0.025815161,0.0045367554,-0.010130949,0.04049651,-0.01275067,0.0045060553,0.017833201,0.005283785,-0.007565807,0.0023979992,-0.0014181624,-0.03329228,0.022049313,-0.0045469888,0.022253979,-0.00123908,0.0016586445,0.008780156,-0.015472723,-0.018992972,-0.006852888,0.0010480587,-0.0016211225,-0.003919347,-0.010499348,-0.009974039,-0.011270255,-0.00610927,0.031409357,-0.02596525,0.014845082,-0.020302832,-0.020562075,-0.042106546,-0.017533025,0.05116641,0.010267394,0.014599483,0.022308556,-0.007981961,-0.013105424,0.019716125,-0.0014488623,-0.021858292,0.037058126,0.021626337,0.002918191,-0.021749137,0.01829711,-0.003510016,-0.008186626,-0.030072207,0.0058432044,-0.003660104,-0.011563609,-0.0247509,0.027547996,-0.033619743,0.006886999,-0.030617982,0.0028653191,-0.0018198187,0.0075248736,-0.0112225,-0.012116207,-0.013958197,0.009387331,0.009823951,-0.020807674,-0.0032558895,-0.020534787,-0.026702045,0.014831438,-0.0026282482,0.014654061,0.01443575,0.010854102,0.01698725,0.015431791,0.004158124,-0.008978,-0.015786543,0.018447198,-0.03198242,-0.005908015,-0.02419148,0.008718757,0.0154454345,0.001555459,-0.02176278,0.0057442826,0.009878529,-0.0016356197,0.017137337,0.0056658275,0.02329095,0.007436185,-0.011242966,-0.020834964,-0.033592455,-0.0038681808,0.011413521,-0.008057005,0.01006955,-0.0057033496,0.02179007,0.01805151,0.0023570661,-0.018720085,0.031927843,0.011277078,-0.012286761,-0.022308556,-0.017846845,-0.007872805,-0.02082132,0.01225265,-0.014449395,0.02518752,-0.0015631339,-0.016100364,0.006852888,-0.007095076,0.019675191,-0.0020892953,-0.0060239923,-0.024887344,0.012934869,0.025787871,0.022458645,-0.0030938624,0.009926284,0.014967881,-0.01695996,-0.0034281497,0.015527301,-0.010253749,0.021721847,-0.0070541427,-0.005720405,0.014613127,-0.04491729,-0.0007188881,-0.017655823,-0.00717012,-0.024355212,-0.008138871,-0.045708664,0.008022893,-0.009189487,0.017110048,0.007395252,-0.002967652,-0.00007605674,0.021899225,0.027179599,0.023741215,0.0019068017,-0.0035782377,-0.018720085,-0.007142831,-0.004315034,-0.009619285,-0.015308991,0.022417711,0.0067505552,-0.01209574,-0.054604795,0.012354983,-0.014845082,-0.03613031,-0.009742085,0.00882109,0.0012134968,-0.010519815,-0.015472723,0.01892475,0.0063855685,0.0073679634,-0.015240769,0.0052940184,0.0013576155,-0.011686409,0.021244295,-0.0015162313,-0.01705547,-0.021721847,0.01676894,0.024396146,0.015786543,0.03239175,0.002440638,-0.006307113,-0.012539182,-0.023250017,-0.01674165,-0.011413521,0.013439711,-0.034547564,-0.011515854,0.013467,0.0093463985,-0.017382937,0.0072656306,0.007217875,-0.006337813,-0.0007892419,-0.022390421,-0.016414186,-0.011652297,0.006658456,0.03394721,-0.008009249,-0.03659422,0.038013235,0.0052940184,0.006419679,-0.025242098,0.017492091,-0.018447198,0.016168587,0.00963293,-0.021244295,0.0012621048,-0.0201391,0.0017703578,0.0013874626,-0.022745175,-0.030345093,-0.0064913123,0.00020860972,0.011433988,0.028980656,-0.03659422,0.0030938624,-0.012245828,-0.00074617687,-0.0071564754,-0.011447632,-0.036048442,-0.028134705,0.0042638676,0.012477783,-0.02353655,-0.026579246,0.014422107,-0.015895698,0.00073295884,0.00467661,0.18600014,-0.006191136,0.0003315157,0.037931368,0.0016739945,0.028598614,0.010512993,0.0055327946,-0.019102128,0.0139240865,-0.01798329,-0.008534558,-0.012777959,0.015077037,0.015363568,0.0018709851,-0.024177836,-0.027725374,-0.03457485,-0.028762346,0.010281038,0.0029216022,-0.0151043255,-0.013678487,0.006412857,0.0064947233,-0.025869738,-0.0021302283,0.028789636,0.014790504,-0.010356082,0.0005653889,-0.0005398057,-0.0057647494,-0.010205993,0.0041785906,0.013460178,0.0024798654,0.0053178957,-0.0012441966,0.015813833,-0.03875003,-0.018679151,0.0034486162,0.006992743,0.00096533966,-0.018597286,-0.0016143003,-0.01805151,0.002858497,-0.016564274,0.0072246976,0.03771306,0.018897463,0.0107040135,-0.01066308,0.027534353,0.0045810994,-0.015390857,0.007197409,0.0036464597,0.03522978,-0.020875897,0.03457485,-0.011897896,-0.004529933,-0.022485932,0.03261006,-0.011761453,-0.025555918,-0.009892173,-0.012382272,0.008500447,-0.009319109,-0.016441474,-0.009216776,0.02749342,0.008377647,-0.0070882537,0.02110785,-0.030181361,-0.02696129,-0.0011947358,-0.005972826,-0.022431355,-0.032719217,-0.026606536,0.014804149,-0.046718348,-0.0049665533,0.0040489687,-0.025173875,-0.013426066,-0.011584076,0.025269385,0.0057647494,0.0141765075,0.03280108,-0.024887344,-0.02179007,-0.012846181,0.023986815,-0.023904948,-0.0016731417,-0.008643713,0.009817129,-0.0014804149,0.024709966,0.005659005,-0.023959525,-0.015431791,-0.03222802,-0.0065390677,0.0009832479,-0.008070649,-0.003694215,-0.003909114,-0.004376434,-0.006522012,-0.005328129,-0.015472723,-0.010042261,0.01368531,-0.010574392,-0.002425288,-0.02606076,-0.0142583735,0.013228224,-0.020180034,-0.024000458,-0.0048028207,-0.02977203,0.0049392646,0.024928275,0.0066857445,0.034520272,0.006122914,-0.0030444015,-0.013105424,0.00025689803,0.014667705,-0.01178192,-0.0055327946,-0.015404501,0.0141765075,-0.018638218,0.016455118,-0.0058397935,-0.015145258,-0.03875003,-0.038859185,-0.021244295,0.0073065637,-0.0049085645,0.025897028,-0.013255512,-0.013357845,-0.025433118,0.005215563,0.02824386,-0.015404501,-0.016782584,0.021912869,0.005027953,-0.029389987,-0.019661548,-0.1742114,0.01618223,0.025514985,-0.03370161,0.007176942,0.0048471647,0.025733294,-0.008111582,0.008991645,0.0070541427,-0.007647673,-0.028380305,-0.04139704,-0.014135574,-0.015049747,-0.0018931573,0.010062728,0.009366864,0.04666377,0.017028183,0.046363592,-0.008786978,0.0055907834,0.0075385184,0.0088552,0.005038186,0.004079669,0.032719217,0.0060035256,-0.04944722,-0.016837161,0.0060035256,0.015936632,-0.025869738,0.004277512,0.01231405,0.018474486,-0.013453356,0.00008175967,0.007101898,0.02790275,0.043279964,0.0071905865,-0.0012629576,0.017260136,0.012348161,0.022458645,-0.028980656,0.0133442,-0.014231085,0.018406264,-0.04096042,-0.0018931573,-0.0054099956,-0.014353884,0.030945446,-0.013275979,0.0023093107,-0.01904755,-0.004567455,-0.014613127,-0.026770268,0.012928047,0.010178705,-0.007572629,0.0053144847,-0.009503309,0.009994506,-0.008568669,0.024246057,-0.0291171,-0.0053042513,-0.0043184455,-0.012279939,-0.005068886,0.009626108,-0.0085891355,0.016496051,-0.019129416,0.0117205195,-0.026783912,0.022595087,-0.0013644376,0.020371055,-0.005184863,0.007415719,0.008493625,0.026729334,-0.02584245,-0.017464802,0.0266884,-0.019306794,-0.014203796,-0.017273782,0.025897028,0.026497379,-0.010117305,0.004997253,0.013733066,-0.01580019,0.01695996,-0.008746046,-0.021489894,0.021271583,0.032337174,-0.0010062727,-0.02069852,-0.0018812184,0.029226255,0.01455855,-0.026702045,-0.0022666722,0.00246281,0.01477686,-0.0041035465,0.001649264,-0.0030188183,-0.014040064,0.012921225,0.01736929,0.04158806,-0.02593796,0.0061774915,0.010608503,0.026483735,-0.0039057028,-0.09485571,-0.016154943,0.008097937,0.028844213,-0.0050995857,0.03812239,-0.020603009,0.026019827,-0.039050207,0.014476684,-0.017437514,-0.03506605,-0.029881185,0.013275979,0.027165955,0.021503538,-0.011761453,0.015909344,-0.020125456,0.019757058,-0.004199057,-0.0004643352,0.03613031,-0.022390421,-0.0085891355,0.015677389,-0.002440638,0.016386896,0.021367094,-0.011925185,0.016004855,-0.029308122,0.0039022919,0.002624837,-0.006122914,0.000010699643,-0.041942813,0.0075180517,0.010472059,-0.000095883726,0.0076544955,0.017287426,0.008582313,-0.020302832,-0.015322635,-0.031436644,-0.009776196,0.038722742,0.025637783,-0.014981526,-0.016345963,-0.0017140749,-0.015568234,-0.005249674,0.01805151,-0.0040694354,0.014353884,0.0038306587,0.0020006069,0.024055036,-0.008241204,-0.013651199,0.0013951375,0.029062523,0.021121494,-0.002304194,-0.0288715,-0.008916601,0.006191136,-0.01477686,-0.024014102,0.009987684,-0.01739658,0.02300442,-0.01022646,0.01829711,-0.012163962,0.0012177606,0.008602779,-0.01072448,-0.010055906,-0.011986585,-0.03375619,-0.030263228,0.035393514,0.03787679,0.0086710015,-0.0035918823,0.022144824,-0.03659422,-0.016823517,0.0070404983,0.028953368,-0.024682678,-0.01618223,-0.0007056701,0.011706876,-0.00065962033,0.04355285,-0.012075273,-0.041478906,-0.010083195,-0.06341907,0.023400106,-0.0058841375,-0.024341568,-0.012116207,-0.005178041,-0.025310319,-0.01187743,-0.0050211307,0.008868845,-0.023413751,0.0031262678,-0.034056365,0.0043798448,-0.037249148,-0.002350244,0.0021745726,0.013801287,0.008705112,0.015363568,-0.002546382,-0.0030102907,-0.027970972,0.0020432454,-0.007981961,-0.0015094092,-0.030454248,-0.003588471,-0.017833201,-0.022062957,0.017956,-0.028189283,-0.0042945677,0.020834964,-0.0056248945,-0.018501775,-0.0109632565,0.027356975,0.01919764,0.007968316,-0.021530828,-0.028762346,0.02082132,-0.017069116,-0.006692567,0.014640416,0.017751334,0.004700488,0.019293148,-0.00088859006,-0.001683375,0.021189718,-0.015704678,-0.013112246,0.0006353163,-0.032746505,0.02079403,0.006695978,0.0013081547,-0.020507498,0.04726412,0.017041827,0.018433552,-0.0039636916,-0.021203361,-0.040360067,-0.008520913,0.0067812554,0.034902316,-0.030863581,-0.007647673,-0.010656258,-0.012846181,0.0047584763,0.008630068,0.012962158,-0.0024389324,0.027056798,0.015349924,-0.004785765,0.025583206,-0.031218335,-0.015308991,0.006157025,0.02846217,0.046254437,-0.009701152,0.007893272,-0.012116207,-0.017724045,-0.008862022,0.004410545,-0.028134705,-0.02210389,0.003581649,-0.0032251896,-0.02113514,0.00027970973,0.009128088,0.0040830798,-0.01979799,-0.009087155,-0.013787643,-0.014503973,-0.006085392,0.002440638,-0.00517463,-0.039896157,0.021176074,0.02977203,0.012880292,0.025542274,0.018201599,-0.0014249847,0.007374786,0.02004359,0.0028567915,0.021885581,-0.017232848,0.031818688,0.014981526,0.0013141241,0.015308991,-0.0042263456,0.022990774,0.0067812554,-0.002203567,-0.011509032,0.022172112,0.009339576,0.00957153,0.006699389,-0.017096404,-0.0046186214,-0.004840343,-0.010158239,0.008602779,0.005904604,0.005836382,0.08579584,0.01159772,-0.0103629045,0.0106221475,0.002067123,0.026579246,0.020411987,0.008343536,-0.00766814,-0.04428965,0.038831897,-0.0016765528,-0.0041820016,-0.047236834,0.0051234635,-0.017601246,-0.0018249354,-0.006883588,-0.0061774915,-0.003837481,0.01618223,-0.019743413,0.01599121,0.0041444795,0.011140633,0.016168587,0.035720978,-0.0062491246,-0.01374671,-0.046309017,0.009707974,-0.0056487718,-0.02484641,-0.015691033,-0.00084296666,-0.007750006,-0.0011691526,-0.027479775,0.0038954695,-0.02481912,-0.0139172645,0.024669033,-0.033783477,-0.010001328,0.0017388053,0.002964241,-0.01584112,0.002063712,-0.02889879],"How to do calculations on json data in Postgres":[-0.0013690499,0.005380898,0.01000671,-0.017286317,-0.015380276,0.019163033,-0.023957457,-0.013657509,0.006861744,-0.038091477,0.023942795,0.009061021,-0.0132616395,0.012733813,-0.00002607346,0.017667525,0.017095713,0.023546925,0.01445658,-0.014661847,-0.018517911,0.01675849,0.0028718892,-0.0034876866,-0.0015037556,0.016421268,0.004361899,-0.008437892,-0.017579554,-0.017990086,0.008481878,-0.015820133,-0.015365615,-0.03961631,-0.037534326,-0.019632213,0.00742256,0.021890137,0.02961693,0.0095302,0.022623228,-0.00595271,-0.009097676,-0.03468993,0.024397312,0.0038267418,0.004988693,-0.049762305,-0.015438925,-0.0001710167,0.018693853,0.048706654,-0.031141762,-0.009838099,-0.011964067,-0.006267939,0.033839542,0.025071757,-0.007180639,0.0059783678,0.03295983,0.0052232826,-0.017242331,0.005655807,-0.009515538,-0.026142072,0.0026079759,-0.0005305756,-0.007099999,0.031581618,-0.007558182,0.028414657,-0.004431543,-0.01929499,0.019441608,-0.01881115,-0.018166028,0.00046757545,0.00078715786,0.02596613,0.027139077,-0.015820133,0.013862776,0.02891316,0.012931748,-0.005373567,-0.01952958,0.031141762,-0.023326997,-0.0012590861,0.015072378,0.003615978,0.0059820334,0.019558903,0.009434898,0.0008581762,-0.026464632,0.02010139,-0.00532225,-0.0019445274,-0.014720494,0.027095092,-0.025189051,-0.013290964,0.0010538202,-0.008951057,0.008452554,-0.029851519,0.005208621,0.025790188,0.019793492,0.043252446,0.012770468,0.038765922,-0.0347779,0.00054615375,0.034396693,-0.017975423,-0.05295859,-0.0039843568,0.018605882,-0.007118326,0.0288985,-0.010373256,0.013518223,0.01580547,0.027432315,-0.043164477,-0.012462569,-0.018459264,0.004112648,0.04448404,-0.012931748,-0.0038010837,-0.018723177,0.021464942,-0.0034290394,0.016802477,-0.005450541,0.007257614,0.0063962303,0.014126689,-0.017403612,0.0058500767,-0.01977883,0.034807224,0.015658852,0.030907173,0.0012306788,-0.045363754,-0.0018400617,-0.0013562208,-0.0013827954,-0.0053552394,-0.012792461,-0.003418043,-0.0011170494,0.025614245,-0.004992359,0.014830457,0.0035701597,0.0063705724,-0.015556219,-0.010080019,-0.010519874,0.024411974,0.018283322,-0.02803345,-0.022901803,-0.0019591893,-0.0011527877,0.035950847,0.004112648,0.03486587,-0.020453276,0.021127721,0.022520596,-0.010182653,-0.035774905,-0.025247699,0.022784509,0.026464632,-0.0019775166,0.028810527,0.0027784198,-0.01636262,0.013034381,-0.0025584921,-0.003995353,0.0038084146,0.020277333,0.01699308,-0.04178626,-0.01961755,-0.560669,-0.025687555,0.01699308,-0.027652241,0.014485904,0.010446565,-0.008782446,0.0015963085,-0.016773151,0.017315641,0.029265044,0.024998449,-0.0009246127,-0.009662157,0.020687865,-0.02216871,0.015952088,-0.01254321,-0.021523591,0.014632522,-0.011494887,0.03413278,-0.008613835,0.025995454,-0.0037644291,-0.003962364,-0.018048733,-0.01413402,-0.02127434,-0.0010235801,-0.018459264,-0.009295611,0.00044260448,-0.0011078857,0.04812018,0.00060296844,-0.028180068,0.018356632,0.00018247125,0.053486414,-0.0082766125,-0.037153117,0.021948785,0.011143004,-0.046741966,0.00017319305,0.007360247,-0.008423231,-0.0039367056,-0.013628186,-0.0036453016,-0.026303353,0.029426325,0.0026996124,0.03486587,-0.010307278,0.028575938,0.019764168,0.036654614,-0.006806762,-0.0012829115,-0.0033813883,-0.02049726,0.003451032,-0.013474237,-0.017755495,0.00936892,0.00045726632,-0.025364993,-0.012902425,0.012411253,0.014815795,0.011934743,0.015556219,0.011942074,-0.009442229,0.04433742,-0.003247599,-0.007998037,0.013752812,0.007173308,-0.006575838,-0.047357764,-0.028399996,0.018752502,0.00873846,-0.02254992,-0.014933091,0.041317083,0.014551883,0.027036445,0.003744269,0.010820443,-0.0059966953,0.01596675,0.012792461,-0.00056264835,0.007990706,0.017125037,-0.024074752,-0.011883426,0.0045195143,0.016216002,0.012257303,0.021479605,-0.0020599894,-0.011560866,-0.001324148,0.015673514,-0.011164996,-0.031141762,-0.014683839,-0.015614866,-0.0008045688,0.003546334,-0.042519353,0.041727614,-0.012447908,-0.030144757,0.010541867,0.013928754,0.0061323172,0.025672892,-0.014837788,-0.025863497,0.016113369,0.018649869,-0.010600515,0.008401238,-0.005267268,-0.021934122,0.019969435,0.014002063,-0.0068910676,0.0014725992,0.0019023746,-0.006037015,0.029074442,-0.0016787814,-0.01866453,0.0012022714,-0.013041712,0.012851108,-0.037827563,-0.007888073,-0.030262051,-0.02810676,0.012983065,0.012381929,0.017110374,-0.03017408,-0.0060516773,-0.01706639,0.001316817,-0.00009306836,-0.008987712,0.018957768,-0.03128838,-0.0021332987,-0.030848525,-0.017594216,0.011458233,-0.002287248,0.012535878,-0.018561898,-0.028385334,0.010014041,-0.0013131516,-0.00077203783,0.0024723539,-0.029397001,-0.013598862,0.0023550591,-0.0045231795,-0.014412595,0.03199215,-0.0297049,-0.016714504,0.00086184166,-0.002041662,0.01738895,-0.014038717,-0.022755185,-0.005773102,0.025189051,0.019075062,-0.011362931,0.026039438,-0.020629218,0.01747692,-0.012337944,0.02891316,-0.009904077,0.016773151,0.019177696,0.019251004,0.0049447077,-0.0035280068,-0.010754464,0.021494268,0.0085478565,0.0052049556,0.027256371,-0.03213877,0.019104386,-0.013063705,0.008064016,-0.011817448,0.0029910167,-0.009588848,0.010813111,-0.022329992,-0.013510891,0.0018822146,0.004424212,0.022388639,-0.0021607897,-0.0003704407,0.03319442,-0.0035078467,0.03867795,-0.032842536,0.061110575,0.00960351,-0.01787279,0.024089413,-0.019470932,0.010857097,0.010380588,-0.010725141,0.009508207,-0.007873411,-0.02001342,0.013870107,0.028253378,-0.0071659773,0.011113679,0.0065721725,0.003533505,0.00011231203,-0.025262361,0.0124699,0.010585853,-0.026142072,-0.00142953,0.010629838,0.026640575,0.008848424,0.0077194623,0.01771151,-0.008914403,0.0029525294,-0.031112438,0.03257862,0.019353637,-0.0047211144,-0.019031076,0.024763858,0.037358385,0.03319442,-0.0025474958,-0.014903767,0.02429468,0.0033575627,0.005630149,-0.0045634997,-0.022857819,-0.048911918,0.00025520776,0.009588848,-0.023972118,-0.051668346,-0.010102012,-0.01755023,-0.00072621956,0.003240268,0.011663498,-0.004552503,0.02168487,0.0143686095,-0.008533195,-0.0030111766,0.02668456,0.011370262,0.014632522,-0.0065721725,0.0033612282,0.007250283,0.001569734,-0.015790809,0.019676197,0.022183374,0.024104076,-0.035071135,-0.03709447,-0.004405885,0.0020361638,0.005765771,-0.02334166,-0.010930407,0.015262982,0.033018477,-0.028619925,-0.01524832,0.039440367,0.0015321629,0.014823127,-0.021039749,0.003779091,-0.009398243,0.0035445013,-0.016406607,-0.016377281,0.016333297,0.00730893,-0.00013424753,0.00024489866,-0.003581156,0.043223124,0.012748475,-0.034250073,-0.040877227,-0.032226738,0.018869797,0.03334104,0.016391944,0.013195662,-0.013518223,-0.00984543,0.04152235,-0.015834793,-0.016465254,-0.00091361627,-0.009478884,0.010094681,-0.005062002,0.012183994,-0.018239336,0.014698501,-0.009522869,-0.0037351053,-0.018166028,0.0012572533,-0.000794947,0.0016210504,-0.0095815165,0.017726172,0.03351698,0.04249003,0.018122042,0.026963135,0.005018017,-0.022608567,0.006044346,-0.027095092,0.011487557,-0.010255962,0.0034455338,-0.004398554,0.02375219,0.031464323,0.004152968,0.036889207,0.009383582,0.014148681,0.0056191524,0.0002513132,0.01167083,0.018796487,-0.010058027,-0.013408259,0.03313577,0.015365615,0.007983375,-0.0008224379,-0.007697469,-0.0053662355,-0.0067701074,0.028048111,-0.010607846,0.0074152285,-0.042050175,0.005916055,-0.018122042,-0.030995144,0.015262982,0.005641145,-0.0044278777,-0.02430934,-0.008305936,-0.043164477,-0.0067627765,-0.03621476,0.015908103,-0.0003282879,-0.042900562,-0.023796177,0.003036835,0.026801854,0.012689828,0.018063394,0.011077025,-0.0009740964,-0.014163343,-0.038179446,-0.017418273,-0.023224365,-0.020526584,-0.018693853,0.009266287,-0.0022286007,0.02057057,0.022007432,0.02938234,-0.0057364474,-0.021538252,0.016157355,0.008709136,0.026156735,0.000752336,0.01803407,0.013796797,0.0073309233,-0.0063632415,-0.009808775,-0.008042023,0.009105006,-0.0113042835,-0.012447908,-0.0016522068,-0.009412905,0.008782446,0.016347958,-0.028253378,-0.019075062,-0.00015704212,0.011685492,0.0011088022,0.048882596,0.008349922,0.019412285,0.03178688,-0.026010115,0.0066748057,0.017916776,-0.014654515,0.03806215,0.010842435,0.0032934172,-0.010901082,-0.010424573,-0.03240268,-0.011795456,0.01706639,0.026933812,0.013437582,0.0039990186,0.008503871,-0.026010115,-0.0036801235,-0.0012370932,0.017374288,-0.014002063,0.008261951,-0.007851419,-0.020160038,-0.008151987,-0.009970056,0.0122279795,-0.02049726,-0.011883426,-0.008885079,0.013115021,0.007873411,0.015497572,-0.011802786,-0.007954052,-0.015864117,-0.007873411,0.007998037,-0.016084045,0.007297934,0.013855445,0.015864117,0.052284144,0.015497572,-0.0021589568,-0.0070083626,-0.012851108,0.0028627254,0.045569018,-0.033047803,-0.005296592,-0.010453897,0.012902425,0.0064512123,-0.0078587495,0.013078367,-0.021406295,0.022051416,-0.00044397902,-0.0069680423,-0.010373256,-0.028150745,-0.00045474633,0.035598963,-0.012169332,0.0018189853,-0.026948474,-0.0123745985,0.016978418,0.005949044,0.026391324,0.0003415752,0.01850325,-0.005153639,-0.019852139,0.0012893261,0.02501311,0.0054065557,-0.03574558,-0.005886731,-0.016494578,0.012997727,-0.0065135253,0.026493955,0.0036984507,0.022373978,-0.028605262,0.02350294,-0.0129537415,0.0014286137,0.034601957,-0.013826121,0.00024535684,-0.022652553,-0.00730893,0.0029433656,0.017359626,0.041463703,0.018180689,0.01738895,-0.023546925,0.004365565,0.013921423,0.005571502,0.038531333,0.00240271,0.021479605,0.009632833,-0.0051646354,-0.0052122865,0.009031697,-0.0039257095,-0.010189983,0.018092718,0.029250383,-0.013005057,-0.025306346,-0.0055385125,0.007910066,-0.019104386,-0.00793939,0.027446976,-0.01230862,0.010167991,-0.023913471,0.006088332,-0.025364993,0.024866492,-0.028004127,0.008320598,0.010124004,0.0006529103,-0.024280017,0.023854824,0.021157045,0.031434998,0.020819822,0.0023275681,0.0010987221,-0.007873411,-0.03955766,0.02922106,0.010659162,0.009632833,0.009090344,0.006004026,0.0037204435,0.003513345,0.0064292196,-0.0065061944,-0.012345275,0.02914775,-0.022007432,0.009390913,0.026230043,-0.00035394615,-0.01040258,0.0024870157,-0.022725862,-0.035980172,-0.021582238,0.0009411073,0.024397312,-0.019954773,-0.014588537,0.020453276,-0.00069964497,0.0063815685,-0.01675849,0.015218996,-0.008349922,-0.021376971,-0.021259677,-0.013826121,-0.0020599894,0.016128032,0.00089116534,-0.01620134,0.009676819,0.008027361,0.01810738,0.004343572,0.011986059,-0.01708105,-0.049527716,-0.005765771,-0.03844336,-0.026552605,0.0059270514,-0.01461053,-0.029001132,-0.018092718,0.008261951,0.02175818,-0.0122279795,-0.0022579243,-0.01708105,0.03727041,0.0113409385,-0.012660504,0.007822095,0.009838099,0.0066674748,-0.0012691661,0.017271655,-0.008525863,0.018693853,-0.026801854,0.002021502,0.002750929,0.00897305,-0.030584611,-0.00022382225,0.02454393,-0.0036636288,0.008855755,-0.022022093,0.022227358,-0.010358594,0.04448404,0.018913781,-0.02287248,-0.0056594727,0.008591842,0.032607947,0.019573566,-0.018224675,-0.04468931,-0.042079497,-0.006011357,-0.0015394939,-0.0352764,-0.0053405776,0.04254868,0.033839542,-0.010776457,-0.014874443,-0.004820082,-0.023326997,-0.029514296,-0.051961582,0.0021552914,0.03606814,0.008907071,-0.012653173,0.04803221,-0.0040613315,0.007037686,-0.01922168,0.012220649,-0.036185436,-0.011157665,0.04685926,0.0039037166,-0.010263292,-0.022051416,0.0051169842,0.009185647,0.034513988,-0.009039029,0.01079845,-0.01587878,-0.005949044,-0.00070376863,0.0068177585,-0.013958078,0.023649558,-0.04178626,0.006685802,0.035393696,0.01706639,-0.012477231,-0.01699308,0.01834197,-0.038150124,-0.020116054,-0.013752812,0.008518533,-0.004229943,-0.01587878,0.012821784,0.0037351053,-0.014141351,0.018781826,0.023546925,-0.0036709597,-0.0139874015,0.031464323,-0.011714815,0.008144655,0.002763758,0.0016512905,0.004193288,-0.0030001802,0.004985028,-0.009772121,0.001412119,-0.0072172936,0.0049447077,-0.016890448,-0.0056814654,0.026537942,-0.04861868,-0.010197314,0.0044645322,-0.008643159,-0.0041383062,-0.018048733,-0.010761796,-0.027227048,-0.03040867,0.01270449,0.00007124741,-0.026904488,-0.0024741865,-0.018253999,-0.0016073049,0.02057057,0.18978293,-0.003980691,0.006106659,0.02803345,-0.009772121,0.0288985,0.0015972249,-0.0071256575,-0.012455238,-0.00038991348,-0.03691853,0.012499224,-0.0011014713,0.011091687,0.0035848215,-0.0076461527,-0.03683056,-0.025658231,-0.033692922,-0.0019500256,-0.0033337374,0.012162002,-0.01636262,-0.014346616,0.017535567,-0.021171706,0.023605572,0.01461786,0.03073123,0.020028083,-0.010314609,-0.003342901,0.016567886,0.013041712,-0.015776146,-0.02557026,0.03392751,0.0073015993,0.034748577,0.008804439,0.009977386,-0.046243463,-0.0098527605,-0.020746512,-0.02596613,-0.014889105,0.009185647,-0.0049520386,-0.0023165718,0.029983476,-0.035774905,-0.012741145,0.02756427,0.009500876,0.0023660555,-0.027256371,0.012763137,-0.009141661,0.012191325,0.023942795,-0.018473927,0.013195662,0.001981182,0.006594165,-0.036361378,-0.03495384,-0.009948063,0.011810117,0.00615431,-0.018635206,-0.006399896,-0.0068580788,0.0126458425,-0.009808775,-0.030203404,-0.006726122,-0.0025071758,0.015614866,0.0058610733,0.015101702,-0.033077125,0.011025708,0.0007541687,-0.022652553,-0.03747568,-0.039850898,0.024558593,-0.020790499,-0.03946969,0.0021607897,0.012425914,0.016773151,-0.027124416,-0.041258436,-0.012118016,-0.016729167,0.0039586984,0.02057057,0.0065135253,0.004908053,-0.033692922,0.042079497,0.013159007,0.00034569885,-0.010813111,0.0042739282,-0.02303376,0.0020709857,0.016157355,-0.010871759,-0.019881463,-0.020306658,-0.021391634,-0.0014057045,-0.008694475,-0.0028663909,-0.007440887,-0.0076461527,-0.014573875,-0.023165718,0.0074115633,-0.016553225,-0.014156013,0.004691791,0.023517601,-0.040056165,-0.02231533,0.0015083374,0.015175011,-0.042431384,0.03548167,-0.019148372,0.014229322,0.0037827564,0.006066339,0.021934122,0.000729885,-0.012521217,0.0019133709,0.009823437,0.021464942,-0.019265667,0.022124726,-0.038472686,0.016538562,-0.012110685,0.016699843,-0.011626844,-0.01604006,-0.016890448,-0.016949095,0.0042629316,-0.0023202372,-0.034250073,-0.0015138356,-0.028678572,0.0033795557,-0.033634275,-0.0049007223,-0.019896125,-0.022916466,0.0029836858,0.019412285,-0.0070963334,-0.013628186,-0.020248009,-0.18649869,0.010226638,0.015350953,-0.040613316,0.0013772972,0.03231471,0.03351698,-0.0051023224,-0.011025708,0.005487196,0.009427567,-0.005883066,-0.03979225,-0.0021552914,-0.008188641,-0.013071036,-0.0052196174,0.030995144,0.014419925,0.029866181,0.03803283,-0.010541867,0.014786472,-0.009772121,-0.009955394,0.0012105186,-0.01810738,-0.006242281,0.002600645,-0.027666904,-0.0071366536,-0.01801941,0.009625502,-0.016553225,-0.008320598,-0.018371293,-0.014243984,0.0032567626,0.004354568,0.00655018,0.016802477,0.04249003,-0.015952088,0.021464942,0.024485283,-0.0029855184,0.03765162,-0.016567886,0.0041016517,0.014727824,0.02589282,-0.031141762,0.01501373,-0.0056814654,-0.013386265,-0.012843777,-0.028678572,0.0071916357,-0.031200409,-0.03961631,-0.02469055,-0.017242331,0.013723488,0.0112676285,-0.0092736175,0.016172016,-0.023488278,0.0027894164,0.0008847508,0.03293051,-0.023708206,0.026889825,0.0046441397,0.009838099,-0.0019665202,0.014390602,-0.026244706,0.012719152,-0.0034162102,0.010519874,-0.012396591,0.027769538,-0.021640886,0.016905108,0.001572483,-0.0051169842,0.0028095762,0.0060956627,-0.019397622,-0.008093339,0.011458233,-0.0046001542,-0.020453276,-0.007822095,0.01706639,0.015262982,0.018987091,0.021376971,0.041405056,-0.02548229,0.0071513155,0.008188641,-0.039909545,-0.0044901907,0.014815795,0.03709447,-0.009889415,-0.00037135708,0.013635517,0.017213007,-0.03914713,0.011648837,0.0017447597,0.025277022,0.000076631055,0.019998759,-0.002212106,0.016538562,0.016406607,0.027300358,0.022124726,0.0052269483,-0.011692822,0.0026702888,0.020467937,-0.00532225,-0.12409787,-0.023004437,0.012279296,0.021523591,0.01643593,0.0011683658,-0.0074775415,0.0016769486,-0.05375033,0.017007742,-0.052049555,-0.02406009,-0.005956375,0.026479295,-0.004735776,0.026347337,-0.01484512,-0.004178626,0.017007742,0.020042744,-0.011348269,-0.03087785,0.001630214,0.021157045,0.011934743,0.028238716,-0.018400617,0.033311713,-0.0047284453,-0.0037406036,0.013708826,0.0004400845,-0.001123464,-0.00921497,-0.018092718,-0.025203714,-0.010541867,-0.00021889678,0.03533505,-0.013012389,-0.002853562,-0.006990035,-0.00018075308,0.024001442,0.008899741,-0.003621476,-0.016069384,0.025115743,-0.014119358,-0.014353948,-0.019998759,-0.007393236,0.007976044,-0.016230663,0.041287757,0.008591842,0.0085112015,0.018547235,0.0036453016,0.017374288,-0.013848114,0.016259987,-0.015776146,0.030760553,0.028942484,0.011920081,-0.027842846,-0.0032787554,0.011817448,0.0033410683,-0.0037057817,-0.013232316,-0.03389819,0.020731851,-0.026713884,-0.009830768,-0.0046954565,0.0026996124,0.019588226,-0.008393907,0.015336291,-0.014309962,-0.018356632,0.0078587495,0.017286317,-0.0063669067,-0.00818131,-0.017256994,-0.0023917137,-0.040554665,-0.00960351,0.0011289621,0.010395249,-0.032490652,-0.034748577,-0.013459574,-0.016084045,-0.0015669848,-0.0063705724,-0.022227358,-0.04644873,0.003465694,-0.05471801,0.028224055,0.0028297363,0.0013213989,-0.012418584,-0.0033795557,0.00020034038,-0.016890448,0.004937377,0.0033502318,-0.0050216825,0.022403302,-0.02993949,-0.030437993,-0.024631903,-0.019163033,-0.0068837367,0.001487261,-0.0029690238,-0.017315641,-0.013173669,-0.013591532,-0.019397622,0.02580485,0.01787279,-0.0005676884,-0.002056324,0.022681877,-0.015952088,-0.039821576,0.009735466,-0.013254309,0.0032659261,0.015438925,0.017931437,-0.01580547,0.01564419,-0.0019830146,0.030115433,-0.016142692,-0.01461053,-0.01787279,-0.027388329,-0.005949044,0.009332265,0.016523901,0.0011647004,0.011458233,0.01215467,0.012015383,0.00944956,0.0022029425,-0.034836546,-0.0124699,-0.005065668,-0.03161094,-0.008027361,0.008797108,-0.015160349,-0.002695947,0.047181822,0.005311254,0.020057406,-0.025262361,-0.010102012,0.008760453,-0.00008338925,0.02224202,0.021919461,-0.024045428,-0.028605262,0.01104037,0.022388639,0.026948474,0.006037015,-0.022799172,-0.020981101,0.014500566,0.01373815,0.0143686095,0.037739594,-0.0142953005,-0.014265977,0.024558593,0.044982545,0.021215692,-0.02420671,0.0271684,0.0054138866,0.008643159,0.014251315,-0.006605162,-0.034895193,-0.018679192,0.042226117,0.01961755,-0.009500876,-0.035628285,0.017594216,0.036390703,-0.008386576,0.0008018197,-0.005105988,0.006242281,-0.026479295,-0.024749197,-0.021919461,-0.053662356,0.029646253,0.012924418,0.0068983985,-0.009412905,0.00086000893,0.012535878,0.029851519,0.024983786,0.022813832,0.0033483992,-0.011553535,0.006267939,0.00035348794,-0.015526895,0.005380898,0.009266287,0.046360757,0.011626844,0.013005057,-0.016509239,0.0032897517,-0.020585231,0.003322741,0.00062404486,-0.0014047881,-0.019485593,-0.015629528,-0.016479915,-0.017535567,-0.0036398033,0.012770468,0.12491893,0.0060480116,0.009017035,-0.038502008,0.0052855955,0.014463912,-0.0068654097,0.012587195,-0.023649558,-0.06234217,0.034191426,0.0022450953,-0.055597723,-0.031229733,0.012895094,-0.01841528,0.014727824,-0.004438874,-0.007990706,-0.011846771,0.0012123514,0.04750438,0.009676819,0.03263727,0.0062386156,-0.006814093,0.026171396,-0.013664841,0.002498012,-0.028121421,-0.008958388,-0.015233658,-0.009654826,-0.023195041,-0.0016934433,-0.0064438814,-0.021890137,-0.019705521,0.011920081,0.020907793,0.0021461276,0.017535567,-0.02057057,0.0044901907,-0.0051499736,0.0098527605,0.0033209082,-0.015658852,-0.047181822],"SELECT d.sum_conversions\nFROM report r\nLEFT JOIN LATERAL (\n SELECT sum((value->>'conversions')::int) AS sum_conversions\n FROM jsonb_array_elements(r.data)\n ) d ON true\nWHERE r.report_id = 12345; -- enter report_id here\n":[-0.0036698245,0.0184041,0.030513147,-0.009305135,-0.032464888,0.024273071,-0.017593166,-0.0036973138,-0.010191666,-0.022225117,0.023365924,0.03645084,-0.02229384,0.02108431,-0.008281158,0.010122943,0.001412264,0.022816136,0.020149672,-0.01737325,0.023022307,-0.0036492075,-0.005047727,0.0074358615,0.015888829,0.018624015,0.0022713053,-0.011861643,-0.008858434,0.026430983,0.008542307,0.0047109826,-0.028314002,-0.021799032,-0.021661585,-0.020919373,-0.0035667396,0.020630736,0.0211118,0.027118215,0.024616688,-0.017263293,-0.005109578,-0.03609348,0.028863788,0.026870811,0.019008866,-0.017936783,-0.010885771,0.0012095302,0.012988704,0.021716565,-0.057727575,-0.02008095,-0.019517418,0.006112938,0.0073121595,0.044395253,0.0060442146,0.012280854,0.027448088,-0.001350413,-0.025936175,0.0073052873,-0.0048930994,-0.01185477,-0.00420243,0.016094998,-0.017785592,0.024616688,0.00079332467,0.020603247,0.021867756,0.0036114096,0.0076420316,-0.026857067,-0.005755577,0.029633489,0.013284215,0.005693726,0.020135928,-0.006484044,0.01034973,0.01745572,-0.0062297676,0.0017868059,-0.029496042,0.04535738,-0.024561709,0.0042196107,0.012596982,-0.00527795,0.011078197,0.0044086,0.013036811,0.01884393,-0.019201292,0.009511305,-0.023599584,-0.010370347,-0.0067692455,-0.0043948554,-0.028836299,-0.0077932226,0.013572853,0.003408676,-0.010384091,-0.0005527931,0.021963969,0.016864698,0.008446095,0.026472216,0.02556507,-0.014115767,-0.027076982,-0.028918767,0.026912047,-0.009009625,-0.03323459,-0.0052676415,0.016149977,-0.01843159,0.00541196,-0.025647538,0.022376308,0.023049796,0.0034877078,-0.0303757,-0.01992976,-0.005717779,0.02656843,0.046676867,0.02229384,0.0015969578,-0.02533141,0.014198234,-0.005570024,0.016067509,-0.00931888,-0.012040323,0.0005484979,-0.0029413574,-0.0055562793,-0.02311852,0.0020513907,0.025743749,0.024575453,0.0041577597,-0.04013441,-0.026788345,0.018445335,0.00790318,-0.0036835691,-0.02105682,-0.010927006,0.002886379,0.022829881,0.028080342,0.0077863503,0.022390053,-0.020905629,0.029413575,-0.026609663,-0.008301775,-0.015957551,0.022431286,0.017441975,-0.010198538,-0.010143559,-0.02067197,0.03455408,0.05627064,-0.006490916,0.047776442,0.02144167,0.033427015,0.0039618984,-0.012919981,-0.011284366,-0.025372645,0.0063947034,0.004573536,-0.0104871765,0.031915102,0.014981681,-0.010260389,0.0011734504,0.006930745,-0.0025874325,0.0445327,-0.0042780256,0.034196716,-0.011250005,-0.030705573,-0.5827736,-0.0068929475,-0.0147617655,-0.027736725,0.042278577,-0.014693042,0.011078197,0.004181813,-0.0055837687,0.008356754,0.010281007,-0.0016502184,0.015036659,-0.014624319,-0.004549483,0.0062503847,0.004573536,-0.013277343,-0.015077893,0.004989312,-0.01580636,0.0076832655,-0.011304984,0.028396469,0.0031561179,-0.0075801807,-0.013511002,-0.0031166018,0.012665705,-0.016740996,-0.03518633,0.0060854484,-0.006116374,0.0013985193,0.03804522,-0.007215947,-0.035571184,0.029386085,0.012968088,0.042333554,-0.019613631,-0.003221405,0.03529629,0.0031698623,-0.024053156,-0.010817048,0.007868818,0.0062847463,-0.0038450689,-0.0087828385,-0.021386692,-0.005339801,-0.020795671,-0.0032677932,0.027681747,-0.01642487,0.020094695,0.0032729474,0.03081553,0.0023365924,0.0011622829,0.01804674,-0.03273978,-0.0027351875,-0.027461832,-0.007958159,0.028616384,0.016905934,0.010700218,-0.014486873,0.0033021548,0.014583086,0.03084302,0.029386085,0.0027283153,-0.030183276,0.04098658,0.010590261,-0.008315519,0.031557743,0.010713963,-0.010638367,-0.036973137,0.0074152444,0.013572853,-0.0060442146,-0.036973137,-0.008116222,0.02296733,0.00047032512,0.007820712,0.029633489,-0.016740996,-0.020974353,-0.004841557,0.010040475,-0.016067509,0.021221757,-0.0068104793,-0.01583385,-0.031502765,0.009160817,0.023379669,-0.00035714643,0.033069655,0.00041792358,-0.023324689,-0.02530392,0.023613328,-0.041563854,-0.020163417,-0.035488714,-0.008549179,-0.0030736497,-0.0061438633,-0.043598063,0.021386692,-0.017854314,-0.010452814,-0.0152290845,0.04018939,0.006071704,0.037825305,-0.00091487897,0.015820105,0.029935872,0.03122787,-0.006841405,0.017332017,-0.0022936403,-0.0049961843,0.01619121,0.0190501,-0.0056731086,0.0045254296,-0.020438312,-0.012500769,0.0038794305,-0.010246645,-0.0116486,0.007353394,-0.00465944,0.022252606,-0.022018947,-0.0128718745,-0.018376611,-0.03724803,0.015077893,0.0020221833,0.01324298,-0.02530392,-0.006363778,-0.025070261,0.0000823069,0.000571692,-0.024314305,-0.022018947,-0.032327443,0.007717627,-0.02610111,-0.016933423,0.0023159753,-0.00030345636,0.013016194,-0.011538642,-0.046456955,-0.0067314478,-0.015105383,-0.007408372,-0.022568733,-0.0059170765,-0.018321633,-0.0015866493,0.027420599,0.016534828,0.029413575,-0.018596526,-0.0073877554,0.019723589,-0.010707091,0.003803835,0.008803455,-0.016493592,-0.016795976,0.014012682,0.0077932226,0.0063294163,0.029880892,-0.010122943,0.023255967,-0.021606607,0.025867451,-0.009153944,-0.0071266065,0.0053569814,0.037962753,0.0015892264,-0.00019876068,0.021166777,0.022156393,0.029386085,0.029688468,0.012837513,0.0052126627,0.0011949264,-0.019008866,0.01636989,-0.010418453,0.0099923685,0.00052014954,0.012514514,-0.04417534,-0.013614086,-0.012487024,-0.012542003,0.022431286,0.016713507,0.02880881,-0.0086591365,0.00074779545,0.021015586,-0.014486873,0.04983814,0.0072709257,-0.00045572143,0.0069547985,-0.022073925,0.022252606,0.01984729,-0.0059583103,-0.016232444,0.0012730992,0.0077313716,0.01948993,0.015050404,-0.013607214,-0.0009689986,-0.0073877554,0.005198918,-0.01689219,-0.012899364,0.002683645,0.0075183297,-0.01869274,0.012748173,-0.0022833317,0.045989636,0.014583086,-0.001621011,0.021510394,-0.010184794,0.021854011,-0.021606607,0.027558045,0.0019620503,-0.017716868,-0.00996488,0.041124027,0.02149665,0.011593621,0.018514058,-0.004618206,0.027283153,-0.0015548648,-0.010521538,0.01327047,-0.011091941,-0.028726341,0.016259935,0.0035942288,-0.0347465,-0.03722054,-0.006301927,-0.032354932,-0.008851562,0.002286768,0.006556203,0.015545212,0.011950983,0.026211068,-0.017057125,-0.03686318,0.04065671,-0.01675474,0.0065184054,-0.010755197,0.0006936758,0.026444728,-0.017895548,0.012170897,0.012074685,0.02108431,0.029083703,-0.0067761177,-0.014665553,0.010136687,0.0058002467,0.00669365,0.010755197,-0.028561406,0.008885923,0.008397988,-0.025592558,-0.01309179,0.0705376,0.01265196,0.01226711,-0.02556507,-0.0020050025,-0.004432653,-0.019916013,0.025042772,0.0040306216,-0.0054944283,-0.016823465,-0.001288562,-0.019105079,0.036533307,0.03284974,0.006253821,-0.024245583,-0.047556527,-0.0063294163,0.016850954,0.012088429,0.022472521,-0.01704338,-0.012803151,0.00046860703,0.0002549205,-0.022307584,-0.032189995,-0.0074908403,-0.021826522,0.0028039108,0.012040323,0.045522317,-0.02368205,-0.0060407785,0.0017386996,-0.0048999717,0.006841405,0.017923038,0.005401652,-0.01153177,-0.023091031,-0.0064015756,0.05074529,0.041233983,0.014280703,0.021524139,-0.01335981,0.009518177,-0.0023761082,-0.021372948,0.011930366,0.0072571808,-0.009648752,0.008796583,0.013572853,0.009470072,-0.018294144,0.010342858,0.024864092,-0.0015230803,0.04082164,0.002599459,-0.0018916089,0.0381002,-0.01683721,-0.018967632,0.025551325,0.0035392502,-0.0006979711,0.0041027814,0.0022025818,-0.02131797,-0.032987185,-0.0018830185,0.0026097675,0.016108742,0.0003904343,-0.003455064,-0.010404708,-0.0029911818,-0.004075292,0.016301168,-0.0059136404,-0.02795664,-0.01085141,-0.041811258,-0.011091941,-0.013064301,0.027599279,0.00010136687,-0.00080921693,-0.01604002,0.024231838,0.02335218,0.002331438,0.0064634266,0.0017249549,0.04263594,-0.01948993,-0.03287723,0.0017593167,0.007463351,-0.020754438,-0.026169835,-0.008631647,-0.00961439,0.000007375675,-0.006741756,0.0072022025,-0.0008276863,-0.0068551498,0.02368205,0.012363322,0.026650898,0.0067142667,0.0064634266,-0.010287879,-0.012789407,-0.010583389,0.004515121,-0.022197627,0.0067623733,-0.025812473,-0.010274134,-0.0018641197,-0.0065321503,0.00934637,-0.0116486,-0.02553758,-0.007573308,-0.0027128526,0.015091638,0.0104871765,0.038320113,-0.020135928,-0.0010025012,-0.006449682,-0.0017060561,0.0119441105,0.0030753678,-0.008171201,0.031722676,0.0104871765,-0.012624471,0.015613935,0.005109578,-0.032794762,-0.0078000952,0.0176344,0.012164025,0.0072022025,0.007861946,0.010521538,-0.045632273,-0.004594153,-0.009676241,-0.00370075,-0.008315519,0.024286816,-0.0032884101,-0.008885923,-0.013201747,-0.0015574419,-0.01766189,-0.02170282,-0.022280095,-0.0028039108,0.0023795443,0.008556051,0.015339041,0.0044189086,-0.016067509,-0.014844234,-0.007422117,0.0039412817,-0.014321936,-0.0034980162,0.04623704,0.00632598,0.02234882,0.0058689704,0.038677476,-0.021276735,-0.028396469,0.006741756,0.025276432,-0.016562317,-0.014363171,-0.016974656,0.021620352,-0.014012682,0.031915102,0.017716868,0.01863776,0.026829578,-0.021153033,-0.016287424,0.0009337779,-0.012074685,-0.0010669293,-0.0048278123,-0.010576516,0.00802001,-0.043598063,-0.025839962,0.026925791,-0.006264129,-0.012981832,-0.00018157986,0.061356165,-0.0005635311,0.021840267,-0.008294903,-0.0045288657,-0.003577048,0.0025702517,-0.008329265,-0.015490233,-0.007951287,-0.024616688,0.013352938,0.0017575985,0.017730612,-0.005054599,0.02878132,-0.025510091,-0.01992976,0.0267746,-0.013256726,0.036340885,-0.030952977,-0.028918767,0.011992217,0.010226028,0.0147617655,0.016823465,-0.00021765959,-0.02229384,-0.024108136,-0.017139591,-0.027887916,0.029303618,0.016974656,0.00536729,0.020108439,0.014541851,-0.023242222,0.030348212,-0.0021527575,-0.025510091,0.026114855,0.017441975,-0.0065768203,-0.031420294,0.009387603,-0.0020926245,-0.01737325,-0.013937086,0.050113034,0.007167841,0.002704262,-0.016163722,0.0056902897,-0.00516112,0.0025341718,-0.028698852,-0.008810327,0.032217484,-0.015696403,-0.013696555,0.0267746,0.0022403798,0.026925791,-0.009325752,0.015050404,-0.012040323,-0.005989236,-0.029853404,0.013902725,-0.0044567063,0.024891581,0.022376308,0.001788524,0.010844537,-0.0017679071,0.005298567,-0.0049377694,-0.021785287,0.025262687,-0.019036354,-0.016383637,0.04381798,0.024176858,0.000592309,-0.011119431,-0.015174106,-0.028176555,-0.03076055,0.006133555,0.031860124,-0.030128296,0.0021098054,0.03518633,0.011009473,-0.03284974,-0.0141432565,-0.026376003,0.000999924,0.0012232749,-0.000086763175,-0.031035444,-0.012913109,0.019599887,-0.0048896633,-0.0077657336,0.01203345,-0.011573005,-0.0059170765,-0.006906692,-0.016204955,-0.01642487,-0.02922115,-0.008872178,-0.023860732,0.0039584623,0.0023743901,-0.018912653,-0.030073319,-0.019751078,0.039474666,0.0046250783,0.008129967,-0.024011923,0.011181282,0.00007495136,0.0057383957,0.009951134,-0.013160513,0.004979003,-0.018898908,0.009366986,0.04703423,-0.015792616,0.013655321,-0.005298567,-0.0014199953,-0.011902876,-0.028946256,-0.02229384,-0.00087106787,0.012370195,-0.008913413,-0.0067314478,-0.021565372,-0.0103634745,-0.0009440864,0.034526587,0.010171049,-0.0069616707,0.0009045705,-0.0081643285,0.008700371,0.029166171,-0.021386692,-0.041206494,-0.017235804,-0.0022180446,-0.02553758,-0.032162506,-0.03570863,0.03205255,0.026114855,-0.032767273,-0.014926702,0.010707091,-0.049645714,-0.0347465,-0.013964576,0.01456934,0.045164958,0.010700218,-0.026650898,0.038704965,0.010267261,-0.004250536,-0.026664643,-0.0031337827,0.019709844,0.018747717,0.029358596,-0.008968391,-0.01745572,-0.004302079,0.0049515143,-0.004989312,0.031090423,0.004075292,-0.00050253916,-0.0020565449,-0.0088446895,-0.0069170007,-0.010810176,-0.010686474,0.022568733,-0.027049493,-0.0028090652,0.0072090747,0.025578814,-0.019984737,-0.014995425,0.017730612,-0.0027283153,-0.03164021,-0.016617294,0.014857979,-0.015820105,0.0061610444,0.02922115,0.012370195,0.013332321,0.011483665,0.013428533,-0.019297505,-0.013717172,0.010686474,0.0031286285,0.007587053,-0.0018624016,-0.009250157,0.0059308214,-0.0084735835,0.01439066,-0.0043398766,-0.016452359,-0.00336916,0.018417846,-0.035928544,0.0043570576,0.019806057,-0.035956033,0.0011167537,-0.0040478026,-0.030925486,0.008803455,0.0050271098,0.0060373424,-0.048216272,0.0021974277,0.030650593,-0.02842396,-0.029001234,0.0023262838,-0.009813688,-0.021620352,0.013222364,0.17769098,0.00035371026,0.007154096,0.0204658,-0.005033982,0.003704186,0.013084917,0.009353242,-0.0043364405,-0.0018881728,-0.022706179,-0.0017490081,0.016177466,0.005154248,0.038265135,0.0031543996,-0.040244367,-0.023764519,-0.049315844,-0.010830793,0.006384395,0.003242022,-0.026829578,-0.03694565,-0.0039687706,-0.014349426,0.027461832,0.0017610347,0.024176858,-0.010006113,-0.024822857,0.0047315997,-0.005037418,-0.017689379,-0.017332017,-0.037028115,0.025193963,0.012844386,0.022554988,0.01931125,0.012535131,-0.025894942,0.007339649,-0.014198234,-0.017881803,-0.03491144,0.0067108306,-0.0036526436,0.0065355864,0.0022558426,-0.015462743,0.007861946,0.0473641,0.012349578,-0.0048278123,-0.03205255,0.04337815,0.0067245755,-0.003927537,0.008865306,-0.02149665,0.033372037,0.013449151,-0.0030478786,-0.018032996,-0.0064599905,-0.0031320646,-0.007470223,0.0032677932,-0.017194571,0.02041082,-0.011009473,-0.028946256,-0.0169884,-0.03447161,0.0013641577,0.0042952066,0.009305135,0.0073808827,-0.014541851,0.003492862,0.0031097296,-0.016644785,-0.010164177,-0.025001539,0.016479848,0.012466407,-0.008267414,-0.017744357,-0.011311856,0.006511533,-0.03881492,-0.010067964,-0.017978016,-0.009064604,-0.0047315997,0.00431926,0.011401196,0.009985496,-0.026032388,-0.020589503,0.044477724,0.012280854,-0.0016648221,-0.01887142,0.005992672,0.0032162506,0.00781384,0.033124633,-0.02491907,-0.008446095,-0.024905326,-0.04379049,0.004724727,-0.008459839,-0.001080674,0.006930745,-0.01103009,-0.02780545,-0.02474039,0.022706179,-0.009277646,-0.02131797,-0.0044017276,-0.011992217,-0.014981681,-0.0038794305,0.0068963836,0.0002566386,-0.041233983,0.028698852,-0.001912226,0.023462135,0.0076214145,-0.008769094,0.016589805,0.026197324,0.010184794,0.00078902947,0.0008586118,-0.0036698245,-0.035956033,0.014445638,-0.009002753,0.015558956,-0.016328657,-0.0036629522,-0.008824073,-0.0049618226,0.011229388,-0.028561406,0.0025307357,-0.0347465,-0.009580028,0.041563854,-0.011518026,-0.023255967,-0.02922115,0.022871116,-0.0066592884,-0.04796887,0.022609968,0.028643873,-0.013407917,-0.023998179,-0.015531467,-0.1719732,0.023558348,0.021304224,-0.014583086,0.004449834,0.006965107,0.026554685,-0.0072503085,0.009147072,0.019118823,0.014899213,0.009092093,-0.055336006,0.0048965355,-0.021716565,0.004824376,-0.012500769,0.02875383,0.02190899,0.01704338,0.053054392,-0.012865002,0.0023846987,-0.011401196,0.004137143,0.014665553,-0.0076007973,-0.013909597,0.01223962,-0.025029028,-0.009738092,-0.018239165,0.02108431,-0.02373703,-0.017909294,0.0056662364,0.00011274917,-0.011689834,-0.01397832,0.017400742,0.0054806834,0.016864698,-0.01562768,0.024218092,-0.01288562,0.022829881,0.01742823,-0.008989008,0.0024001615,-0.00039644758,0.028561406,-0.069877855,0.011792919,0.008604158,-0.024960304,0.03686318,0.0051233224,0.038869902,-0.01327047,-0.0218815,-0.032602336,-0.057232767,0.017414486,0.0015686094,-0.02087814,0.022994818,-0.015297808,-0.0029568202,0.018981377,0.005401652,-0.019270014,0.011992217,-0.01388898,-0.0024224964,-0.000686374,-0.0074152444,-0.012260238,-0.0031028572,0.0044429614,0.0055425344,-0.0104871765,0.058497276,-0.009428837,0.026980769,-0.022362564,-0.0032574846,0.03958462,-0.010109198,0.0042264834,-0.03205255,0.038265135,-0.01804674,-0.0055631516,0.0024826294,0.003944718,0.0048209396,-0.0073671383,0.02102933,0.01781308,-0.005429141,0.0010360038,-0.013930214,-0.025262687,-0.0019637684,0.01804674,0.012219003,-0.0044429614,0.016204955,0.041179005,-0.0145143615,-0.026293537,0.020342099,0.011222515,0.011250005,0.00436393,-0.0017868059,-0.028643873,0.004491068,-0.004188685,0.013875235,0.008343009,-0.0023623635,-0.017290784,-0.0033347984,0.024204347,0.004322696,-0.10099577,-0.007133479,0.026870811,0.023475882,0.00000270296,-0.011641728,0.0027489322,-0.0041749408,-0.04379049,0.011469919,-0.033069655,-0.0162187,0.0010480304,0.021194268,0.015737636,0.018115463,-0.022252606,-0.018445335,0.0044807596,0.03317961,-0.0005094115,-0.01368281,0.02002597,-0.018541548,0.0053535453,0.0022317893,-0.0062778736,0.018816441,0.013923341,0.010906388,0.006817352,-0.010061092,0.02049329,-0.016589805,-0.011373707,-0.02618358,-0.03361944,0.007099117,0.023365924,-0.021537883,0.013538491,0.011112559,-0.00051499525,-0.0013229236,-0.0027953205,-0.0036835691,-0.010281007,0.042251088,-0.029358596,-0.008968391,-0.020053461,-0.02474039,0.020988097,-0.032932207,0.020864395,0.0067932988,0.009126455,0.005590641,-0.02368205,0.011325601,-0.03158523,0.007978776,-0.007779478,0.03317961,0.03076055,0.0068242243,-0.03199757,-0.024286816,0.005783066,-0.019448696,-0.008233052,-0.0071403515,-0.018335378,0.005717779,-0.027145706,0.009896155,-0.0015514286,-0.00961439,0.0054325773,-0.046456955,-0.0071472237,-0.025221452,0.017565677,0.0015058994,0.016686019,-0.006016725,0.0005446322,-0.023393413,0.007006341,-0.023572093,-0.0038966113,-0.009799943,0.016644785,-0.02368205,-0.041096535,-0.013339194,-0.0116348555,-0.0077382443,0.0043948554,-0.02069946,-0.034966417,-0.008150584,-0.053769115,0.03570863,-0.0103016235,0.0012335833,-0.008088733,-0.022802392,0.0026905173,-0.012645088,0.0058517894,0.021826522,-0.021482905,0.028478937,-0.01689219,-0.020397076,-0.022032691,0.0034688087,0.0016192929,0.03117289,0.022032691,0.010913261,-0.0014955909,0.00861103,-0.010390963,0.030678082,-0.011937238,-0.0035736118,-0.0011390888,0.018170442,0.0039378456,-0.0445327,0.016094998,0.015531467,-0.0014225724,0.013847746,0.028836299,-0.034719013,0.004446398,0.010975112,0.02834149,-0.021689074,-0.00840486,-0.009758709,-0.0036595159,0.0047693974,0.01020541,0.020781927,0.0033433887,0.020507034,0.00023258543,0.007655776,-0.017854314,-0.0069341813,-0.019654864,0.0010153868,-0.0066249263,-0.02002597,0.004556355,-0.012026578,-0.009531923,0.014074533,0.037825305,-0.011222515,0.027654259,0.01020541,-0.0067245755,-0.015875082,-0.022128904,-0.005384471,0.0009818842,-0.033811867,-0.019943504,0.0056834174,-0.018527802,0.023434646,0.017716868,0.009291391,-0.00224897,-0.002097779,0.0116348555,0.0141432565,0.017208315,-0.014157001,-0.009270774,0.0190501,0.033811867,0.054951154,-0.0184041,0.0028554534,-0.0007585335,0.02875383,0.02244503,-0.00019607617,-0.0024018795,-0.0012172615,-0.0038691221,0.0020909065,-0.0038003987,-0.039777048,-0.0074496064,0.015435254,-0.009758709,0.0028107832,-0.01418449,-0.010658985,0.002458576,-0.00017127136,0.008707243,-0.04700674,0.01902261,0.011573005,-0.005222971,0.020658225,0.0011889131,0.014954191,0.009621263,-0.002743778,0.04131645,-0.017978016,-0.017098358,-0.0036457714,0.015545212,0.03804522,0.023846986,0.01247328,0.03117289,0.024822857,-0.022073925,-0.0049961843,0.0022798956,-0.008652264,0.0032093783,0.023077285,-0.0050786524,-0.023022307,-0.015064148,-0.019833546,-0.016246188,0.005284822,0.005343237,0.06729386,0.015558956,-0.027379364,-0.011737941,-0.004975567,0.032767273,-0.017194571,0.020245885,0.003766037,-0.057342727,0.03650582,0.011655472,-0.0184041,-0.02739311,-0.0022060182,-0.019544907,0.020823162,-0.0035942288,-0.026321026,-0.00008633365,-0.0044189086,0.006683341,0.017153338,0.01309179,-0.017648146,0.0029396394,0.047584016,0.029166171,0.0057280874,-0.020562014,-0.00047032512,0.007532074,-0.032299954,-0.023255967,0.009360114,-0.026705876,-0.020355843,-0.022692434,0.02718694,0.0026716185,0.030650593,0.008734732,-0.03521382,-0.002951666,0.012638216,0.0028039108,-0.004058111,-0.003642335,-0.03722054],"Joining in ms access":[-0.035181124,-0.0037689127,-0.010377465,-0.02610257,-0.039851673,0.028354937,-0.010529465,-0.014951287,-0.012802558,-0.017784016,0.017051652,0.003078003,0.005634369,0.0004603186,-0.010025101,0.014578196,0.028216755,-0.01232583,0.0012073648,-0.030648757,0.0035961852,-0.008145826,0.004242186,-0.0067121885,0.004180004,0.0025822753,-0.009106191,-0.016609471,0.011641829,0.007137098,0.014177469,-0.00019010814,-0.014177469,-0.012166921,-0.00880219,0.0025045478,0.0018050018,-0.003658367,0.015808016,0.01745238,0.041730948,0.0027895481,-0.01691347,0.01071601,-0.0010095919,0.014205105,-0.01278874,-0.0069125523,-0.022233475,0.0073581887,0.00444255,0.0198982,-0.045931682,-0.0006922052,0.008415281,-0.01048801,0.024140386,0.028824754,-0.025508389,0.0011054556,0.013424377,0.0035150035,-0.01982911,-0.010923283,-0.026157843,0.012070193,-0.008014553,-0.012553831,0.0072752796,0.021404384,0.015227651,0.02045093,0.005962551,0.011413829,0.009002554,-0.0055756415,-0.019746201,-0.0069470974,0.009196009,0.002204002,0.0005501369,-0.0069781886,-0.030648757,-0.009023282,0.019317837,-0.00044779587,0.00459455,0.03001312,-0.017701108,-0.033274215,0.016443653,0.036258943,0.006936734,0.0013265468,0.007793462,-0.007565462,-0.0274153,0.022841476,0.0008796145,-0.015752742,-0.024402933,0.009327281,-0.02581239,-0.0010786828,-0.022205839,0.0094171,0.0064876424,-0.015904743,0.025439298,-0.011745466,0.00688837,0.020478565,0.021805111,-0.0012842285,-0.014896015,0.003896731,0.0024458205,-0.0037723673,-0.016125834,-0.0072476435,0.006294188,0.035429854,0.012070193,-0.011275647,-0.004967641,0.023297478,-0.0063978243,-0.010322192,0.0022022747,-0.005520369,0.05798115,0.029045846,0.014246559,0.017701108,0.0027670935,0.03100803,-0.017742563,-0.0034666397,-0.019428382,-0.02702839,0.020782566,0.0104949195,0.0044149132,-0.022164386,0.009403282,-0.010778192,0.014592014,0.00470855,-0.01393565,-0.01102692,0.031450212,-0.018626926,0.0028638209,-0.022067657,0.0028569119,-0.009741828,-0.01623638,-0.005250914,-0.010322192,-0.0186822,-0.00562746,0.01814329,0.013908014,0.008463644,0.013790559,0.030731665,-0.028244391,-0.02173602,-0.01262983,-0.0011374102,0.00558946,0.01140692,-0.0049400046,0.012816376,0.004249095,-0.00467055,0.011337829,0.017687289,-0.023933114,-0.023021113,-0.005710369,0.015642196,0.0088851,0.029266937,-0.013576376,-0.012761103,-0.017493835,-0.0049296413,-0.007064552,0.0043734587,0.002354275,0.025314933,-0.012381103,-0.018184744,-0.6597359,-0.016181106,-0.0072476435,-0.02150111,0.00027506845,0.013624741,0.011213466,0.0005833869,-0.017120743,0.011655647,-0.025508389,0.04051495,0.0020969112,-0.0046498226,-0.0025425479,-0.012512376,0.022924386,-0.03247276,-0.0066949157,0.031118575,-0.014384741,0.023698205,0.0014509105,0.02335275,0.0025719116,0.0059072785,0.0025408205,-0.012698921,0.006062733,0.01370765,-0.021362929,-0.0108196465,-0.012408739,-0.010785101,0.055410963,-0.005596369,-0.023145476,0.017853107,0.010128737,0.033495303,-0.0045047314,-0.018474927,0.004338913,0.0033716396,0.0058278237,-0.010923283,0.017024016,-0.0052543688,-0.00202782,-0.011600375,-0.007296007,0.00075827347,-0.015656015,-0.020188384,0.015172378,-0.002285184,0.0069194613,0.0019621837,0.027470572,0.0073581887,-0.0012056375,-0.0008398872,-0.025010932,-0.03667349,-0.03650767,-0.020188384,-0.006791643,-0.01721747,-0.0013395012,-0.0008282281,0.0073512797,-0.011856011,0.010197828,0.00033595486,0.005136914,0.033108395,0.007012734,0.0018015471,-0.012194557,0.018626926,-0.002399184,-0.023933114,-0.01355565,-0.0070956433,0.02871421,-0.010038919,-0.03830404,-0.0090371,0.004953823,0.021003656,0.0379724,0.009672737,-0.0070058247,-0.009389464,-0.010812738,-0.0032818213,0.0010527738,-0.0066638244,0.012028739,0.015338196,-0.015877105,-0.0137560135,-0.0052889143,0.013306922,0.035927307,0.00071854616,-0.011766193,0.020036383,0.043997135,-0.016706198,0.0042283675,-0.009092372,0.007945462,-0.0058070966,-0.0009897283,-0.026752025,0.023532387,-0.023933114,-0.020243656,-0.025480751,0.0038103673,0.01285783,0.011344738,-0.014550559,-0.013818195,0.015946196,0.01775638,-0.0066361884,0.017286561,-0.00022929568,0.02204002,0.00013094899,0.015946196,-0.016015287,-0.011966557,-0.006328733,-0.0037378217,0.0121323755,0.006629279,-0.016084379,0.00279473,0.008836736,0.013984013,0.0010475919,-0.0015035924,-0.0488335,-0.0275673,0.012940739,-0.021114202,-0.006124915,-0.006308006,-0.030427666,-0.016112015,0.012616012,-0.0066500064,-0.017549107,-0.004135095,-0.021418203,-0.024306206,-0.027429117,-0.02970912,0.008753827,-0.027733117,-0.009665827,0.008898918,-0.027898936,0.008505099,0.007924735,-0.0018792745,-0.008629463,0.027290935,-0.004884732,-0.0038725492,-0.007524007,-0.008512008,-0.0031142756,-0.018723654,-0.005841642,0.022316385,0.012436376,0.01684438,0.005161096,0.013030558,0.0025857298,0.015448743,-0.0013196376,0.0077036438,0.022606567,-0.02871421,0.0379724,-0.0033129123,-0.0054789144,-0.02119711,0.013085831,0.017051652,0.021183293,-0.022067657,0.009513827,0.006788188,0.024444386,0.032113485,-0.015656015,0.009962918,-0.007064552,0.025784751,0.0041765496,-0.027898936,-0.03023421,0.019456018,0.017010199,-0.0043596406,-0.02257893,0.011524375,-0.0088574635,0.036314216,0.01140692,-0.0040936405,-0.00834619,-0.03451785,0.010619283,-0.009375646,0.0033837305,0.021708384,0.009624373,0.020050202,0.014702559,0.0070472793,0.036894582,0.0057276418,-0.009375646,-0.001554547,-0.0027740027,0.018018926,0.001335183,0.025052387,-0.00039144355,0.02013311,0.0039692763,0.027691662,-0.0035201851,0.003468367,0.034821853,0.00009645748,-0.0042214585,0.01515856,-0.015683651,0.009527645,0.0029087302,0.0069160066,0.018765109,-0.014343287,0.011648739,-0.027594935,0.025204388,0.004891641,-0.02143202,-0.018364381,0.02043711,0.031063303,0.020616747,-0.015614561,-0.00405564,0.0019621837,0.00849819,-0.0020917293,-0.00090940995,-0.006062733,0.0035011852,-0.0067363703,-0.011006192,0.004231822,-0.028189117,0.0064738244,-0.02266184,0.006615461,-0.0022368203,0.0025822753,0.02174984,0.020782566,0.0059038238,0.0068227337,-0.030482939,0.026199298,-0.0046463683,-0.015890924,-0.0054927324,-0.01569747,0.007289098,0.00048579593,-0.0039347312,0.016125834,0.009368736,0.008740009,-0.00066284154,-0.016789107,-0.0117523745,0.04256004,-0.0043043676,0.0015087741,0.006653461,0.0019967293,-0.01859929,-0.0124432845,-0.016429834,0.045931682,-0.0070058247,0.004532368,-0.039022584,0.000790228,-0.029736755,-0.011648739,-0.021473475,-0.008436008,0.01859929,-0.0038069128,0.0047396407,0.0036825489,0.0040452764,0.0077312803,0.016858198,-0.0048950957,-0.04676077,-0.010612374,0.020340383,0.055162236,0.006131824,-0.016526561,0.0022644568,-0.012422557,0.008000735,-0.007213098,-0.027622571,0.0016417743,0.0108472835,0.0054029142,-0.014412377,0.020243656,0.0014060014,0.018433472,0.01752147,0.010750555,-0.030178938,-0.003103912,-0.011759284,0.004577277,-0.0019690928,0.018115655,0.01645747,0.030759303,0.017797835,-0.006245824,-0.013680013,0.03001312,-0.03147785,0.018696018,0.009424009,0.017549107,-0.0008623417,0.016277833,0.0036721854,-0.011413829,-0.0027170025,0.022952022,0.009099281,0.018737473,0.019179655,0.009513827,-0.009997464,-0.004791459,-0.012602194,-0.024817478,0.0046498226,0.015808016,-0.004611823,-0.0046498226,0.0065256427,0.013272377,-0.009202918,-0.0073374617,0.016194925,-0.03822113,-0.011531284,-0.01531056,-0.034241486,-0.04195204,-0.000278523,0.04195204,0.0031367303,-0.006522188,-0.0018084563,-0.03667349,-0.008788372,-0.030676393,0.0024751842,0.0045600045,-0.04203495,-0.017258925,0.013203286,0.024168024,0.0027049116,0.017410927,0.009430918,-0.0025425479,-0.007993826,-0.012415648,-0.008056007,-0.0028171844,-0.023615295,-0.041233495,0.017466199,-0.003983095,0.025149114,0.0104949195,0.0147440145,0.0015571378,-0.018350564,0.03650767,-0.019483656,0.032776758,-0.004815641,0.0014802741,0.0016979107,0.011821466,0.018253835,-0.00059288694,-0.03835931,-0.0008269326,-0.023076385,-0.0068261884,0.0026081842,0.009804009,0.01982911,-0.002882821,-0.010736737,-0.010066555,-0.022413112,0.02151493,-0.0062976424,0.020464746,0.018405836,0.030455302,0.020077838,-0.0017497289,0.001447456,-0.0009327282,-0.042781133,0.028797118,-0.0104811005,0.016637107,0.004601459,0.0037378217,-0.054858234,-0.0048501864,-0.016429834,-0.0010242737,0.027456753,-0.015352014,-0.020506201,-0.015517833,-0.012422557,0.021901838,0.035429854,-0.019110564,-0.016360743,-0.021307657,-0.0074549164,0.02235784,0.014398559,-0.017258925,-0.020506201,-0.0101011,-0.016706198,-0.004135095,0.032583304,0.022703294,-0.016498925,0.003311185,-0.00083254627,-0.019456018,-0.002259275,-0.01087492,0.0047430955,0.030869847,0.03222403,0.03368876,-0.0027619118,0.026351297,-0.012063284,0.01622256,0.006898734,0.016858198,-0.013825105,0.013410558,0.0049020047,0.009437827,0.008774553,0.024983296,0.0006991143,-0.0084912805,0.02572948,-0.017618198,-0.01723129,-0.009161463,-0.031063303,-0.007772735,-0.0075378255,0.0050194594,-0.0041178223,-0.039298948,-0.01193892,0.014785469,0.00872619,0.008753827,0.0001371024,0.03338476,0.003952004,0.020174565,0.0000030176698,-0.003387185,-0.011123647,0.02082402,-0.013528013,-0.004238731,0.019027654,0.011427647,0.013286195,0.009403282,0.0046636406,0.022965841,0.009244372,-0.0180742,-0.01263674,0.00865019,-0.007904008,-0.008304736,-0.0030296394,0.001142592,0.0042940043,0.011227284,-0.0055687325,0.000104823965,0.004072913,0.018240018,-0.002404366,0.00639437,-0.026392752,0.040763676,-0.00486055,-0.0085189175,-0.0013740468,0.02021602,-0.01745238,0.0046463683,-0.0104949195,-0.010087282,0.02603348,0.026779663,0.020146929,-0.0012013194,0.018502563,-0.010246192,0.0021573657,-0.011669465,0.013058194,0.012616012,0.0053614597,-0.0274153,-0.016125834,-0.031560756,0.025328752,-0.01385965,-0.002694548,0.008097462,-0.0198982,-0.0062734606,0.012926921,-0.026240753,0.02581239,-0.012014921,-0.012256739,0.011731648,-0.01615347,0.0040314584,0.007834917,-0.0069021885,0.037557855,0.0088436445,0.025301116,0.02045093,-0.013486559,-0.018544018,-0.009582918,0.006674188,0.027746936,-0.0088436445,-0.00658437,0.009700373,0.03252803,0.011987284,0.0021867293,-0.0075378255,-0.026696753,0.008553463,-0.010923283,-0.0038103673,-0.013873468,-0.013479649,-0.0065532792,-0.0034010033,-0.013348376,0.025176752,0.022192022,0.0011659102,-0.0074618254,-0.02013311,-0.019773837,-0.014674923,0.00532346,-0.008795281,0.011213466,0.019925836,0.011973466,-0.017728744,-0.012622921,-0.016678562,0.016623288,-0.011676375,0.034490217,-0.03764076,-0.026365116,0.012830194,-0.0076967347,-0.005174914,-0.0018015471,0.0108472835,0.016264016,-0.0096451,-0.009258191,0.0016158652,0.0035892762,0.027042208,0.010453464,0.0014336377,0.030178938,-0.0030503666,0.012560739,-0.007848735,0.0016141379,0.017701108,-0.022703294,-0.0066396426,-0.008449826,-0.032638576,-0.000702137,-0.014978924,0.022938203,-0.01431565,-0.0028741846,-0.005679278,-0.014937469,-0.02342184,0.024596388,0.014370923,-0.0051196413,0.030731665,0.010771283,-0.00275673,0.020644384,-0.01882038,0.0033733668,-0.013479649,-0.013237831,-0.016250197,-0.0031954576,-0.020340383,0.0121323755,0.009907646,-0.012270558,-0.023256022,-0.01217383,-0.033661123,0.00057993236,-0.0070956433,0.0051092776,0.029211665,0.01018401,-0.008525826,0.024679296,0.007917826,-0.018088017,-0.03559567,-0.00558946,-0.004345822,-0.016526561,0.03230694,-0.010329101,-0.03650767,-0.0068469155,0.0015588652,-0.010128737,0.012512376,-0.010349828,-0.0053752777,-0.023601478,0.0035236396,-0.017866926,0.0070058247,0.012574557,0.014868378,-0.023919296,-0.014868378,0.030096028,-0.009969828,-0.0057690963,0.011096011,0.02067202,-0.0018620018,-0.01622256,-0.0067398245,0.0039347312,0.019096745,-0.012305102,0.010543283,0.019718565,-0.015531652,0.036176033,-0.0012255012,0.011856011,0.0062872786,0.0071716434,-0.02389166,-0.013189468,-0.0049365503,-0.020934565,0.00030076166,-0.018474927,-0.01721747,0.0004918414,-0.010626192,-0.008719281,0.01730038,0.0022178204,-0.0018740927,0.021114202,-0.024181841,0.0051714596,0.014550559,-0.0012134103,0.005848551,-0.016098198,-0.015559288,-0.007137098,-0.0464015,0.026309844,-0.0022057295,0.021390567,0.0026340934,0.0037758218,0.0186822,0.016015287,0.23170349,-0.015379651,0.005810551,0.0060109147,-0.006957461,0.028382573,0.012830194,-0.0010752283,0.017797835,0.03062112,-0.035346944,-0.009382554,0.011634921,-0.0016383198,0.006688006,-0.004881277,-0.024679296,-0.018723654,-0.024997115,-0.0127403755,-0.0046360046,-0.0047672773,-0.008712372,-0.018322926,0.012609103,-0.0011667738,0.01684438,0.024610205,0.026959298,0.0016029106,-0.011607284,0.0153934695,0.0010536374,0.0003720117,-0.008187281,-0.0068710977,0.006415097,-0.03775131,0.008387645,0.0068020066,0.0037274582,0.0042525497,-0.0076898257,-0.008781463,0.0021331839,-0.021846566,-0.0032196394,0.0046636406,-0.005382187,0.0050712777,-0.022316385,-0.01193892,-0.0019915474,0.010052737,0.010854192,-0.010923283,0.011814557,0.0026030026,0.0011987285,0.0033129123,-0.0060523693,0.018392017,-0.014481468,0.0040832767,-0.020340383,-0.0008860918,-0.02150111,0.013749104,-0.0045565497,-0.009886919,-0.015144742,0.004815641,-0.0011581375,0.0008493872,-0.034490217,-0.015766561,0.014564377,0.036314216,0.014329468,0.02343566,-0.01829529,-0.0005471142,-0.018115655,-0.00957601,-0.042615313,-0.023698205,0.011123647,-0.0036687308,0.0022644568,-0.009658919,0.001988093,-0.006294188,-0.008774553,-0.041012403,-0.0009163191,0.0019190018,-0.0020001838,0.013182558,-0.031201484,-0.0052820053,-0.049883686,0.061960787,0.011379284,-0.010895647,-0.013410558,-0.0027221844,0.0041109133,0.01086801,0.0153658325,-0.028907664,-0.0027912755,-0.02679348,-0.01392874,-0.0071716434,-0.0045358227,0.0034148213,0.00903019,0.00014444331,0.010854192,-0.002518366,0.008159644,-0.035374578,0.010246192,-0.004967641,-0.00037676172,0.01806038,-0.0104811005,-0.0061663697,0.004694732,-0.06671425,0.011220374,-0.015642196,0.002071002,-0.028852392,0.012678194,0.012263648,-0.010902556,-0.026821116,-0.008242553,0.022717113,-0.0021245475,-0.03031712,0.000072545525,0.014799287,0.010094192,-0.02657239,0.007834917,-0.0032507305,-0.0027118209,-0.0088851,0.0059521873,-0.008822918,0.021929476,-0.018889472,0.03764076,-0.0060040057,-0.014633468,-0.017134562,-0.013037467,0.016291652,-0.013251649,0.008974918,0.032555666,-0.027083663,-0.005499642,-0.017977472,-0.1793049,0.010363646,0.017162198,-0.017632017,0.027221844,-0.00041670495,-0.00034243215,0.023919296,-0.018654563,-0.0018516382,0.015794197,0.0030037302,-0.030040756,0.0075585525,0.02250984,0.013493467,0.004487459,-0.007793462,0.04676077,0.030925121,-0.00029320482,-0.014453832,0.014550559,-0.006881461,-0.0016702743,-0.0065394607,0.01416365,0.010052737,-0.022800023,-0.0153658325,0.008864372,-0.010287646,0.008567281,-0.0051990957,-0.0075378255,-0.0002461366,0.0180742,-0.01569747,0.008228735,0.014343287,0.004694732,0.0189862,-0.021045111,0.006729461,0.028216755,0.028576028,0.02541166,-0.033799306,0.0023905477,0.034213852,0.032776758,-0.028520755,0.010225465,0.009983646,0.0005047959,0.025826206,-0.016568016,-0.014260378,-0.019331655,-0.018129472,0.016581833,-0.014191287,0.020589111,-0.0005155914,-0.011662557,-0.01615347,-0.00012749444,0.0056309146,-0.024085114,0.017618198,-0.0062907333,-0.010052737,-0.021031292,-0.01699638,0.010045827,0.007413462,0.0040141856,0.018709837,-0.0025701842,-0.009962918,-0.013251649,0.037088037,-0.014426196,0.020561473,-0.013210194,0.00685037,0.011462193,-0.008256371,-0.0055514597,-0.018433472,0.031146212,-0.025909116,-0.013148013,-0.00014725015,0.026779663,0.014129104,0.0046049133,0.004967641,0.008919645,0.0036376398,-0.00058209145,-0.012291284,-0.0063425517,0.019538928,0.022606567,0.000014371462,0.018668381,-0.009472373,0.04479859,0.0078418255,-0.032804396,0.023601478,0.012242921,0.030455302,0.032196395,0.016899653,0.0022420022,0.0011641829,-0.014384741,-0.0050090957,0.037917126,-0.008995645,0.02013311,-0.013534922,0.011973466,0.020381838,-0.089154996,-0.030980393,0.027760753,0.018626926,-0.012028739,0.009057827,0.0057449145,0.024845114,-0.029626211,0.01799129,-0.0121047385,-0.022261113,-0.031367302,-0.02052002,0.0028033664,0.008228735,-0.011545102,0.0007500689,-0.00887819,0.025909116,-0.011545102,-0.0019777291,0.0025442753,-0.03758549,-0.03169894,-0.014115286,-0.022965841,0.024568751,0.022758568,-0.0023266387,0.010985465,-0.022938203,-0.0011788647,0.0077381893,-0.02043711,-0.033108395,-0.039934583,-0.006142188,0.017410927,-0.0051645506,-0.00796619,0.0038932764,0.031643666,-0.028852392,0.004953823,0.0041903676,-0.008235645,0.018198563,0.031284392,-0.015020378,-0.008601827,-0.00009726714,-0.009272009,-0.018350564,-0.002221275,0.016526561,-0.007973098,0.028354937,-0.0355404,0.013521104,0.022827659,-0.027346209,0.010287646,0.027069844,0.013914922,-0.015669834,-0.0038380036,0.006031642,0.0009327282,-0.0032403667,-0.017272744,-0.0016365924,-0.029184029,-0.0073789163,-0.024485841,0.023104021,-0.017438563,-0.039326582,0.012028739,-0.012139284,-0.0014802741,-0.020810202,-0.02979203,-0.012885467,0.018502563,0.01584947,-0.0025270025,0.0068227337,0.015794197,-0.026931662,-0.008353099,0.0061767334,0.029681483,0.013044376,-0.017853107,0.0062838243,0.0026444572,0.0070714615,0.0042905496,-0.013327649,-0.0040072766,-0.0077381893,-0.06444806,0.014522923,-0.016139653,0.005057459,0.0060212784,0.005789824,-0.016264016,-0.011400011,-0.010253101,-0.010736737,-0.019994928,0.01654038,0.00030076166,-0.001318774,-0.008284008,-0.012312012,0.032251667,0.013445104,-0.004408004,0.013984013,0.0016607743,-0.022371657,-0.00015459106,0.02313166,0.0059210965,0.012001103,-0.003494276,0.0011883648,-0.021017475,0.004166186,0.0018654563,-0.013880377,-0.011192738,0.029681483,-0.02281384,-0.0274153,0.011600375,0.016042925,0.004342368,0.0043734587,-0.012837104,0.0007181143,0.021376748,0.0024406386,0.01385965,-0.008353099,0.004815641,-0.0077589164,-0.024181841,-0.025784751,0.02257893,0.009500009,0.0036894581,-0.008125098,-0.007517098,-0.0059072785,-0.0032576395,-0.0072614616,0.00020522179,-0.027304754,0.033965122,-0.019234927,0.005979824,0.0117523745,-0.028962936,-0.011987284,-0.008581099,0.004867459,0.0049400046,-0.0191382,-0.010985465,0.007026552,-0.0037792763,0.019096745,0.030731665,0.0063840062,0.005257823,0.013610922,0.0032248213,0.0069090975,0.030897485,-0.021943294,-0.038497493,-0.003758549,0.032970212,0.027512027,-0.006069642,0.0117938295,-0.005212914,0.0015899561,-0.001202183,0.017134562,-0.015227651,-0.006225097,-0.007226916,0.017977472,-0.016581833,-0.0006300233,0.0098592825,0.034048032,0.0031850939,0.0054478236,-0.021169474,-0.0274153,-0.018101836,0.028354937,-0.02579857,-0.034711305,-0.011123647,0.022565113,0.0057138237,0.0022022747,0.0063356427,0.02333893,-0.015117105,0.0032248213,0.014882196,-0.04032149,-0.008968009,-0.008249463,0.0101563735,0.018571654,0.020989839,-0.011386192,0.024002206,0.038027674,0.013002922,-0.029819665,0.0019725473,-0.007413462,0.01591856,-0.006950552,0.0054478236,-0.034794215,-0.01645747,-0.01531056,-0.006425461,0.003582367,-0.020064019,0.07937171,0.0060730968,-0.011234192,-0.0023387296,-0.0018810018,0.019815292,0.013984013,0.00083254627,-0.015269105,-0.02993021,0.029488029,0.009002554,0.003976186,-0.03844222,-0.0035650944,-0.0056378236,0.0055238237,0.0025701842,-0.024596388,0.00057863694,0.017673472,-0.0049883686,0.009147645,-0.0043734587,-0.02197093,0.0016426379,0.002606457,0.00024807977,-0.005219823,-0.03507058,0.008933463,-0.0010726374,-0.044660408,-0.0027342753,0.0037240037,-0.016360743,-0.0056412783,-0.029488029,0.017963653,0.016554197,-0.019234927,0.0029536393,-0.027263299,0.006069642,0.0121185575,0.015421106,-0.03819349,-0.001038092,0.0034528214],"select PS.Event_ID, PS.Event_Type, PS.Event_Incharge, PS.Event_Date, PA.Customer_ID\nfrom (Product_AMC PA\ninner join Payment_Schedule PS on (PS.Event_Type='AMC' and PS.Event_ID=PA.AMC_ID))\nwhere PA.Customer_ID = 'ABC'\nunion all\nselect PS.Event_ID, PS.Event_Type, PS.Event_Incharge, PS.Event_Date, IO.Customer_ID\nfrom (Item_Order IO\ninner join Payment_Schedule PS on (PS.Event_Type='Order' and PS.Event_ID=IO.Order_ID))\nwhere IO.Customer_ID = 'ABC'\n":[-0.008377108,-0.015424089,0.0018104495,-0.024842456,-0.049093746,0.019118885,-0.00038795345,-0.011386686,-0.013509514,-0.052130196,0.0072552334,-0.0003829151,0.001168059,-0.016902007,0.00024561989,-0.0007733877,0.008712998,0.006079617,0.01971005,-0.017157285,0.010244658,0.0030851536,0.020274347,0.023216747,0.024049755,0.003390814,0.004504291,-0.020032506,0.00033043223,0.024237854,0.011306073,-0.006570017,-0.018621765,-0.026777185,-0.012609327,0.01774845,0.007947167,0.000984159,0.034556407,0.020381832,0.017533481,-0.0006818576,0.003933277,-0.0126227625,0.0018440385,0.022665886,-0.017976856,0.001548455,0.002934003,0.028322281,-0.009572878,0.00074021856,-0.021792572,-0.017251333,0.002930644,0.015571881,0.021483552,0.03154683,-0.01566593,-0.030122655,0.010385732,-0.007490357,-0.008840636,-0.016834829,-0.028590994,0.0025158194,-0.013825251,-0.008901097,0.004994691,0.018984528,0.022020977,0.041596673,-0.014161141,0.013348286,0.008276341,-0.054978546,0.0007738076,0.006496121,0.009720669,0.005656395,0.011245612,-0.02155073,-0.01563906,0.0070201103,0.013348286,0.0049678194,-0.013798379,0.025299268,-0.024479695,-0.008712998,0.047884542,0.021846315,-0.019212933,-0.016324276,-0.002577959,0.028994063,-0.014026784,0.029665845,0.0013830289,-0.003108666,-0.0018070906,0.01578685,-0.01860833,0.0044505484,-0.00606954,0.02173883,-0.015168812,-0.011171716,0.0059889266,0.0020925975,-0.012434664,0.039715685,0.052694492,-0.033830885,0.014497031,-0.011796473,-0.009646773,-0.009707234,-0.014926971,-0.00309691,0.007416461,0.025621723,0.0026434578,0.016498938,0.016391454,0.008632384,-0.020005634,-0.03025701,0.007792658,-0.0006033432,0.027543016,-0.0074231788,0.019629437,0.009640056,-0.022370303,0.0018440385,-0.027139947,0.008901097,-0.049040005,-0.014967278,0.013301262,0.008141984,0.014738873,-0.01946821,-0.013811815,0.035819355,0.027113076,0.008719716,-0.0026904824,-0.0028953755,0.029773328,0.022303125,-0.027045898,0.0014602836,0.015021021,-0.026118841,-0.009438521,0.012286873,0.009035453,-0.016391454,0.0007078891,0.011440428,-0.010022971,-0.004070992,0.01162181,0.025326138,0.008551771,0.02001907,-0.0046117757,-0.00054246304,0.005985568,0.0048972825,-0.011937547,0.006012439,0.024734972,0.0022454276,0.008068088,-0.021779137,-0.028617866,-0.026226325,0.03307849,-0.012844451,0.027207125,-0.011104538,-0.027233997,-0.0136035625,-0.011050795,-0.035846226,0.019011399,-0.02226282,-0.013664023,0.017009491,-0.019280111,-0.019508516,-0.60406536,-0.0033756988,0.01618992,-0.029853942,0.014013349,0.01287804,-0.006892472,-0.009122784,-0.013878993,0.01082239,0.0091362195,0.02422442,0.029235903,-0.0013057741,0.0059452606,-0.024170676,0.0227465,-0.034260824,0.0072753867,0.016351147,-0.00002201657,0.005380965,0.011870368,-0.0057000606,0.013684177,0.01533004,0.004225502,-0.0004328788,-0.0073963073,0.014953842,-0.015155377,0.005545551,0.031063149,0.0022219152,0.03589997,0.04065618,-0.008168856,0.02829541,0.015894335,0.06218004,-0.01674078,-0.026132276,0.004531162,-0.005928466,0.021228276,0.013408747,-0.0064490964,0.014658259,0.0015568521,-0.005787392,-0.03173493,-0.017103542,-0.03393837,0.010365579,0.024506567,-0.01860833,0.011178434,-0.0037686906,0.02329736,0.022665886,-0.0026098688,0.004245655,-0.016539246,-0.0013477604,-0.0037250249,0.011729294,-0.0038190742,-0.010600702,-0.001695407,-0.00021045635,0.022343433,0.012058467,0.0031237812,0.017157285,0.007974039,-0.005616088,0.030042041,0.02437221,-0.03307849,0.024949942,-0.019951893,0.00010438845,-0.01600182,-0.0138655575,0.0047562085,0.021846315,-0.048878778,-0.0048972825,0.0035738742,-0.0018557947,0.01621679,0.024318468,-0.005485091,0.010439475,-0.017802194,0.006848806,-0.014120834,0.0021900057,-0.020717721,-0.043423917,0.006079617,-0.010970182,-0.01290491,0.0014090604,0.048690677,0.015961513,-0.004715902,-0.028214797,0.036652364,-0.011756165,0.0039232005,-0.018097777,0.01640489,-0.019226369,-0.010184198,-0.037297275,0.0061770254,-0.00044673428,-0.010721623,-0.021604473,0.0072753867,-0.0025645236,0.0016777727,-0.00858536,0.016472068,0.048287608,0.0065263514,0.015504703,0.025769515,-0.0016282289,0.000019549872,-0.014738873,0.006872318,-0.017708143,-0.017520046,-0.006872318,0.012206258,0.023713864,-0.0077389157,-0.032567937,0.011937547,0.0006054425,0.0017516686,-0.007302258,-0.016687037,-0.021187969,-0.03399211,-0.0021312248,-0.020731159,-0.007853119,-0.026293503,-0.034637023,0.00077086856,0.010352143,0.009633338,-0.01413427,0.0039500715,-0.015504703,-0.021322325,-0.028080441,-0.006613683,0.0019565618,-0.028241668,-0.01131279,0.018554589,-0.038802065,-0.025984485,0.010419321,-0.0019263317,-0.010600702,0.011339662,0.001435092,0.013220647,0.008377108,0.00582434,0.0076448666,-0.0126227625,-0.0065129157,0.0061669485,0.00096064666,-0.009378061,-0.002087559,0.006140077,0.0029575154,0.005411195,-0.012817579,-0.0015005906,-0.000809496,-0.05702076,0.0376466,-0.0061568716,0.020274347,-0.008914532,0.0062408443,0.010493217,0.027153384,0.008598795,0.015437525,0.016055563,0.017896242,0.019750359,0.008437567,0.0123943575,0.0025527673,-0.005760521,-0.001517385,-0.010009535,-0.019696616,0.034099597,0.013025831,0.007812812,-0.029047806,-0.016942313,-0.02090582,0.02044901,0.023109263,-0.024479695,0.016270533,0.004850258,0.010788801,0.019871278,0.0054078363,0.018568024,0.004594981,0.0020925975,-0.0008283898,0.024560308,0.02173883,0.021295454,-0.022020977,-0.016781086,0.008934686,0.010237941,0.022450916,0.04025311,0.0039198413,0.022276254,-0.009116067,0.031654313,-0.022544967,0.0030297318,0.024640923,0.013825251,-0.005868006,-0.0018658714,-0.013267673,0.013052703,0.020059377,-0.02207472,0.015827157,-0.016781086,0.00781953,-0.03087505,0.0050484333,0.014779179,-0.016176483,-0.026992155,0.024976812,0.03638365,0.0061703073,-0.005206302,-0.029638972,0.02032809,0.007208209,-0.010526806,0.012186105,0.009519135,-0.02044901,0.00018379505,-0.0335353,0.010110302,-0.008807047,-0.009008582,-0.023498895,0.016902007,-0.0040306854,0.013892429,0.008867508,0.021832878,0.015854029,-0.024533438,-0.022491224,0.017694708,0.016351147,0.00040327845,0.0010496576,0.0059486195,0.0038795345,-0.033642787,0.0006411309,-0.008014346,0.028456638,0.02482902,-0.009720669,-0.038479608,0.014967278,0.042375937,0.024452824,0.012313743,-0.00015104574,-0.020274347,0.027596759,-0.025326138,0.0017651042,0.065297104,0.0047696442,-0.012192823,-0.027287738,-0.011668834,-0.01260261,-0.012669788,-0.02504399,-0.013758073,0.017735016,0.012911629,-0.036061198,-0.01707667,0.0077523515,0.007342565,0.022397174,-0.007557535,-0.03893642,-0.018070906,-0.0010496576,0.022168769,0.016337711,-0.01741256,0.016028691,-0.020798337,0.00045723087,-0.0198041,-0.021026742,0.018379925,0.0136035625,-0.009102631,-0.012837732,0.011440428,-0.02023404,0.014967278,0.010325273,-0.017909678,-0.017425995,0.009505699,0.00095476856,0.00481331,-0.026118841,0.0022034412,-0.0020674057,0.020489316,0.01903827,0.042510293,-0.0028063646,0.013207212,-0.041704156,-0.015424089,0.01523599,0.015276297,0.011379968,0.004215425,0.016485503,0.009236987,-0.002443603,0.004675595,0.0036074633,0.007960604,0.023377975,-0.0035570797,-0.024708102,0.0064356606,-0.011091102,-0.01554501,-0.00022399693,0.012911629,0.011238894,-0.003424403,0.0037451785,-0.011749447,-0.005092099,0.013522949,-0.014228319,-0.027220562,-0.02535301,-0.024264725,-0.021698521,-0.00929073,0.011279201,0.05938543,-0.005018203,0.005864647,-0.017452868,-0.031493086,-0.019145755,-0.015182248,0.01597495,-0.014067092,0.0021614549,-0.026535345,0.0042053484,0.00766502,0.000066023465,0.02504399,0.0017105221,0.025070863,0.011709141,-0.007832965,-0.038398996,0.0061971787,-0.015504703,-0.04326269,0.01413427,-0.011393404,0.014013349,-0.0031724852,0.011353097,0.0065263514,-0.0319499,0.016713908,-0.008726434,0.03415334,0.02324362,0.010264812,0.010311836,-0.008746587,-0.0064155073,-0.008451004,-0.016821394,0.006277792,-0.0149000995,-0.03068695,0.0001971257,-0.0034344797,-0.008988428,0.017654402,-0.0038190742,0.015289733,-0.029289646,0.0011949303,-0.014940407,0.019616002,0.0057067787,-0.00041986306,0.0012503521,-0.010909721,0.0050349976,-0.02075803,-0.023982577,0.03627617,0.025326138,-0.022437481,-0.0021446606,-0.009183245,-0.04197287,0.029182162,0.0011814947,0.0010034727,0.0074298964,-0.002250466,0.0131131625,-0.0358731,-0.016525809,0.025097733,0.031063149,-0.003896329,-0.010499935,-0.0019044988,-0.032971006,0.012562303,0.009001864,0.011950982,-0.026360681,-0.01836649,0.010923157,0.025608286,0.01162181,0.02403632,-0.005787392,-0.0026132276,-0.0050383564,-0.036867335,-0.030606337,-0.012918347,-0.013758073,0.051216573,0.045385517,0.03565813,0.012421228,0.010486499,0.0026350606,-0.0011134768,0.020919256,0.0008783535,-0.010284965,0.00083132886,0.014765744,0.010103584,-0.010540242,0.018688943,0.014967278,-0.001639985,0.021228276,-0.011977853,-0.006670784,0.008854072,-0.03348156,0.016122742,0.0104663465,-0.02400945,-0.010923157,-0.04570797,-0.002094277,-0.015437525,-0.00880033,-0.00086071924,-0.017251333,0.0319499,-0.014779179,0.029827071,-0.022800243,0.0044404715,-0.0014401303,0.013973042,-0.030606337,0.0112724835,-0.013784944,0.02262558,0.04264465,-0.011480736,-0.0019800742,-0.011124691,-0.003308521,-0.025917307,0.0061568716,0.008854072,-0.009855025,-0.0032043948,-0.015343475,0.0115008885,-0.004457266,0.024506567,0.010829108,-0.008168856,-0.010661162,-0.015800286,-0.029343389,0.011386686,-0.0456811,0.048314482,0.01609587,0.01358341,0.04130109,0.012898193,0.0026014715,-0.004594981,-0.011514325,0.0031103455,0.019387595,0.015598752,0.018715816,-0.023633251,-0.00005647158,-0.004594981,-0.03442205,-0.013650588,0.037351016,0.007557535,0.0067043733,0.004984614,-0.0067513976,-0.02829541,0.0115008885,-0.007832965,0.016512373,0.01958913,-0.020731159,-0.023955707,-0.008323365,-0.033615917,0.012515278,-0.010728341,-0.032272354,0.0057067787,0.007201491,-0.020422138,-0.01348936,-0.009116067,0.0020808412,0.000358773,0.011789754,0.029531488,-0.0049678194,-0.017103542,-0.026159147,0.013664023,0.02937026,-0.005135765,-0.021013306,0.013529667,0.002321003,0.021402938,-0.020341525,-0.018500846,-0.02851038,-0.025917307,0.0016618179,0.0035268497,-0.0021329043,0.0123943575,-0.0012427947,-0.0072753867,-0.029397132,-0.005155918,0.0072955405,-0.008377108,-0.0031556906,-0.015464396,0.012360768,0.01624366,-0.0044774194,0.009881897,0.011561349,0.0158809,-0.004531162,-0.021711959,-0.016713908,-0.006230768,-0.00075071515,-0.02623976,-0.020368395,-0.01870238,-0.0058545703,0.001968318,-0.023955707,-0.0012797426,0.011285919,0.027462402,0.016015256,-0.0049040006,-0.007033546,0.019145755,0.009693798,0.017009491,0.008652538,0.012575738,-0.016458632,-0.0117628835,-0.0069394964,-0.007550817,-0.013019114,0.017493173,-0.0056664716,0.011030642,-0.008457721,-0.03743163,0.00021496988,-0.022800243,0.020932693,-0.025178347,-0.015424089,-0.013502795,-0.008377108,-0.0068286527,0.019320417,0.010372297,-0.014859793,0.013019114,0.010237941,0.014953842,0.014994149,-0.025218654,-0.0002810983,-0.009230269,-0.020126555,-0.027045898,-0.011702423,0.00074105826,0.02087895,0.019387595,-0.0207849,-0.03893642,0.0011907317,-0.03474451,-0.0012772233,-0.011453864,-0.0009178206,0.018688943,0.0037518963,-0.033642787,0.023579508,0.0017298358,-0.0072753867,-0.05874052,-0.012273436,0.017976856,-0.015571881,0.009250423,0.006257639,-0.020677416,-0.005972132,0.018514281,0.019239804,0.024116933,0.037565988,-0.021752264,0.008887661,0.016834829,-0.00055170007,-0.010244658,-0.014161141,0.015598752,-0.036491137,-0.029800199,-0.011917393,0.008007628,-0.009794565,-0.006173666,0.014994149,-0.012239847,-0.011467299,-0.008195727,0.0031724852,-0.005545551,0.0064591733,0.024533438,0.027543016,-0.0043027564,0.029020933,0.0046991073,0.007933732,-0.0207849,0.009579595,0.009525853,-0.030095784,0.011877086,0.001008511,0.00091446174,-0.022397174,0.0036343345,0.020072812,-0.027072769,-0.027543016,0.027247433,-0.020596802,0.011930828,-0.01956226,-0.027731115,-0.0027576606,0.0060728993,-0.048233867,-0.0073224115,-0.028644737,-0.009552724,-0.028805964,-0.019172626,0.021255147,-0.025688902,-0.018232133,-0.012616045,0.007732198,-0.009384779,0.04718589,0.1820795,-0.0042691673,-0.0014057015,0.0055287564,0.004175118,0.023673559,-0.0017634248,0.0045849043,0.00010459838,-0.008719716,-0.0067984224,0.006066181,0.022692759,0.0008451843,0.019844407,-0.0031321784,-0.008565206,-0.023525767,-0.042752136,-0.014402982,0.016673602,-0.0055018854,-0.000027920893,-0.014214884,0.01762753,-0.010768647,-0.0022269536,0.0040206085,0.05006111,0.0053843237,-0.03482512,0.028376024,-0.005904954,0.014188012,-0.003939995,-0.002317644,0.01088285,-0.019992199,0.03173493,-0.018554589,0.02035496,-0.0072149266,0.002228633,-0.009250423,-0.013892429,-0.023163004,-0.009861743,0.0009766015,-0.016418325,-0.010190916,-0.051861484,-0.0027727755,0.010009535,-0.0025578057,-0.00073937885,-0.00968708,0.028832836,-0.0032178303,-0.0045210854,-0.008444286,-0.0012990562,0.0335353,-0.026696572,-0.0005252487,0.01934729,-0.010090149,-0.014859793,-0.011091102,0.01511507,-0.0022387097,-0.009989382,-0.021953799,-0.014994149,-0.012118927,-0.008988428,-0.012689941,0.009169809,0.022047848,0.01600182,0.012555584,0.0016870097,-0.0063113812,-0.018339617,0.0032245482,-0.03289039,0.0012243206,0.037995927,-0.0060527455,-0.029719586,-0.011440428,0.0017499892,-0.0041280934,-0.0227465,-0.027354917,0.013737919,0.002339477,0.011668834,0.007141031,-0.014940407,0.0069798036,-0.002707277,0.044015083,0.006986521,-0.011789754,-0.034529537,0.005716855,0.025393317,0.028161054,0.0354969,-0.011903957,0.0021480194,-0.01750661,-0.027731115,-0.0110104885,-0.009022017,-0.0001621721,-0.0010370617,0.00006046028,-0.021685086,-0.029424002,0.020489316,-0.015303168,-0.0003344209,0.004675595,-0.00049375894,0.03068695,0.007866554,-0.0072216443,-0.0050383564,-0.037512243,0.022047848,-0.025688902,0.026844364,-0.017063234,-0.0056396006,0.014188012,0.015289733,-0.01115828,-0.00010202672,0.01934729,0.005451502,0.0034160058,-0.011285919,0.014429853,0.02339141,-0.011910675,0.016807958,-0.023539202,-0.016176483,-0.028671607,-0.02731461,0.008229316,0.00156357,-0.020744594,0.045976683,-0.006815217,-0.03286352,-0.049469944,0.010983617,0.019118885,-0.013133316,0.006677502,0.030606337,0.0011411877,0.00254437,-0.0013250877,-0.16789147,0.010365579,0.03044511,-0.034260824,0.021013306,0.003691436,0.034233954,0.0037149482,-0.0077859405,-0.0023797837,0.035335675,-0.0040945043,-0.039258875,0.0018541153,0.021402938,0.006966368,0.00070830894,0.03724353,0.011917393,0.008901097,0.04073679,0.007584406,0.0021547372,0.017520046,0.012703377,0.023310797,-0.0149000995,0.00047780416,-0.01358341,-0.028080441,-0.0008985069,0.0010152288,0.0042087073,-0.009122784,-0.025312703,0.013590127,-0.0017986933,-0.0051122527,-0.012280154,0.011420275,0.0066607073,0.011359815,-0.007026828,-0.0020119837,-0.005767239,0.017587224,0.0376466,0.013334851,0.032997876,0.019360725,0.021416374,-0.042349067,0.0041012224,0.0028852988,-0.011688988,0.032621678,-0.011695705,-0.011749447,-0.013932736,-0.0071007237,0.016310839,-0.026065098,-0.0026602524,0.017990291,-0.027596759,0.008780176,-0.0055052442,0.019871278,-0.024748407,0.010137173,-0.00880033,-0.0035100551,-0.01005656,-0.04414944,0.022961471,0.0018927426,-0.024869328,0.012360768,0.012058467,-0.007476921,-0.010802236,0.04965804,-0.0012092056,0.035577517,0.0054649375,0.0119912885,-0.0014149385,-0.021617908,-0.015518138,-0.01468513,0.03178867,-0.033212848,-0.008786893,0.008148702,0.04482122,0.003691436,-0.010916439,-0.02544706,0.023579508,-0.00041545447,-0.0032228688,0.0017718221,-0.022585273,0.04608417,0.021698521,0.019118885,0.00643902,0.0055724224,0.036437396,0.0014812768,0.0027207125,0.040360596,0.012448099,0.03283665,0.04890565,0.019092012,-0.013643869,0.008088241,0.0012553905,-0.0051895073,0.035819355,-0.0073560006,0.013072856,0.016297404,0.011306073,-0.0033924934,-0.10006848,-0.04852945,0.02112079,0.012031595,0.0028281976,0.007060417,0.0053608115,0.02676375,-0.021806007,0.037512243,0.00042868018,-0.032057382,-0.0075306636,-0.011366532,0.020865515,-0.0017466303,-0.019548824,-0.009727387,-0.0061333594,0.008639102,-0.030364497,-0.009754258,0.037512243,-0.022585273,-0.015155377,0.0030700385,-0.014765744,0.01817839,0.015988385,0.042725265,0.022961471,-0.0136908945,0.0015106673,0.0015358591,-0.011245612,-0.036571752,-0.057289474,-0.03826464,0.014067092,-0.003580592,0.019750359,0.0047629266,0.021537295,-0.043988213,0.0020522906,-0.023230182,-0.0051525594,0.044283796,0.002492307,-0.011460582,-0.009364625,-0.0041583236,-0.015141941,-0.013482642,0.0073895897,0.015625624,0.0045815455,0.0040206085,-0.010217787,-0.020166863,-0.0013376836,-0.037082303,-0.006677502,0.017466303,0.0127436835,-0.0033286742,-0.016834829,-0.010903004,0.00020205909,-0.0053944006,-0.025729207,-0.0049879733,-0.021349195,0.0071544666,-0.009055606,-0.011332943,-0.003308521,-0.020811772,0.010405886,-0.027139947,-0.025151476,-0.035308804,-0.033051617,-0.00031783633,0.011547913,0.005565705,0.017211026,-0.0016702152,-0.021376068,-0.021577602,0.0027173536,0.012636199,0.028456638,-0.022491224,-0.014537338,0.0043430636,-0.0058814418,-0.009774412,0.026804058,-0.0188233,-0.028134184,-0.0072552334,-0.0695965,0.028617866,0.016875135,0.016445195,0.01523599,0.012770554,0.019777229,-0.019965328,0.022786807,-0.0055354745,-0.031493086,0.022235947,-0.006999957,-0.007550817,0.00093461515,0.030579466,0.02056993,0.028080441,-0.004887206,-0.010036406,0.0076045594,-0.007900143,-0.0059687733,-0.004188554,-0.00812183,0.0007502953,-0.017775321,-0.0009455316,-0.017318511,-0.005270121,0.036652364,-0.006999957,-0.0012730247,0.04025311,-0.008665973,-0.047373988,-0.027381789,-0.001545096,0.050598536,0.0054347073,-0.0023965782,-0.02937026,-0.0016534207,-0.029343389,-0.02210159,-0.0016979262,0.0003942514,0.024425954,0.0017004453,-0.03436831,0.01817839,0.011440428,-0.006277792,-0.010802236,0.0041280934,-0.02566203,0.013435618,-0.016042128,0.029961428,-0.014120834,0.02501712,-0.0059822085,0.03283665,0.02090582,0.008974993,-0.013220647,0.010903004,-0.012300308,0.003424403,0.0012831015,0.0068017812,-0.0149000995,-0.025003685,0.01860833,0.03520132,0.0030263728,0.010170762,0.023042085,-0.0005193706,0.03329346,0.01891735,0.012360768,-0.01511507,0.017466303,0.032111127,0.031412475,-0.010916439,0.013294543,0.0033622633,0.01017748,-0.008068088,0.014980714,-0.023042085,-0.014591081,0.015585316,0.025729207,0.0140939625,-0.013878993,0.019011399,0.026629394,-0.013025831,-0.005831058,0.006848806,-0.010795519,-0.031224376,0.020422138,-0.052909464,-0.011870368,0.002547729,0.011736012,-0.0035234906,0.006264357,-0.003160729,0.0010345426,-0.020744594,-0.0022639015,-0.00009672595,-0.025433624,-0.02425129,-0.0037720497,-0.0072552334,0.02912842,-0.0031859209,0.0043732934,0.03522819,0.032164868,-0.02654878,-0.030122655,0.04302085,0.011776319,0.012911629,0.02740866,-0.0017516686,-0.026091969,-0.020771464,-0.0030985894,-0.01566593,0.022182204,-0.0035940276,0.06406102,0.0011949303,0.0065532224,0.0031472933,0.018124647,0.010923157,0.021255147,-0.006670784,-0.0017012851,-0.027731115,0.015571881,-0.009935639,0.012212977,-0.048314482,0.031170633,-0.027838599,0.0006978124,-0.0046487236,-0.013999914,0.0044774194,0.0001468471,-0.019320417,0.023875093,0.013838686,-0.028161054,0.0049443073,-0.0057437266,-0.01738569,-0.00033001235,-0.0417579,-0.009478828,-0.011406839,-0.023673559,0.000233024,0.0055489102,-0.023807915,-0.02480215,0.0040508388,0.029074676,0.023122698,-0.007967321,0.019092012,-0.031063149,-0.0056295237,0.008444286,-0.022007542,-0.019817537,0.0045177266,-0.032675423],"Mysql Query return Null in mysql 5.6.12 but runs on mysql 5.5.8":[-0.020026395,-0.013268036,-0.0040594046,-0.01075925,-0.032270435,0.022030497,-0.031363472,-0.026009446,-0.032387465,-0.04467539,0.029842108,0.005862365,0.0050614555,-0.010678793,0.0049407706,0.0047908286,0.019572912,-0.0058769938,0.013970203,-0.03937988,0.030632047,0.031304955,0.003644321,0.015667107,-0.008009096,0.0063816765,-0.0042568888,-0.024180885,0.010269196,0.01051788,0.019616798,0.0017170183,-0.017144583,-0.021664785,-0.056261152,-0.0023003293,0.012829181,-0.019075545,0.025746133,0.015081967,0.010444738,-0.014240829,-0.0055697956,-0.020450622,-0.00019645598,0.030778332,0.027633207,-0.01467237,-0.017407896,-0.011922215,0.017129956,-0.0020827304,-0.058455423,-0.012712153,0.014628485,-0.002687984,-0.00000624282,0.031070901,-0.015330652,0.018314863,0.017846752,0.009647486,-0.013992146,0.008345551,-0.029388625,-0.017993037,-0.016734986,-0.007310585,0.0046079727,0.016837386,0.022615638,0.033967342,-0.024180885,-0.0016630759,0.017203098,0.0012406784,-0.00879172,0.023113005,-0.001229707,-0.026375158,0.032007124,-0.0015414766,-0.01486254,0.0067876168,0.012690211,-0.0037522062,0.016076704,0.004289803,-0.02856943,-0.017129956,0.010795821,0.021884212,0.0365127,-0.0050029415,0.011907587,0.0016822757,-0.016734986,0.027998919,-0.008477206,0.0050687697,-0.011176162,0.0072667,-0.025175622,-0.0039935764,-0.0072593857,-0.016003562,-0.016822757,-0.0024155285,0.006520647,-0.03484505,-0.0096036,-0.0014637627,-0.0022418152,-0.019412,-0.010832393,0.0028324402,0.021357587,-0.0035016935,-0.014942997,-0.013326549,0.018314863,0.015593965,0.016749615,-0.01834412,0.018490404,0.013202207,-0.0063377907,-0.033821058,0.010437423,0.016047448,0.025804646,0.032680035,0.014584599,0.01641316,0.01056908,-0.011022563,-0.013436263,0.0018541605,-0.048771366,-0.039877247,0.019382741,0.013845861,-0.005906251,-0.015184367,-0.013304607,0.009135488,-0.004567744,-0.0026349558,-0.013538662,-0.046021212,0.0033755228,-0.03282632,-0.0006157678,-0.014679684,0.023054492,-0.009150117,-0.042422604,-0.00509437,-0.03118793,-0.01418963,0.0015679906,0.033031117,-0.01737864,0.019646054,0.02972508,0.022352325,0.010583709,-0.012924266,-0.0075409836,-0.01622299,-0.0047908286,0.034113627,-0.0019675312,0.019148687,0.002892783,0.0010102798,0.015535451,-0.0090330895,-0.026901783,0.010210683,-0.02258638,0.0079725245,-0.005829451,0.03186084,0.013443577,0.009610915,0.010291139,0.020874847,0.010013198,0.0019894738,-0.0032402093,0.014840597,-0.012726782,-0.003591293,-0.5785858,-0.017671209,-0.01968994,-0.0004804543,0.02596556,0.00027245554,0.013326549,0.010985992,-0.03838514,-0.019792339,-0.008521092,0.034903564,0.008959947,-0.028393889,-0.019748455,-0.022835065,0.020684676,-0.02672624,-0.011037191,0.0142774,0.013055922,0.0171007,-0.01081045,0.017685838,0.011527246,0.008213894,-0.009742571,-0.036571212,-0.00014445628,0.017042184,-0.051053412,-0.0012260498,0.010100968,0.013282664,0.047367033,0.016778871,-0.027369894,0.013107122,-0.005401568,0.038619198,-0.028203718,-0.008411379,0.02037748,0.00844795,-0.037946288,0.016837386,0.01032771,0.004772543,-0.003445008,-0.017832123,0.014401743,-0.0006733674,-0.017159212,0.020231195,-0.0029366682,0.0022674152,0.038941026,0.0031524384,0.03674675,0.0096547995,-0.011695473,0.008572292,-0.008404064,0.0024118715,-0.022308439,-0.02086022,-0.0011940501,-0.0046628295,0.025848532,-0.010137539,0.016983671,-0.006129335,-0.0017023899,0.027838007,0.0037357493,0.022893578,0.02808669,0.0066084177,-0.014438314,0.0076580117,-0.012456154,-0.0025526707,0.006710817,0.0066157323,0.016515559,0.0129754655,-0.01467237,0.009940055,-0.018066179,-0.011497988,0.023376318,0.0051419125,0.0018925602,0.0044836304,-0.00059473934,0.036220126,-0.00094262295,-0.00084113784,-0.015652478,-0.036600467,-0.009186688,-0.013604491,0.031217186,0.004779857,0.0409305,-0.0085137775,-0.0026806698,-0.013253407,0.020435993,0.0073837275,0.02558522,0.0056648804,0.012990094,-0.004823743,0.019265713,-0.038180344,0.02113816,-0.019338857,-0.009098917,-0.024107743,-0.013341178,-0.0067071603,0.020406736,-0.039701708,-0.010920163,-0.004739629,0.011892958,0.0072301286,0.010064397,-0.027018812,0.0039862623,0.008616177,0.024385683,-0.0036589496,-0.0059025935,-0.011878329,0.012785295,0.036132358,-0.0024392998,-0.0026568985,0.010020512,-0.017334754,0.008864862,0.018548919,-0.00501757,-0.025336536,-0.021679414,-0.00312501,-0.012990094,0.01105182,-0.008557663,-0.00093073735,-0.019280342,0.0085942345,-0.023347061,-0.013136379,0.016661843,-0.029154569,-0.004688429,-0.023522602,0.023610374,0.0075117266,-0.011995357,-0.0036552926,0.0064584757,-0.026228873,-0.01244884,0.009545086,0.0021942726,-0.012463469,-0.034493968,-0.006816874,0.035576474,-0.0028031834,-0.024488082,0.0039496906,-0.029695824,0.01239764,0.008484521,0.0015844477,0.03578127,0.0024265,-0.020933362,-0.0049627135,0.015550079,0.023976086,0.005942822,0.0050833984,-0.051199697,0.037565947,-0.032972604,-0.00013222778,-0.03425991,-0.00941343,-0.016471673,0.03475728,0.009040403,0.013509406,-0.018183207,0.022469353,-0.014131116,0.008462578,0.010664165,0.019938624,0.020260451,-0.018651318,-0.00063496764,-0.013553291,0.038180344,0.017042184,0.00901846,-0.042042263,-0.010217996,-0.01998251,0.018446518,0.015067339,-0.026565328,0.019514399,-0.01298278,0.011863701,-0.009896169,-0.00868932,0.01688127,0.019763082,0.0171007,0.004867628,0.02200124,0.019572912,0.022308439,-0.0010779365,-0.011929529,0.005855051,0.0017782751,-0.020099537,0.017846752,0.001327535,0.052077405,-0.027647836,-0.010342338,-0.026594585,-0.01215627,0.0052699116,-0.0002955411,-0.014613856,0.0017215898,0.003666264,0.013348492,0.0032658093,0.0063085337,0.011073763,0.01220747,0.031012388,-0.016383903,0.008418693,0.0039716335,-0.007943267,-0.022761922,0.019338857,0.04277369,0.031334214,0.01872446,-0.0042934604,0.016559444,0.000105199375,0.014233516,0.00097553706,0.026755499,-0.015140481,0.00868932,0.005584424,0.009311031,-0.042978488,0.020713935,-0.036571212,-0.007994466,0.015111225,0.0000030160536,0.0140360305,0.04979536,0.008989204,-0.011988043,-0.008762462,0.03522539,0.0062097916,-0.0014573628,-0.00946463,-0.01892926,0.03069056,-0.014482199,0.0046957433,-0.0029805538,0.019368114,0.020757819,-0.009398801,0.0003581693,-0.008089552,0.017934522,0.02037748,-0.003997233,-0.00917206,-0.016559444,0.0072849854,-0.04593344,-0.0125146685,0.050117187,0.013099808,0.0009855941,-0.028452402,0.010473995,0.0102545675,0.006666932,0.012924266,0.0006911959,0.0011081077,0.011644274,-0.0032018095,-0.023303175,0.014884483,0.02694567,0.017788237,-0.011563817,-0.036541954,-0.020479878,0.0016484474,0.011432161,0.0057526515,0.009281773,0.009398801,-0.023493346,0.0143798,-0.02606796,-0.02905217,0.027252866,0.013311921,-0.015579336,0.0015908477,0.021971984,-0.018197834,0.017802866,-0.0062061343,0.02694567,-0.023537232,-0.0023990714,0.0006363391,-0.03484505,-0.009771828,-0.0009700514,0.028320746,0.011432161,0.018270977,-0.00095816574,-0.029388625,0.020201936,-0.0064877328,-0.0087332055,0.004465345,0.024839167,-0.0040886616,0.016003562,0.04306626,0.00042674033,-0.039935764,-0.008586921,0.0082943505,0.012463469,0.007416642,0.013728833,0.0058477367,-0.0014902769,-0.01872446,-0.025073223,0.024634369,0.012756038,0.0048273997,-0.0078042964,-0.015681736,-0.022279182,0.005620995,0.047162235,0.021562386,-0.02577539,-0.0107153645,-0.022425467,-0.015769506,-0.011212734,0.00052799686,0.016062075,-0.0066888747,-0.0025764417,-0.017407896,0.0006601104,-0.0056685377,-0.040989015,0.005134598,0.006619389,-0.01091285,-0.021079646,0.02363963,0.006425562,-0.022922834,0.027077325,-0.0022582724,0.015140481,0.0057745944,-0.0023881001,-0.03940914,0.005375968,-0.032680035,0.0075263553,-0.010532509,0.006374362,-0.000016371332,-0.0051784837,-0.0026331272,-0.0010020512,-0.015784135,0.02972508,-0.030924616,0.033411458,-0.0028269547,0.025658362,0.020757819,-0.0059099076,0.006169563,-0.0097937705,-0.008989204,-0.015052711,-0.0015094767,-0.015374538,0.013246093,-0.003183524,0.013692262,-0.014584599,-0.03291409,0.013867803,-0.029578796,-0.0019291313,-0.009940055,-0.00036914067,0.009076974,-0.002779412,0.02017268,0.025438935,-0.006791274,-0.0128950095,-0.011234676,0.04101827,0.013516719,-0.0030427247,-0.011066449,0.010942106,-0.01851966,-0.018358748,0.029944507,0.011161534,0.017876009,0.0056100236,0.006911959,-0.014994197,-0.008842919,0.03472802,0.0011949643,-0.0069375588,-0.02239621,-0.010152169,-0.03165604,0.0042093466,-0.028247604,-0.01413843,-0.008711263,-0.00901846,-0.0060891067,-0.0066011036,0.008725891,0.0139555745,0.007398356,-0.007957895,-0.0073544704,-0.014686998,0.0028159833,-0.0039423765,-0.0010102798,0.0018569032,0.027048068,0.02934474,0.007295957,0.01639853,-0.01134439,-0.011929529,0.007855496,0.010612966,0.0048054573,-0.0171007,0.0006710817,0.011878329,-0.029008284,0.01641316,0.005438139,-0.022864321,0.049385764,-0.014686998,0.0037229494,-0.025395049,-0.03543019,0.008799033,-0.020626163,-0.028467031,0.011629645,-0.037975546,-0.026053332,0.019953253,-0.022630265,0.014679684,-0.011285876,0.026711613,0.0034888936,-0.011688159,0.004194718,0.019046286,-0.013304607,0.018636689,0.009128175,-0.020099537,-0.0023935859,-0.0012187356,0.021737928,0.01688127,0.012953523,-0.0027410123,0.019777711,-0.028174462,0.0035986071,0.016691102,-0.012865752,-0.003079296,-0.03320666,-0.012726782,0.021079646,-0.0068095597,0.028393889,-0.007818925,0.0058513936,-0.016003562,-0.03194861,-0.0035748358,-0.030193193,0.042832203,0.0049334564,0.02017268,0.047337774,-0.038531426,-0.021386845,-0.017656581,0.032650776,-0.04034536,0.022835065,0.026901783,0.0031341529,-0.020889476,0.0105544515,-0.013853175,-0.02046525,-0.012383012,0.041486382,-0.014057973,0.008009096,-0.021459987,-0.024546597,-0.038004804,-0.025731504,-0.037302636,-0.0033517515,0.0023807858,-0.016237618,-0.021123532,0.015081967,-0.024268655,0.0120538715,-0.009142803,-0.015696364,0.016852014,-0.021796443,0.013143693,0.011841758,-0.0027410123,0.036132358,0.028320746,-0.024766024,0.031100158,0.0015551908,-0.015096596,-0.03250449,-0.015169739,0.04002353,-0.02046525,-0.009215945,0.011417532,-0.0012178214,0.0062719625,-0.024210142,0.010422795,-0.022279182,-0.023332432,0.020509135,0.013728833,0.037946288,0.026053332,0.015696364,-0.022425467,-0.026594585,-0.029842108,0.031685296,0.005672195,-0.015008825,-0.0013403349,-0.02827686,0.011044506,0.0071972143,-0.01105182,-0.01244884,0.0033919797,0.020348221,-0.03908731,-0.011256618,0.0038472915,-0.010320396,-0.03581053,-0.023039863,-0.016486302,0.004618944,0.00820658,-0.016749615,-0.0012205641,-0.000022199869,0.03408437,0.017217726,-0.0070070443,-0.02674087,0.02086022,0.041457124,-0.0032237524,-0.011658902,0.011819815,0.034493968,-0.036424927,-0.00019668454,-0.01825635,-0.010781193,0.026053332,-0.012346441,-0.007606812,0.011900272,-0.018812232,0.0070472723,-0.004011862,0.015491565,-0.022089012,-0.027267495,-0.02441494,-0.0039167767,-0.0039862623,0.024634369,0.022425467,-0.001963874,-0.000574168,0.007789668,-0.01091285,0.019938624,-0.006004993,-0.022118269,-0.032182667,-0.010971364,-0.028423145,-0.012777981,0.008916061,0.012690211,0.013692262,0.007789668,-0.01477477,0.008060295,-0.010495937,-0.010261882,-0.01834412,-0.009757199,0.017612696,-0.02829149,-0.007131386,0.035488702,-0.005975736,-0.0030591819,-0.03706858,0.0060891067,-0.015710993,-0.0026934696,0.02239621,0.012178213,-0.010627594,-0.003487065,0.017598066,-0.009698685,0.023507975,0.009442687,-0.00786281,-0.0005307397,-0.0066925315,-0.005514939,0.022557123,0.007979838,0.024254028,-0.055968583,-0.011878329,0.025175622,-0.017627323,0.005280883,0.011732045,0.0066011036,-0.013333864,-0.0077457824,-0.0028470687,0.004900542,0.006290248,0.0034541509,0.016105961,0.02810132,-0.006952187,0.002404557,-0.0035419217,0.008703948,-0.011388275,0.006670589,-0.004644544,-0.007818925,0.014869855,-0.004593344,-0.027208982,-0.031890098,-0.039028797,0.001774618,-0.0312757,0.014847912,0.022805808,-0.024780653,0.012763353,-0.00917206,-0.021269817,0.018665947,0.014357857,-0.037800003,0.0017910751,0.0012991923,-0.023712773,-0.022761922,-0.027589321,0.024458826,-0.019031659,-0.024751395,0.0050907126,-0.016149847,-0.0168959,0.030544275,0.20749043,0.03022245,0.010525195,0.019529026,-0.0072045284,0.029461768,-0.016076704,-0.011380961,-0.018270977,0.029637309,-0.016764244,-0.0015039911,-0.003174381,0.0015268481,0.016164476,-0.011541874,-0.03408437,-0.032299694,-0.0312757,-0.024107743,0.03098313,0.021606272,-0.033352945,0.004523859,0.020406736,0.0038472915,0.0063889907,-0.005628309,0.010890907,0.014321286,-0.023186147,-0.010473995,0.0028616972,-0.0040850043,0.006096421,-0.010598337,0.02105039,0.0061147064,0.00042125463,0.03156827,0.0024283284,-0.022249924,0.026097216,-0.01250004,0.007361785,-0.0020278736,-0.027443036,0.010612966,-0.015374538,0.0035711788,-0.025029337,-0.0008713091,0.024502711,-0.0046774577,0.005650252,-0.013385063,0.016047448,-0.038238857,-0.0014674199,0.01081045,-0.0027684406,0.009479258,0.0069339015,0.035283905,-0.023859058,0.015886534,-0.020787077,0.025950931,-0.016822757,-0.014950311,0.015023453,0.008718577,0.0044543734,0.00026445556,-0.0097937705,-0.026316643,-0.0038436344,0.005010256,0.025555963,0.022381581,-0.022132898,-0.033235915,-0.010949421,-0.009559714,-0.03978948,-0.011746673,0.013260721,0.025629105,-0.012039242,0.007709211,0.0061659063,0.007921324,-0.027940406,-0.01891463,0.031890098,0.028540174,0.007760411,0.022615638,-0.015257509,-0.014079916,-0.03967245,0.033528488,-0.0022527867,-0.0101741105,-0.031334214,0.0064145904,0.00033576944,0.012317184,-0.0026130131,-0.00074742414,0.012624382,-0.023025235,-0.03946765,-0.009435372,-0.0061403066,0.006765674,0.0072301286,-0.022074383,-0.028203718,-0.010847021,0.020611534,-0.019309599,0.022732666,0.0046335724,0.0069595017,-0.008038352,-0.0044872877,-0.0052699116,-0.019514399,-0.04932725,-0.009523143,-0.043885455,0.011578445,-0.0042422605,-0.004768886,0.0143798,0.011680845,0.0063231625,-0.008469893,0.0061439634,0.024093114,-0.00023199862,0.011951472,-0.0068717306,-0.02315689,-0.017627323,0.012346441,-0.030076165,-0.03443545,-0.014591914,-0.011695473,-0.0048420285,0.017671209,-0.0063853334,0.056904804,-0.0068132165,-0.023829801,-0.041574154,-0.0019108457,0.029622681,-0.024210142,-0.007701897,0.031919353,0.011307819,-0.03118793,-0.004688429,-0.18782975,0.008623492,0.022542495,-0.024751395,0.05819211,0.022366952,-0.006396305,-0.014511457,-0.0016457045,0.000054085394,0.015081967,-0.004125233,-0.041632667,-0.0066376748,0.00603425,-0.0027775834,-0.016325388,-0.009567029,0.039613936,-0.0039789476,0.05898205,-0.012083128,-0.0020351878,0.0044872877,0.013231465,0.0171007,-0.02789652,0.0014427343,-0.0078335535,-0.005010256,-0.0035638646,0.005405225,0.008769777,-0.012141642,-0.00020514164,0.026711613,-0.013940945,0.005588081,-0.002205244,0.003728435,0.023595745,0.013831232,0.023215406,-0.0061366493,-0.010378909,0.03703932,0.01824172,-0.0045348303,0.029710451,0.0409305,0.028364632,-0.018578175,0.01612059,-0.03001765,-0.019529026,0.02210364,-0.043563627,0.017876009,-0.008938004,0.002792212,0.010664165,-0.009808399,0.01970457,-0.011944158,0.002808669,0.016354647,-0.006462133,0.024224771,-0.035488702,0.018607432,-0.028423145,-0.009515829,-0.011278561,-0.0014235344,0.005620995,-0.0073544704,-0.0047469432,0.0048200856,0.011527246,0.0035510645,-0.013494777,0.015359908,-0.0026916412,0.019777711,0.005855051,0.014006774,0.03996502,0.010905535,0.006396305,-0.0036479784,0.026609214,-0.0021522157,-0.01989474,-0.01824172,0.011168848,0.019850854,0.008170009,0.014365172,0.019967882,0.015813392,-0.01622299,-0.00008394236,-0.032328952,0.017598066,0.0048822565,0.0039094626,-0.022308439,-0.012170899,0.05848468,-0.016149847,-0.024356427,0.012668268,-0.0034248938,0.036922295,-0.0020717592,0.016617958,-0.014196944,-0.007818925,0.0064877328,-0.0026404415,0.03153901,-0.00311221,0.01100062,-0.0062865913,0.021474615,0.008213894,-0.088180505,-0.049853876,0.011732045,-0.0028013547,-0.013289978,0.0044799736,-0.010956735,0.030719817,-0.02103576,0.013107122,-0.0030445533,-0.02036285,-0.022235297,0.01091285,0.033645514,0.017042184,-0.0072410996,0.0037631777,-0.020743191,0.021971984,-0.036658984,0.0015113053,0.009779142,-0.02248398,0.0061659063,-0.012924266,-0.026038703,0.0019437599,-0.0001099422,-0.0035254648,0.014452943,-0.0012516497,0.0037522062,0.0014399914,-0.0012370212,-0.0044799736,-0.026331272,-0.011395589,0.015257509,-0.013004723,0.009274459,0.021416102,0.0069339015,-0.01062028,-0.010079026,-0.0075921835,0.014313972,0.03551796,0.038268115,-0.009128175,-0.013545977,-0.016340017,-0.010642222,-0.030719817,0.03648344,0.006820531,0.03253375,0.023727402,-0.014818654,0.02672624,-0.004498259,-0.009684057,0.000012092785,0.018695204,-0.029286226,-0.012463469,-0.0026404415,-0.003565693,0.021752557,0.017261611,-0.0143359145,-0.011746673,-0.028028177,-0.010137539,-0.0192072,0.026711613,-0.0055771098,-0.024019971,-0.011300504,-0.021167418,-0.015081967,-0.003960662,-0.013494777,0.008491836,0.03686378,0.009223259,0.010181425,-0.016047448,0.01336312,-0.017261611,-0.022410838,-0.016340017,0.034347683,-0.03803406,0.005288197,0.00017954179,0.024488082,-0.0052113975,0.015623221,-0.053335454,-0.016661843,-0.027998919,-0.06787617,0.036044586,-0.0044872877,0.00019234171,-0.0026166702,-0.013714205,-0.020231195,-0.0061476207,-0.03475728,0.0014765627,-0.038209602,0.0167935,0.0005339397,-0.016105961,-0.011519931,0.005555167,0.0072155,0.0014847912,-0.006312191,-0.012024614,-0.023493346,-0.012565868,-0.017320126,0.016778871,-0.015696364,-0.00079222384,-0.0049663703,0.016500931,0.02355186,-0.022615638,0.022030497,-0.024210142,0.01346552,0.044733904,-0.00941343,-0.04719149,0.018168578,0.006078135,0.041954495,-0.0065791607,-0.021971984,-0.01496494,0.008835604,0.002762955,0.016354647,0.011819815,-0.01824172,0.023200776,-0.013458205,0.010890907,0.01303398,0.02837926,-0.0025709562,-0.025994817,-0.007753097,-0.003953348,0.011607703,0.015945049,-0.004582373,0.008374807,0.066062234,0.02479528,0.025702247,0.015023453,0.00786281,0.006454819,-0.004282489,0.02691641,0.028247604,0.0050870553,0.008199265,-0.025336536,-0.016149847,0.034932822,0.027838007,0.010100968,-0.010400852,0.014438314,0.012536611,0.0014966768,0.017334754,-0.023873687,-0.0365127,-0.008118809,0.038238857,0.03516688,-0.017685838,0.023230033,0.011176162,-0.0029348398,-0.027955035,0.003741235,-0.030456504,0.02412237,-0.017290868,0.008279722,-0.019616798,0.016076704,-0.00093576586,0.019792339,-0.033908825,-0.010847021,-0.015067339,0.0015030768,-0.0075409836,0.011878329,-0.04400248,-0.0045165448,0.029461768,0.009179374,-0.0051821405,-0.030924616,0.008360179,0.013202207,-0.011680845,0.0024685569,0.0034925507,-0.017715095,-0.033967342,-0.0072922995,0.019792339,0.0063816765,0.015330652,-0.009142803,0.026579956,0.019046286,0.024663625,-0.019455884,0.02355186,-0.016442416,0.027911149,0.023668887,-0.006619389,-0.014248144,-0.026609214,0.009771828,0.00266787,-0.026770126,0.009274459,0.07413716,-0.00042125463,-0.0051748264,0.010239939,-0.015579336,0.004772543,0.0027099268,0.012317184,-0.011922215,-0.02992988,0.028393889,-0.025877789,-0.0001588562,-0.014014089,-0.022615638,-0.0040594046,-0.017598066,-0.0047579147,-0.017407896,-0.005588081,0.02527802,0.019792339,0.0064475047,-0.011029878,-0.020933362,-0.00936223,0.023127634,0.0014299344,0.01544768,-0.02103576,0.001872446,0.01100062,-0.027355267,-0.00021965583,0.019529026,-0.025629105,-0.0039643194,0.0051163123,0.0054161963,0.021167418,0.0143359145,0.03996502,-0.03060279,-0.007906696,0.027033439,-0.033440717,-0.008952633,0.007237443,-0.013780032],"SELECT DATE_ADD( NOW(), INTERVAL ROUND( SEC_TO_TIME( TIMESTAMPDIFF(SECOND, NOW(), \"2013-11-13 15:13:00\" ) / 2 ) ) HOUR_SECOND );\n":[-0.009414958,-0.01577276,-0.0033463005,-0.0386879,-0.01523167,0.00007091232,-0.04225909,-0.01586745,-0.027297966,-0.02846131,0.013141711,0.010395682,0.0026817748,-0.011626661,0.01880286,0.016827883,0.0010424427,-0.0050659506,0.016814357,-0.010307755,0.043206,0.017396027,0.012871167,-0.003601627,0.009367612,0.0071423817,0.0081569245,-0.015028761,0.017179592,0.0035779544,0.00898885,-0.019276313,-0.027352074,-0.009719321,-0.03633416,0.009009141,0.0015218143,0.0072708903,0.0205614,0.0015006779,0.012681785,-0.02233347,-0.005093005,-0.024092011,-0.010923245,0.030111631,0.029786978,-0.048265185,-0.007974307,0.024551937,-0.011410225,0.025201244,-0.034521513,-0.021183655,-0.0098004835,-0.0061684204,-0.019709185,0.04412585,-0.001652014,-0.02203587,0.0073047085,-0.02678393,-0.025701752,0.014041273,-0.0041663893,-0.0176801,-0.0140548,-0.009523176,-0.013933055,0.030923266,0.019776821,0.013716619,-0.004470752,-0.018424097,0.022901613,0.013317565,0.01119379,0.0121271685,0.027541457,-0.019330423,0.023375068,0.0072641266,-0.03181606,0.012296259,0.0154481055,-0.022117034,-0.012133933,0.031166757,-0.01689552,-0.0029320288,0.05151172,0.03187017,0.01997973,0.022698704,-0.010537718,0.0012766331,-0.022685178,0.039932407,0.012201568,-0.020507293,-0.01182957,-0.016976684,-0.006537038,-0.0105106635,-0.0046770424,-0.025295936,0.0045350064,-0.008488342,-0.017598936,-0.015786286,0.025065972,0.040662877,0.019046351,-0.0124112405,0.0100575015,-0.0028018293,0.0049306783,-0.012904985,-0.023902629,-0.040230006,0.029191779,0.027730837,0.016205631,-0.02884007,0.032194827,0.0000074505488,-0.022522852,-0.013243166,0.030382177,-0.0064863106,0.027839055,0.015123452,0.020845473,0.009820775,-0.020507293,0.023577975,-0.030733885,0.027284438,-0.028623635,-0.017152537,0.010240119,0.01138317,-0.018194135,0.0050186054,-0.014961125,0.031951334,0.007507617,0.02173827,-0.0054683858,-0.007615835,0.026107568,0.021927653,-0.007169436,0.015989196,0.027541457,-0.0026733205,-0.029841086,0.01373691,0.029218834,-0.006033148,-0.0055630766,-0.017274283,0.006442347,0.0039770077,0.026608076,0.02203587,0.0036286816,-0.0014567145,0.00006319756,0.010524191,0.009908701,-0.005187696,-0.0110788075,0.017937118,0.025715278,0.035035547,0.004206971,-0.027784947,-0.009644921,-0.027839055,0.0007972616,-0.011065281,0.017815372,0.051890485,-0.01822119,-0.009408194,0.032600645,0.000009359422,0.005556313,-0.00394319,-0.028542472,0.00898885,0.012959094,-0.00560704,-0.60472167,-0.011971606,-0.050645977,-0.010118374,0.009414958,0.0005715258,0.011004408,0.010720336,-0.0076361257,0.01278324,0.0028170473,0.018194135,0.015015234,-0.011863387,-0.002433212,-0.010700045,-0.015853923,-0.015610432,-0.011870151,-0.007595544,0.012898222,0.005393986,0.010544482,0.026499858,0.012519458,0.003141701,-0.029516432,-0.0035779544,-0.027947273,0.017368974,-0.0059384573,0.0026631749,0.0066283466,0.0012605694,0.050808307,0.018978715,-0.035306092,0.024254337,0.008028416,0.0386879,-0.031302027,-0.0040581715,0.01571865,0.0015818414,-0.025837025,0.0060500572,-0.002625975,-0.01334462,0.0017111956,-0.0140548,-0.012681785,-0.017504245,-0.015380469,0.011153207,-0.01728781,-0.0065708556,0.009556994,-0.025444735,0.006246202,-0.005857294,-0.01001692,-0.0014702417,-0.02375383,-0.006330747,-0.009171467,0.00022171988,0.00060788024,0.009130886,0.02859658,0.019803876,0.01900577,0.03021985,0.0025481933,0.0040074443,-0.0007135618,-0.00886034,0.023699721,0.012830585,-0.014825853,0.017571881,0.016300322,-0.0087250685,-0.044044685,0.0047582057,0.01099088,-0.005417659,-0.03438624,-0.0011066971,0.0040547894,0.030003414,0.019452168,0.029299997,0.012654731,0.0076969983,-0.024024375,0.012776476,-0.0009367612,-0.01136288,0.0022336852,-0.026797459,-0.018532315,-0.02678393,0.00091308856,0.008853577,0.06909713,-0.0040581715,0.0038755536,-0.00137386,0.030923266,-0.017666573,0.0036354451,0.0074940897,-0.01040921,0.022874558,-0.0061988565,-0.024321973,0.012769712,0.019222206,0.01351371,-0.00033374233,0.012086587,0.011748406,0.023307431,-0.027893165,-0.002943865,0.021684162,0.0072505996,-0.0059080212,-0.020358494,-0.021034855,0.011619898,0.009482593,0.011707825,-0.015826868,0.034115694,-0.013574583,0.007521144,-0.0016215777,-0.01222186,0.002253976,0.0011202244,-0.0035576636,0.0069732913,-0.021467727,0.0010432883,-0.030057522,-0.021386564,0.0064761653,-0.012363896,0.028569527,-0.03189723,0.0036354451,-0.009502885,-0.0066283466,0.000015521977,-0.014420035,0.009956047,-0.044288177,0.00030943556,-0.010598591,0.01381131,0.0040547894,-0.025404153,-0.020940164,0.009617866,-0.010375392,-0.012566804,-0.008075761,-0.0055089677,-0.015745705,-0.019032823,0.02663513,-0.01474469,0.004846133,0.010003393,0.021116018,-0.01997973,0.01861348,-0.02580997,-0.0053973678,0.019993257,0.0054041315,-0.025823496,-0.0024078484,-0.004562061,0.024673682,-0.024606045,0.012303023,-0.036063615,0.024227282,-0.025674697,0.02487659,0.009198521,-0.0019817404,0.015339888,0.03952659,-0.006323984,0.011937788,0.015948614,-0.0035170817,0.012986149,0.018532315,-0.024119064,-0.0047987876,0.00054616225,-0.023226267,-0.0059080212,0.0036151544,0.039688915,-0.0047412966,0.014920543,-0.03427802,-0.025620589,-0.00915794,0.010517428,0.03403453,-0.0012791695,-0.011247898,0.00084502966,0.016367957,0.047426496,-0.022346998,0.027365603,0.00734529,0.013696329,0.013425783,0.0060027116,0.031518463,-0.002768011,-0.01680083,-0.021684162,0.010497137,-0.0028136654,0.018099444,0.022888087,0.010558009,-0.012742658,-0.020994274,0.015637487,0.0148529075,-0.01713901,0.007906671,0.022171143,-0.039553642,0.0041765347,-0.0040074443,0.0125532765,0.010855609,-0.0154481055,-0.011910733,0.0008230479,0.0009113976,-0.002179576,-0.0065573286,0.013304038,-0.0096313935,-0.00287792,-0.012519458,0.008718304,0.02272576,0.027216803,0.015813341,0.0002978106,-0.012999675,-0.0034359184,0.004558679,0.028082546,-0.0148529075,0.011660479,0.0039296625,0.024078483,0.0031467737,0.0029337197,-0.0247819,-0.010558009,-0.014135963,-0.0063679474,-0.012817058,-0.0009874883,-0.008028416,-0.015745705,-0.02336154,0.03065272,0.01040921,-0.0017078138,-0.02076431,0.00798107,0.0072708903,0.010558009,-0.0085830325,0.006313838,0.020399075,0.005353404,-0.011342589,-0.018938133,0.0101995375,0.004010826,0.005339877,-0.0075481986,-0.0029185016,-0.0076564164,0.02203587,-0.0064288196,-0.023983793,0.028569527,0.00528915,-0.011646952,-0.049401473,-0.0030453193,0.0068549276,0.009678739,-0.010300992,-0.013933055,0.0046973336,-0.0013155239,0.010490373,0.0017010502,-0.021021327,0.040230006,0.0068244915,0.0044606067,-0.0087521225,-0.0320325,0.01571865,0.011058517,0.0084409965,0.02605346,0.015434578,-0.032681808,0.021968234,-0.009205285,-0.03373693,0.027338548,-0.0031535374,-0.018126499,-0.013547529,0.0058708214,-0.023050413,0.03687525,-0.0069732913,0.0019073405,-0.0108015,0.023104522,0.007852562,-0.036063615,0.0027544838,-0.004193444,0.02223878,0.02302336,-0.02605346,0.015840396,0.006614819,0.007852562,-0.024551937,-0.032411262,0.0070341635,0.004562061,-0.0008682796,-0.009097068,0.0019276314,0.0024721026,0.017003737,-0.0096313935,-0.023145104,-0.025390625,0.00564424,-0.005762603,0.013162002,0.013202584,-0.008258379,-0.0021694307,0.039093718,-0.032086607,0.02238758,-0.0043794434,-0.008684487,-0.04842751,0.005194459,-0.011308771,0.019032823,-0.0395807,-0.015569851,-0.017490719,-0.011971606,-0.034169804,-0.0112208435,0.031410247,0.008927977,-0.01728781,-0.008386888,-0.016976684,-0.009455539,-0.014731162,0.008359833,-0.00898885,0.003265137,-0.0023148486,0.026553968,-0.0044606067,0.00315861,-0.0012005423,0.023929683,-0.024849536,0.013040258,-0.003692936,-0.021183655,-0.010544482,-0.0032008826,-0.016584394,-0.0057254033,0.009063249,-0.010875899,0.0028796108,0.005465004,0.0069868183,-0.005265477,0.036658816,-0.035820127,-0.0019851222,0.011356116,0.023632085,-0.0011117698,-0.004984787,-0.0020138675,0.009354085,-0.0005246032,-0.008454524,-0.015069343,0.0031028101,0.00869125,-0.0018904315,-0.0032803551,0.004842751,-0.023226267,0.033466388,-0.019086933,0.009164704,-0.016827883,0.026121097,-0.0065471833,-0.016597921,0.0040716985,-0.011254662,0.005762603,-0.0017238774,-0.010666227,0.026269896,0.00084545236,0.0033496823,0.027365603,-0.008495105,-0.012086587,0.009976338,0.009665212,0.006827873,0.02296925,-0.009563757,-0.0025853934,-0.016232686,-0.036225945,0.028271927,-0.003655736,0.0030808283,-0.013561056,-0.0017154228,-0.029327052,0.0020003403,-0.020115003,-0.02629695,-0.025295936,-0.037632775,-0.011335826,0.021670636,-0.0051437323,0.010118374,0.014027745,-0.024308447,0.003053774,0.005258714,-0.014081854,-0.01577276,-0.006750092,0.0031450829,0.043124836,0.011085572,0.0134054925,0.020723728,0.003336155,0.0087250685,0.0038484992,0.008704778,0.005448095,-0.01841057,0.003337846,0.03181606,-0.008488342,-0.02805549,0.022604015,0.008576268,0.019614495,-0.02203587,0.006953,-0.024349028,-0.0284072,0.010314519,-0.01586745,-0.014920543,-0.009293213,-0.03760572,-0.0124112405,-0.0024061573,-0.02003384,0.0314373,-0.0013341238,0.027636146,-0.0022573578,0.017855953,-0.008555978,0.004808933,-0.045180973,0.016597921,-0.006993582,0.027784947,0.013391965,0.0068312553,0.007595544,0.019776821,-0.005093005,0.0030622284,0.0014939143,-0.04775115,0.016056832,-0.0010136974,-0.015529269,0.0064152926,-0.013594874,0.0037774811,0.00017796773,0.02586408,0.008650669,-0.0049475874,0.0101995375,0.0047277696,-0.0072844177,-0.00070299365,-0.054974694,0.062171184,0.010747391,0.029705815,0.032979406,0.024849536,0.0026834658,0.018924605,0.0076969983,0.024795426,0.01635443,0.045072757,0.005005078,0.0040378803,0.023889102,0.009272922,-0.03736223,-0.018518789,0.011112626,-0.010558009,-0.002575248,-0.00884005,-0.0050422777,-0.007629362,-0.0009190067,0.0030689922,0.0010229973,0.0039465716,-0.011051754,0.0044504614,0.012140696,-0.033709876,0.015691595,0.02560706,-0.0015040598,-0.015285779,-0.02042613,-0.002629357,0.00061802566,-0.032357153,-0.006567474,0.023375068,-0.028758908,0.028488362,-0.013060548,-0.004683806,-0.01949275,-0.028975343,0.030273959,-0.033385225,-0.017125484,-0.024416665,0.010415973,0.0037538086,0.0007414617,-0.020047367,-0.0067196554,-0.042989563,0.009854592,0.012431531,0.017125484,0.008454524,-0.00876565,0.012059532,-0.026973313,-0.0012580331,0.010294228,-0.0076564164,0.0005630713,-0.019235732,0.003797772,-0.014325345,0.008035179,-0.013229638,-0.018464679,0.022590486,0.017517773,-0.015745705,0.00741969,0.0057051126,0.010267174,-0.017314864,-0.013628692,-0.009245867,0.0281096,0.013398729,-0.016976684,0.0027595565,0.0083260145,0.010443028,0.026161678,-0.0018701407,0.00891445,0.025201244,0.037037577,0.0038924627,-0.02668924,-0.013229638,0.0046060244,0.0013873873,-0.020669619,0.0058133304,-0.025877606,0.019803876,-0.006898891,0.0000684288,-0.0073926356,-0.051890485,0.0011540424,0.010287465,-0.0032025736,-0.024808954,-0.00493406,-0.041366294,0.0011827878,-0.026729822,0.027162693,-0.017301338,-0.008961795,-0.0053973678,0.0018481589,0.015393997,0.010138664,0.025539424,-0.0050490415,-0.013128185,-0.031410247,-0.015556323,-0.005038896,-0.018112972,0.03306057,0.007223545,-0.014244181,-0.017571881,0.0047886423,-0.0383903,0.0025651024,0.013615165,0.023104522,0.035684854,-0.00022150853,0.0020645948,0.046993624,-0.013155239,-0.00007107084,-0.036063615,0.008461287,0.024944227,-0.013175529,0.02095369,-0.0026124478,-0.006726419,-0.0040750806,0.03149141,0.0037335176,0.021630052,0.032898244,0.009293213,-0.024863062,0.021102492,-0.004491043,-0.017003737,0.016597921,0.0070612184,-0.06081846,-0.011105862,-0.004927296,0.017179592,-0.010679754,-0.00039546035,0.0068075825,0.0024704118,0.00085348415,-0.011714588,-0.0046770424,0.0154481055,-0.0015514051,0.014095382,0.007372345,0.008089288,0.0103415735,-0.0026817748,-0.0062056202,0.0024619573,0.03276297,-0.03040923,-0.007561726,-0.02140009,-0.008170452,0.015015234,-0.03687525,0.024822481,-0.006726419,-0.014108909,-0.0032414643,-0.009692266,-0.009590812,0.025201244,0.021914124,-0.027162693,0.0011134607,-0.015813341,-0.0047345334,0.003141701,-0.01263444,0.00004171779,-0.0022658124,0.016679084,0.0075887805,-0.019709185,-0.022144089,0.0018701407,-0.0013696328,0.030301012,0.020439656,0.21070026,0.01979035,0.015285779,0.003601627,-0.012722367,0.023713248,0.008339542,0.0067670005,0.002979374,0.027663201,-0.03971597,-0.003902608,-0.013933055,-0.000022761164,0.012647968,-0.009448776,-0.020453183,-0.01958744,-0.042827234,-0.008819759,0.03657765,-0.0015226597,-0.051349394,-0.019898567,0.022847505,-0.0148529075,-0.022062926,0.00095620664,0.0056408583,0.0070138727,-0.008501869,-0.0064930744,0.015245197,0.009597575,-0.035874236,-0.0026936112,0.013182294,-0.0048393696,0.009888411,0.023510339,-0.005059187,-0.02336154,0.013047021,-0.007771398,0.019871512,-0.0046161697,-0.0064457287,-0.009807248,-0.031274974,-0.004913769,-0.026472805,-0.020791365,0.028623635,0.0066317283,0.022319943,-0.01876228,0.015840396,-0.009320267,-0.024768373,0.00930674,-0.005488677,0.024795426,-0.02737913,0.010375392,0.005945221,0.013987164,-0.026513387,0.007703762,-0.0034342275,0.0022759577,0.02199529,-0.029191779,-0.017558355,-0.01874875,-0.019303368,-0.012120405,-0.011376407,0.009705793,-0.010402446,0.02556648,-0.011322298,-0.010828554,-0.00028090156,-0.016760247,-0.024227282,-0.012891457,-0.002519448,0.030436285,-0.026378114,-0.0021423763,0.029759923,-0.011024699,-0.020453183,0.0037199904,0.024890117,0.014014218,0.039201934,0.02948938,-0.017558355,0.019479223,-0.012133933,0.004856278,-0.013642219,-0.01625974,-0.027784947,0.005803185,0.0050659506,0.016137995,0.017233701,-0.031626683,0.0050118417,-0.024714263,-0.0076767076,-0.021048382,0.0035373727,0.0151640335,0.026066987,-0.033222895,-0.022928668,-0.014501199,0.008806231,-0.009130886,0.007277654,0.004572206,-0.0252283,-0.025958769,-0.0014609417,-0.0030301013,-0.023253322,-0.05573222,0.008887395,-0.021034855,0.0020595219,-0.0028238108,0.020169111,0.0038721717,0.034440346,0.0016080504,0.00093422487,-0.0036996996,-0.0006797437,0.010706808,0.0049611144,0.023740303,0.0145688355,-0.028677745,0.0013290511,-0.008650669,-0.020926638,-0.0020392311,-0.033466388,-0.014501199,0.029191779,0.0043929704,0.022346998,-0.015353415,-0.036009505,-0.040635824,0.008420706,0.026526913,0.0018718315,0.0013966874,0.020777836,-0.011592843,-0.023334485,0.008251615,-0.17087607,0.028082546,0.031329084,-0.008657432,0.021088963,-0.0033530642,0.01992562,-0.010131901,0.0010737245,-0.00096804294,0.014663526,0.0036117726,-0.03040923,-0.008143397,0.0062901657,0.016963156,0.0053906045,0.038823172,0.021521835,-0.008244852,0.04114986,-0.013506947,0.023496812,0.010375392,-0.0012571877,0.009881647,-0.023645611,0.004649988,-0.010875899,-0.031085592,-0.010043974,0.020980746,0.005221514,-0.0010618882,-0.03379104,-0.00028597427,0.014041273,-0.016205631,-0.02076431,0.028515417,0.030030468,0.0070612184,-0.0053973678,0.018153554,-0.014108909,0.037389286,0.023970265,-0.03227599,-0.0148799615,-0.014920543,0.0374975,-0.031707846,0.013750438,-0.0049644965,0.012965857,0.016665557,-0.0420156,0.0069259456,-0.006922564,-0.0072573633,-0.016692612,-0.028434254,0.02057493,-0.0014998325,0.009293213,-0.017477192,0.0016799138,0.0068380185,0.005701731,0.024254337,-0.040825203,-0.0125262225,0.0037876265,-0.03095032,-0.0059486027,0.0034190093,-0.017571881,0.00859656,0.0075549623,-0.008413942,-0.029516432,0.030057522,-0.008197506,0.030246904,-0.017206647,-0.010172483,0.0052790046,0.016733194,-0.01919515,0.006794055,0.01640854,0.0011472788,-0.009732848,0.0027189748,0.01973624,0.00418668,0.0032786643,0.010077792,0.0048867147,-0.0022945576,-0.00646602,0.0023537395,-0.0040412624,0.024984809,-0.0020206312,0.032194827,0.0035103182,-0.0017281047,0.027243856,0.0032144098,-0.01680083,0.0052959137,0.014947598,0.010842081,-0.009908701,0.030057522,-0.013743673,0.0025093027,0.010165719,-0.026526913,0.005566458,-0.032113664,-0.0061988565,0.0014972962,0.0061447476,-0.026553968,-0.0737505,-0.03549547,0.00064338924,0.04980729,-0.0049002417,-0.00063493475,-0.001704432,0.0022641215,-0.016422067,0.011809278,0.0057186396,-0.026229315,-0.03216777,0.017247228,0.053594917,0.022008816,-0.007203254,-0.02536357,-0.023834992,0.020601984,-0.00075287535,-0.009279685,0.002538048,-0.013168766,0.018870497,-0.007913434,-0.009171467,0.009969574,0.027812,0.02580997,0.008474815,-0.012566804,0.021413617,0.0004341398,-0.046100825,-0.039824188,-0.029191779,-0.0056476216,0.0072641266,-0.032086607,0.034521513,0.018532315,0.022942195,-0.002360503,0.0061920932,-0.033818096,-0.01199866,0.022144089,0.021427145,-0.018694643,-0.014149491,-0.010172483,-0.02081842,-0.021832962,0.031518463,-0.0024112302,0.02296925,0.0128373485,-0.01231655,-0.010206301,-0.027947273,-0.008934741,-0.025918188,0.01822119,-0.0056171855,0.008305724,-0.023767358,0.011423753,0.025255352,-0.0130943665,0.012904985,0.006087257,-0.010497137,0.025038917,-0.017125484,0.024849536,0.014514727,-0.012012187,0.019857986,-0.000054425996,-0.0105783,-0.031626683,0.0005740622,-0.020886056,0.018031808,0.0048596603,0.0142847635,0.0049475874,0.035684854,-0.02708153,0.016652029,0.031085592,0.039878298,-0.012046006,-0.015109925,0.013865419,0.02263107,0.016814357,0.031220865,-0.029408215,-0.014771744,-0.012303023,-0.07153203,0.017788317,0.0010906336,-0.0032194825,-0.029814033,-0.0075481986,-0.0007169436,-0.012647968,-0.008366597,0.0021880306,-0.04188033,-0.010240119,-0.026026405,-0.019682132,-0.03316879,-0.01190397,-0.009935756,0.040230006,0.02263107,-0.011268189,0.000913934,0.0053669317,-0.035522528,0.02536357,-0.013851891,0.007967543,0.019885039,0.020669619,-0.015759232,-0.034846164,0.03040923,-0.02704095,0.0099425195,0.031220865,-0.005857294,-0.04637137,-0.02556648,0.0026716294,0.024173174,-0.029327052,-0.016395012,-0.027297966,-0.012992912,0.0027206657,-0.0055630766,0.015799813,0.029272942,0.034548566,-0.00398039,-0.024281392,-0.01836999,0.019857986,-0.01874875,0.0050896234,-0.022549905,-0.011051754,-0.0129523305,-0.0053331135,0.0050152233,-0.01979035,0.04182622,0.028921235,0.023090996,-0.006449111,0.0050118417,-0.008528924,-0.0055224947,0.0025109935,0.039391316,0.010179247,-0.013594874,-0.019614495,-0.00390599,0.034521513,0.017761264,0.0068955095,-0.013892474,0.0046804245,-0.011836333,-0.011011171,0.03825503,0.0058640577,-0.004423407,-0.006567474,0.020831946,0.047967587,0.0033141733,0.0039702444,-0.012248914,-0.014392981,-0.015529269,0.018451152,-0.0037233722,-0.0023943211,0.0066317283,0.0062090023,-0.0036794087,-0.026905676,-0.030760938,-0.009076777,-0.0065776194,0.0062800203,-0.001012852,-0.00443017,-0.009137649,0.011187025,-0.003334464,-0.009854592,0.006533656,-0.00034050594,0.019655077,0.02992225,0.043557707,0.027514402,-0.040716987,0.00058505306,-0.011545498,-0.01111939,-0.016922574,0.022685178,0.0019276314,0.0024805572,0.030815048,-0.025011864,0.02237405,-0.0028356472,0.0068312553,-0.025079498,0.03471089,-0.011180262,0.008062234,0.008887395,-0.013148475,-0.0281096,-0.024700737,-0.0103686275,-0.014893489,0.01836999,-0.01444709,0.05979039,0.0028677743,-0.01732839,0.023780884,-0.006175184,0.015069343,-0.012519458,0.03270886,-0.0056543853,-0.05578633,0.0083260145,-0.0030656103,0.00011973719,-0.029137671,-0.03276297,-0.03481911,-0.012458586,0.0018684497,0.0006586074,0.022401106,0.0210078,-0.011646952,0.01758541,0.011599607,-0.017964171,0.0030740649,0.013919528,-0.00014277577,-0.0014736234,-0.027460292,-0.011931024,0.017057847,-0.025282407,0.00065945287,-0.003997299,0.0027595565,-0.027162693,-0.0034477548,0.026351059,0.017071374,-0.0029658468,0.011734879,-0.009015904,0.022076452,-0.0020493765,-0.026581023,0.013960109,0.009590812,0.017625991],"Many to many query":[-0.012930273,0.009753236,-0.007525271,-0.03166268,-0.027893312,0.032685794,-0.015239011,0.005670877,-0.040816855,-0.023423921,0.0081714485,-0.0007967835,0.00784836,-0.0017466975,0.007895476,0.013428369,0.024473958,0.0022515233,0.015535175,-0.00871666,-0.025106674,0.009934973,-0.0030541965,0.0014084642,-0.01251295,0.030639565,0.022898901,-0.018806446,-0.0068319766,-0.0065829293,0.023868168,-0.0040150485,-0.019681478,-0.01763525,-0.033520438,0.0100494,0.0050280658,0.011422527,0.017487168,0.004496316,0.014310131,0.012021587,0.010466723,-0.01404089,0.005795401,0.008683005,0.009033018,-0.011510029,-0.014888998,0.0030138104,0.024339339,0.015939036,-0.039874513,0.025914395,0.0054723127,0.007545464,0.021054605,0.025173983,-0.0042809234,0.0014530572,0.00758585,0.0048059425,-0.0053444235,0.015050542,-0.038689855,-0.00911379,-0.017204465,-0.006101662,-0.006774763,-0.0024955226,0.026762502,0.036751322,-0.0007685974,-0.0013327403,0.0020394966,-0.020004567,0.01051384,0.011335024,-0.014619757,-0.00033402647,0.001926752,-0.03658978,-0.0013352644,0.017271776,0.000022335915,0.008521461,0.018725675,0.04178612,0.0008985901,-0.006525716,-0.0068084183,0.025443224,0.009510919,-0.013118742,0.012082166,0.008211834,-0.0076733534,0.034893565,0.01118021,-0.001620491,-0.021162301,0.003229203,-0.034435857,-0.0094907265,-0.027247135,0.029374136,-0.006946404,-0.00034959192,0.0028993832,-0.0123716,0.004516509,0.04811327,0.01935839,-0.0026049016,-0.019856485,-0.026264407,0.0055463538,-0.025954781,-0.0085483845,-0.017917953,0.016867915,0.0059266556,0.0051122033,-0.028566413,0.027597148,0.020408427,-0.023020059,0.010500378,-0.015669795,0.014498599,0.043132324,0.031689603,0.011523492,-0.009012825,-0.01404089,0.013737995,-0.012479296,0.0064920606,-0.012849501,-0.03020878,-0.002492157,0.033816602,0.00034370227,0.0021875787,-0.014875536,0.041624576,0.022441193,-0.012263903,0.007949324,-0.035432044,0.014202435,-0.006108393,0.0239624,0.0044996813,0.01124752,-0.0060848347,-0.021471927,-0.0093022585,-0.02102768,-0.019331465,0.00070885965,0.019075686,0.01390627,0.0030727067,0.0032510785,0.023020059,0.00049599144,-0.004570357,-0.006461771,-0.019816099,0.0063103233,0.034839716,-0.017339086,0.008555116,-0.00209671,0.0030138104,0.019977642,-0.0054386575,-0.015252472,-0.03287426,-0.01483515,-0.0023171508,0.014740915,0.033628136,-0.026708655,-0.0017399665,-0.0039376416,0.0083599165,0.008602233,-0.004513143,0.021498851,0.018483358,-0.007659891,-0.00691948,-0.6793475,-0.015992884,-0.0013150714,-0.006354075,0.018967992,0.0019839657,0.0031383343,0.009436878,-0.0020781998,-0.0049674865,-0.017864104,0.024447035,-0.01070904,-0.0012814164,-0.017608326,-0.020973831,0.017716022,-0.04192074,0.016477516,0.01962763,0.0015834705,0.006229551,0.015494789,0.016450593,-0.017137155,-0.015871726,-0.013589912,-0.0046814186,-0.014094738,0.0066165845,-0.028270248,0.011530223,0.0049472935,-0.026789427,0.051424928,-0.009827277,-0.007471423,0.016585212,0.0089253215,0.031635754,-0.027247135,-0.007410844,0.014713991,-0.0007126459,-0.015023618,0.0172987,0.005300672,0.016181352,0.012768729,-0.013515871,-0.0111869415,0.0059266556,-0.0091339825,-0.0064045577,0.0057449182,-0.0054925056,0.035701286,-0.014687068,0.01616789,0.0102446,0.0022801303,0.006034352,-0.048328664,-0.01104559,-0.015158238,-0.010749426,0.011664843,-0.006421385,0.0037121528,-0.012088897,0.018187193,0.01530632,0.002758032,0.0061588758,0.025591306,0.017837182,0.033978146,0.0037693665,-0.023410458,0.0025460052,0.01689484,-0.014579372,-0.023060447,0.012667764,0.011873504,0.013334134,-0.030451097,-0.0062194546,-0.008164717,0.00020256138,0.0058290563,-0.004876618,-0.002635191,-0.027597148,0.009282065,0.022925826,-0.023302762,0.01097828,0.019775713,-0.030154932,-0.021808477,-0.01696215,0.01483515,0.0035270501,0.029508755,0.0107359635,-0.009995553,-0.0011560513,0.008346454,-0.008676274,0.0068117836,0.009941705,0.00010916859,-0.0044155437,0.0038770628,-0.030774185,0.013408175,-0.008858011,-0.016692908,-0.0009886173,0.013287017,0.023504693,0.022198876,-0.014363979,0.0012082165,0.025497071,-0.025429761,-0.02202387,0.026170174,-0.0028690938,0.012883157,-0.022993136,0.030370325,-0.016221737,-0.005229996,-0.0038333111,-0.0058997315,0.0047554597,0.012196593,-0.0015708498,0.009551305,-0.00262846,0.0071281414,-0.0116581125,0.015292859,-0.019196846,-0.02894335,-0.0012704785,-0.019008378,-0.013212976,-0.0029801554,0.0014042573,-0.008817625,0.014094738,0.0085685775,0.0136572225,-0.0011442719,-0.012136014,-0.016787143,-0.0480325,0.010062862,0.022777744,-0.024298953,0.0012460785,-0.0015270982,-0.029643375,0.0030457827,0.0052602855,-0.004637667,-0.008238758,0.007929131,-0.02700482,0.010655192,0.022737358,0.0014547398,-0.017891029,-0.02182194,0.0065122535,0.017716022,-0.009154175,0.002771494,0.015090928,-0.0035573395,0.009107059,0.009652271,0.0061757034,0.011812925,0.022252724,-0.038285993,0.042674612,0.01138214,0.017244851,-0.024056636,-0.002690722,0.016154427,-0.004869887,0.00026966116,0.007410844,0.0022447924,0.017029459,0.008198372,0.014929384,-0.0007534526,0.013610106,-0.010009014,-0.022925826,-0.0029263073,-0.02509321,0.03435508,0.017608326,-0.0025628328,-0.022212338,-0.0035573395,-0.012748536,0.01677368,0.014108201,-0.025847085,0.009403223,-0.014135124,0.008460881,-0.00638773,-0.03020878,0.022414269,-0.0037289804,-0.0061723376,-0.00031635756,-0.000020416526,0.02568554,0.014027428,0.008575309,-0.010702308,0.008481075,0.0038736972,0.005896366,0.019708402,0.013812036,0.031770375,-0.030154932,0.02016611,-0.0025863913,-0.001086217,0.03201269,0.006333882,-0.015090928,0.028889501,0.010816736,0.018402586,0.008837818,0.007437768,0.030693414,0.006774763,0.008353186,-0.008312799,0.010184021,0.0038164835,-0.033628136,-0.0059030973,0.021593085,0.018994914,0.012566798,-0.0017130425,-0.009335913,0.016652523,-0.0045770877,0.017137155,0.0029936174,-0.005667512,-0.009073404,-0.013078355,-0.013650492,-0.026493262,-0.011341754,0.003050831,-0.023720086,-0.011052321,0.014337054,-0.00090616243,0.010951356,0.0031602099,0.018267965,-0.01424282,-0.0037559045,0.015804416,0.0003718884,-0.009894587,-0.015979422,-0.0036145533,0.03465125,-0.012647571,0.0039140834,0.015023618,0.014404365,-0.001099679,-0.030854957,-0.022629661,0.0035775327,0.0324704,-0.0018745867,0.020341117,0.0041092825,0.018442972,0.020179573,-0.027314445,-0.0059838695,0.037235957,-0.009362837,0.0016861184,-0.04558241,-0.0039410074,-0.013569719,-0.015279396,-0.020300731,-0.006673798,0.017850643,-0.003853504,0.0063507096,-0.0050247,0.013690878,0.040682234,-0.0071079484,-0.017339086,-0.038959097,-0.0125264125,0.039632197,0.043616954,0.027785616,-0.0063776337,-0.0031703066,-0.03912064,-0.008743584,-0.026856737,-0.032308854,0.023329686,-0.00858204,-0.013737995,-0.008952245,0.011281176,-0.010089787,0.01164465,-0.0023407093,-0.0061184894,-0.01603327,-0.001586836,-0.00971958,0.0047689215,-0.02507975,0.0055362573,0.027368294,0.033628136,0.011106169,0.019991105,0.0077473945,0.0038467732,-0.028458716,-0.010419606,0.013125473,-0.007437768,0.0024551365,-0.0062430133,0.036939792,0.011402334,-0.021795016,-0.00214551,0.026789427,0.004439102,0.0056338566,0.00069497694,0.008460881,-0.010863853,-0.02961645,-0.02135077,0.0052064373,0.014162049,-0.015360168,-0.0016053462,-0.0010407827,-0.016787143,-0.014121663,0.008151256,-0.0070608314,-0.021902712,-0.03586283,-0.038420614,-0.025645154,-0.014283206,-0.0049001765,0.040709157,0.017056383,0.0022380613,-0.041220713,-0.045393944,-0.01476784,-0.032712717,0.004617474,-0.0058189593,-0.022602737,-0.029239515,-0.005330961,0.029104894,0.01935839,0.0047218045,0.0044626608,-0.018133346,0.018954528,-0.027785616,-0.02509321,0.014862074,-0.024366261,-0.03360121,0.006481964,-0.00050566724,0.0056776083,-0.0019637726,0.017312162,-0.0183622,-0.010453261,0.0027630802,-0.018725675,0.022898901,0.004169862,0.0008464247,-0.0005044052,-0.0014395951,-0.0005145017,-0.0020394966,-0.018644903,-0.0095849605,-0.013764919,-0.007841629,0.0006857218,0.031635754,0.009934973,0.000825811,-0.0087368535,0.009100327,-0.015939036,0.013132203,0.00035632294,0.012391793,0.030370325,0.016625598,0.027785616,0.014054352,0.0022902268,-0.0010937894,-0.01684099,0.033412743,0.007935863,-0.035512816,-0.0071887206,0.004630936,-0.040682234,-0.00097599666,-0.0020563242,-0.0068622665,-0.0016785461,-0.0021572893,-0.0020596895,-0.042136133,-0.0008901763,0.0012208372,0.01603327,-0.02209118,-0.010197483,-0.013138935,-0.01510439,0.0049742176,-0.01224371,0.0058795386,-0.019681478,-0.0014454847,0.009194562,0.008965707,0.012452371,0.020785363,0.0020310828,-0.0051458585,-0.011119631,-0.007390651,-0.015885187,-0.007074293,-0.00007840577,0.018860295,0.0071012173,0.026802888,-0.00931572,0.011826388,-0.016692908,0.0029128452,0.0126206465,0.0029448175,-0.018012187,-0.010971549,0.008346454,0.044936232,0.019021839,0.020152649,0.0049540247,0.004146303,0.04490931,-0.012822577,-0.0044626608,-0.012876425,-0.014054352,0.013253362,0.008669543,-0.021054605,-0.0027815904,-0.03295503,-0.0028303904,-0.00019204417,-0.004469392,0.007013714,0.003412623,0.021135377,0.0019772346,0.006993521,-0.005300672,0.01344183,-0.015198625,-0.0077272016,-0.013011046,-0.018173732,-0.0092282165,0.009921511,0.02421818,0.019789174,0.0081176,-0.0022868612,0.018483358,-0.020071877,-0.010890777,0.0000703601,-0.01762179,0.011597533,-0.008662812,-0.0052670166,-0.00039039867,0.017662175,0.020933446,-0.016073655,0.016006345,-0.017877568,-0.022508502,-0.00070212863,-0.018119883,0.049001765,0.011705229,-0.010951356,0.023020059,-0.0047016116,-0.008871473,0.004220344,0.005223265,-0.013919732,0.021579623,0.0172987,0.0155620985,-0.030316476,0.01051384,-0.03273964,-0.007565657,-0.041489955,0.016275587,0.0045299707,0.0062497444,-0.009928242,0.0024231642,-0.013650492,0.013273555,-0.032551173,0.016867915,0.00419342,-0.020421889,-0.012398523,0.020933446,-0.016948687,0.013219707,-0.009786891,-0.025052825,0.0013865884,-0.023396997,0.0056776083,0.0059805037,-0.016396744,0.045959346,0.019291079,0.0006423909,0.017554479,0.02122961,-0.022414269,-0.00569107,0.014619757,0.027893312,-0.012324482,-0.00091794174,0.002315468,0.0018442972,0.0068689976,-0.028566413,-0.0044290056,-0.0085685775,-0.017110232,0.015494789,0.02442011,-0.015615947,0.013610106,0.0040588,-0.004065531,-0.01177927,-0.007942594,0.0073569957,0.0068757283,-0.018214118,-0.022589276,-0.010870583,-0.0047251703,0.014727454,-0.0012856232,-0.009308989,0.02135077,0.019816099,-0.02688366,0.00097431394,-0.002465233,0.0011770857,-0.034058917,0.015750566,-0.01138214,0.0021000756,0.015979422,-0.004617474,-0.0054184645,0.0031484307,0.026910584,-0.008063752,-0.008023365,-0.022064256,0.004196786,0.0031904995,0.014162049,-0.02507975,-0.016396744,0.015521713,-0.006959866,0.007821435,-0.013125473,-0.0045501636,0.010803274,-0.021121915,0.009928242,-0.012593723,-0.014687068,-0.009107059,-0.021162301,0.034893565,-0.0037289804,-0.018914143,-0.013879346,0.0056843394,-0.011833118,0.021727705,0.0051997066,-0.015467864,0.01603327,0.0067310114,0.0045804535,0.015844801,-0.011348486,-0.02315468,-0.02408356,-0.007989711,-0.014013967,-0.02582016,-0.022346959,0.0025729293,0.003644843,-0.008312799,-0.021054605,-0.00009192038,-0.030854957,-0.020300731,-0.007545464,-0.008770508,0.0093022585,0.00825222,0.007733932,0.026897123,0.0034176712,0.0011762442,-0.029239515,0.014013967,-0.015117852,-0.0040116827,0.043293867,-0.0027933698,-0.02835102,-0.018510282,0.0057045324,-0.0059333867,-0.0044626608,0.015723644,-0.006892556,0.0002822818,-0.008400302,-0.013455292,-0.00012105304,0.002527495,0.030854957,-0.033493515,-0.00094823126,0.01969494,-0.01696215,0.0023945575,0.008891666,0.010547495,0.001443802,0.008911859,-0.006138683,-0.01723139,0.0030878517,-0.006121855,0.015333245,0.03446278,0.008178179,0.02275082,-0.0000020952245,0.008595502,0.017379472,0.00020003725,-0.0017668905,-0.005563181,-0.0012401888,-0.018012187,-0.0054521193,-0.0073502646,-0.016221737,-0.018133346,-0.003473202,-0.0062261857,0.0015136362,-0.016679447,0.008346454,-0.012048511,-0.04173227,0.016194815,0.0061689722,-0.006142048,-0.0041799583,0.008218565,-0.004065531,-0.016652523,-0.007834897,0.0064718677,-0.0074041127,-0.032901186,-0.008400302,0.008635888,0.0042741923,0.018685289,0.22034639,-0.00058686006,0.0035102225,0.01790449,0.011025397,0.026466338,0.025806699,0.0013201197,0.0048227697,0.015010156,-0.03532435,-0.003215741,0.0067579355,-0.010688847,0.018685289,-0.0032426647,-0.031985767,-0.041086096,-0.015790952,-0.010762888,0.0010534034,0.01883337,0.026493262,-0.008635888,0.03812445,0.0108301975,-0.0085685775,-0.014700529,0.02170078,0.016814068,-0.007949324,-0.012883157,-0.0005077707,0.014350517,-0.011052321,0.004704977,-0.0017113597,-0.018200655,0.02448742,0.00858877,0.0009717898,0.00018520799,0.009813815,-0.01390627,0.020273807,-0.0057583805,-0.014660143,0.0030407344,-0.0054453886,0.021579623,-0.026695192,0.004923735,-0.0061757034,0.020502662,-0.00327632,-0.01750063,-0.002015938,-0.01070904,-0.008683005,-0.0024685985,-0.0077945115,0.014404365,0.0005216534,0.011550416,-0.00088344526,0.0018173731,-0.010190751,0.0056069326,0.0027344734,-0.013361058,-0.0015481326,-0.023935478,-0.01996418,0.02102768,0.018819908,-0.011025397,0.018779522,0.015871726,0.007579119,-0.0019991104,-0.026197098,-0.008427227,-0.004789115,-0.022077719,-0.034570474,-0.024931667,0.0107359635,-0.015817877,-0.003951104,-0.004072262,0.013159128,-0.005283844,-0.023020059,-0.008689736,-0.008258951,0.022387344,0.012990853,0.01044653,-0.0039881244,-0.018012187,-0.017837182,0.058263637,0.0183622,-0.0065492745,-0.01736601,-0.014538985,0.004624205,0.018483358,-0.0052872095,-0.017541016,-0.004351599,-0.006280034,-0.0044592954,-0.014404365,-0.00675457,-0.023464307,-0.0036616703,-0.029966464,-0.011449451,-0.0024029713,0.007525271,-0.039443728,0.015952498,0.0098676635,0.0019031935,-0.018442972,-0.017325625,0.0007707008,-0.023073908,-0.060579106,0.030289553,-0.03435508,0.016787143,0.0042136135,-0.0063305167,0.019668017,0.001151003,-0.008272413,-0.017594865,0.007902208,0.017527554,-0.009463802,-0.0049338317,-0.018187193,0.011833118,-0.014942846,0.015535175,-0.002429895,-0.00435833,0.0072492994,0.0018039112,-0.0017702561,-0.0026806253,-0.0053141336,0.035378195,0.0010651826,-0.015508251,-0.024204718,0.011860043,0.0072223754,-0.017217929,-0.003397478,0.035566665,-0.0066973567,-0.022871977,-0.016814068,-0.17457552,0.013724533,0.016760219,-0.007532002,0.0034631055,0.013798574,0.01655829,-0.012815846,-0.010439799,-0.008481075,0.016262123,-0.008339724,-0.035620514,-0.012358137,0.004418909,0.00019919587,0.02122961,-0.010810005,0.020610357,0.024406647,0.037882134,-0.023747008,0.007390651,-0.02295275,0.014754377,0.0057516494,-0.008891666,0.02170078,-0.014794763,-0.01537363,-0.01988341,-0.019721864,0.020704592,0.0025106673,-0.0066435086,0.019277617,0.0064112884,0.011220597,-0.0048194043,0.010258062,0.023262376,0.015965959,0.003819849,0.008407034,-0.02840487,0.024891282,0.018617978,0.0067343772,0.0071617966,0.012761998,0.025537457,-0.026372103,0.0090195555,-0.0062901303,0.0023171508,0.0058526145,-0.0008018318,0.0058256905,-0.00858204,-0.024447035,-0.002956597,-0.014862074,-0.0051727826,-0.0072964164,-0.010601344,-0.013798574,-0.0070608314,0.017325625,-0.0042068823,0.023006598,-0.019775713,-0.003819849,0.00751854,0.017837182,0.02701828,0.018267965,-0.0038434076,-0.00021812685,0.014673606,0.0018089594,-0.011409065,0.025254756,0.0071752584,0.029024122,0.00082454894,0.0013756505,-0.0011754029,-0.011126362,-0.020260345,-0.008507999,0.04113994,-0.045205474,-0.023060447,0.0015119535,0.0041429377,-0.0071819895,0.020260345,0.010332103,0.026291331,0.0032712717,0.002084931,0.009746505,-0.011025397,0.009901318,0.012230248,-0.008676274,-0.0009314037,0.0002555681,0.03667055,-0.0034210368,0.0063439785,-0.00191329,-0.010486916,0.023073908,0.0057550147,0.01390627,0.0194257,-0.00020655792,0.0020546413,0.0023794125,0.06413308,-0.0010458309,-0.0036885943,0.00805029,-0.002219551,0.006115124,-0.088418566,-0.0020209863,0.036105145,0.012829308,-0.026829813,0.03074726,-0.010009014,0.040816855,-0.0019486279,0.018523743,-0.023868168,-0.037020564,-0.0048463284,-0.016733294,0.00066300464,0.0042270753,-0.019169921,-0.0113013685,-0.017029459,0.018321814,0.006162241,-0.020246884,0.029966464,-0.0023861437,-0.015723644,0.0012889887,-0.024272028,0.017258314,0.009564768,-0.017379472,0.0005372189,-0.02215849,0.007040638,-0.014781302,-0.008393572,-0.017998725,-0.041220713,-0.0044525643,0.025106674,-0.027866388,0.00092299,-0.00392418,-0.006633412,-0.026372103,0.00091373484,-0.0114898365,-0.0029313555,0.026964433,0.009167638,-0.029697223,-0.011079245,-0.0060713724,-0.041166868,-0.016692908,0.027543299,-0.00056330155,-0.019614168,0.017850643,0.0019031935,0.030881882,-0.003739077,-0.005004507,0.006239648,0.0077810492,0.038366765,0.0006465978,-0.010318641,-0.012014856,0.007834897,0.0019082418,-0.02162001,-0.0077810492,-0.02275082,0.022710433,-0.016477516,0.008332992,-0.007505078,-0.034220465,0.005401637,-0.0016819115,-0.012889887,-0.017810257,-0.020435352,0.016208276,-0.003377285,0.016194815,0.018335275,0.010985011,-0.011429258,-0.032120388,-0.010547495,0.0131860515,0.027920237,-0.009288796,-0.014808225,0.010715771,0.0057314564,0.005647319,0.009759967,0.009753236,-0.0068286113,-0.0052266307,-0.0606868,0.03233578,-0.006508888,0.0067444737,0.010870583,-0.0066569704,0.020139188,-0.007437768,0.004466026,0.026964433,-0.009571498,0.00562376,-0.002650336,-0.014700529,-0.013663953,0.016194815,0.026977895,0.01124752,0.012048511,0.01397358,0.0061757034,-0.012667764,0.013650492,0.017137155,0.0071617966,0.010985011,-0.019654553,0.016652523,-0.010325372,-0.015023618,0.008561847,-0.026695192,-0.014485137,0.017541016,0.0013529334,-0.040036056,-0.007000252,0.016006345,0.0007387285,0.0050213346,-0.016975611,-0.014956308,-0.0016465738,0.008992632,-0.012183131,0.008299338,0.011220597,0.00751854,-0.0071819895,-0.004105917,0.019196846,0.021377694,-0.003806387,-0.013758188,-0.016302511,-0.022077719,0.015117852,-0.0007038114,0.023329686,-0.0024854261,0.02734137,0.005327596,0.018712213,-0.012196593,-0.0054521193,-0.0018358835,-0.002641922,0.006037717,0.023585465,-0.03580898,0.004304482,0.007013714,-0.0012199959,0.022845054,-0.003772732,-0.005229996,0.013287017,0.012977391,-0.0068555353,0.018685289,0.01684099,-0.02215849,-0.03080111,0.005304037,0.019519934,0.025833623,-0.0029263073,0.026372103,0.01250622,0.023020059,-0.0026318256,0.0064415783,-0.020327656,-0.01231102,-0.018914143,0.028216401,-0.017796794,0.0027025011,0.0029313555,0.023854705,0.004738632,0.015333245,-0.0057314564,-0.0077204704,-0.03912064,0.0009675829,-0.019641092,-0.022912364,-0.013233169,0.015346707,-0.0049338317,0.0070541003,-0.0053141336,0.020394966,-0.018483358,0.00698679,-0.004519874,-0.035378195,-0.025941318,0.02335661,0.005004507,0.028216401,0.0072627617,-0.008030097,0.04111302,0.030531868,-0.0021976754,-0.021068066,0.018442972,-0.0014951259,0.014148586,-0.00345974,0.007525271,0.0014446434,-0.015010156,-0.02514706,-0.0002442095,0.008918591,-0.02948183,0.052905753,0.00065921847,0.00077280425,-0.00021623375,-0.01863144,0.009174369,0.019210307,0.019991105,-0.01231102,-0.042809233,0.01996418,0.010776349,-0.003732346,-0.037962906,-0.0035304157,-0.0033217543,-0.0068757283,-0.015131314,-0.02021996,0.0022986406,0.0032864164,-0.0102647925,0.0030121277,-0.00034054712,-0.009443609,-0.006626681,0.015508251,0.0031248722,-0.00079594215,-0.031016503,-0.0010491965,-0.0066401428,-0.035835907,-0.013758188,0.010587881,-0.01696215,0.005674243,-0.0020933447,0.0042405375,0.018510282,0.004758825,0.034301236,-0.014296669,0.0029633278,0.004146303,-0.008306068,-0.011873504,-0.025389375,-0.031231893],"SELECT Products.name\nFROM Products\nWHERE NOT EXISTS (\n SELECT id\n FROM Sections\n WHERE name IN ('new','car')\n AND NOT EXISTS (\n SELECT *\n FROM Products_sections\n WHERE Products_sections.section_id = Sections.id\n AND Products_sections.product_id = Products.id\n )\n)\n":[-0.013710006,0.009879658,-0.0129307285,-0.009001319,-0.012058994,0.02355004,-0.030616373,-0.00993249,0.002568975,-0.04334898,-0.008116377,0.0023048131,-0.0050190776,-0.0043289545,0.0013199843,-0.0076805092,0.0035265624,0.017064864,0.005620046,-0.017870557,0.02222923,0.011491045,0.0012646754,-0.015479892,-0.0025359548,-0.010269296,0.020987669,-0.02619166,-0.0092918975,0.008142793,0.020657467,0.0010624265,-0.024897266,-0.03568828,-0.022876427,0.01666862,0.019283824,0.0050025675,0.03648077,0.010203256,0.0037279858,-0.007482388,0.0052205008,-0.00561014,0.027842673,0.02355004,-0.000335981,0.035582617,-0.007495596,0.003097299,0.013452448,0.034552384,-0.022057524,-0.012792043,-0.019508362,0.010190048,0.0055308915,0.03389198,-0.004150645,0.0036289252,0.029982384,0.018015847,-0.015176105,-0.008618284,-0.030748453,-0.0014974682,-0.0116891675,-0.017883765,0.007006896,0.011055179,-0.0024979815,0.02757851,-0.0117287915,0.00820223,0.032201346,-0.013016582,0.0064719683,0.016127089,-0.0016832071,-0.012785439,0.022466976,-0.03320516,-0.022929259,0.0091928365,0.01979894,0.002129806,-0.0054153204,0.056953322,-0.019706484,-0.017447898,-0.0025904384,0.024025531,0.0055374955,-0.011860873,-0.02105371,0.023114173,-0.027182266,0.035450537,-0.020195182,-0.011992954,-0.014806278,-0.0036949655,0.0039492217,0.005134648,0.004253008,0.017698852,-0.020644259,-0.025584087,-0.0011226884,0.0002270142,0.0005964282,0.03048429,0.046571754,-0.03756383,0.0030609767,-0.0028546003,0.003777516,-0.009410771,-0.013538301,-0.016087463,-0.00096088916,-0.0045105657,-0.0024880755,-0.026614318,0.036639266,0.01396096,-0.036005277,-0.009503227,-0.00958908,-0.02111975,0.035609033,0.030748453,0.020815963,-0.021357495,-0.014674198,-0.0022107055,-0.029876718,0.040628113,-0.013082622,-0.024434982,0.0018606909,0.013538301,0.0014900386,0.015585557,0.006874815,0.03111828,-0.0065842373,0.008948487,-0.019547986,0.00774655,0.026152035,0.010718372,0.006967272,-0.018108303,0.0187555,-0.021436743,-0.010619312,0.0032326821,0.0043685785,-0.017051656,0.015611973,-0.0017649322,-0.016298793,-0.010130611,0.016008215,0.021423535,0.025438799,0.016140297,-0.017012032,0.00047384054,0.003333394,0.01017684,-0.024461398,-0.00074047904,0.008618284,-0.0038435566,0.017738476,-0.00074378104,-0.019046078,-0.0300088,0.013908127,0.00086513045,0.027446428,0.022123566,-0.005468153,-0.0044775456,-0.006029497,-0.0023064641,0.006841795,-0.0031534336,-0.011491045,0.021529201,0.0035727907,-0.021978276,-0.6120105,-0.022744346,0.006676694,-0.011550482,0.030801285,0.013227911,0.00892207,0.011028762,-0.01562518,0.01590255,0.0019201273,0.010328733,0.008783385,-0.00063440145,0.0043652765,-0.0116363345,0.028001169,-0.02958614,0.018795123,0.040126204,0.011259904,0.013776047,0.022136774,0.0071719973,-0.015572349,0.04326973,0.0039756377,-0.011907101,0.01479307,0.004688875,-0.02244056,0.032412674,0.0005287367,0.012897708,0.045171697,0.014594949,-0.009734369,0.029955968,0.022268854,0.034076896,-0.03674493,-0.022929259,0.017474314,-0.02924273,0.017276192,0.00833431,0.01639125,0.0154402675,-0.002806721,-0.018359257,0.0052039907,-0.016298793,-0.0394658,0.004678969,0.016510123,-0.020366888,0.033310823,-0.016628996,0.024950098,0.01818755,0.020974461,0.007898443,-0.022110358,-0.009153212,-0.025808625,0.0059733624,-0.004157249,-0.019693274,-0.0023824107,0.0034770318,0.01569122,0.015572349,-0.012633546,0.01438362,-0.014423244,0.00428933,0.046017013,0.037748747,0.010685352,0.021080125,-0.0022486788,0.0035463744,-0.02640299,0.0007062205,0.010625916,-0.012996769,-0.030801285,-0.017804516,-0.00043297798,0.013280743,0.007548428,0.029955968,0.0052865413,0.0040647923,0.010718372,0.005791751,0.009021131,0.03162019,0.016774286,-0.05217199,-0.006514895,-0.021515993,-0.0020489062,-0.0001856357,0.02195186,0.017474314,0.008255062,-0.013478865,0.0074361595,-0.0104806265,0.0070333127,-0.01312885,-0.01792339,-0.014872319,-0.000006342854,-0.026495446,0.022004692,-0.022057524,-0.019297032,-0.01368359,0.0042166854,0.015110064,0.006151672,-0.028529493,0.012230699,0.035107125,-0.006138464,0.003349904,-0.0029569631,-0.014581741,0.03069562,0.013518489,0.023999115,-0.013498677,-0.0038171406,0.0034208975,-0.012541089,0.018359257,0.013419428,-0.026548278,-0.007488992,-0.0006422438,0.014740238,-0.002417082,0.0014611459,-0.019614026,-0.045620773,0.0057025966,-0.030801285,0.0104476055,-0.01784414,-0.0044808476,-0.033707067,0.00017965077,0.0077069253,-0.0059238323,-0.024302902,-0.033178743,-0.023682121,-0.009060755,-0.0058346777,0.020538593,-0.007832402,-0.008532432,-0.0064752703,-0.011669355,0.025042554,0.029744638,0.010374961,-0.017804516,0.0039987518,-0.0057125026,0.019561194,-0.002684546,0.0016146901,-0.0141458735,-0.029401228,0.022123566,0.008281478,0.0046096263,-0.0027489355,-0.010071175,-0.008499412,0.003926107,0.013577925,0.0071125613,0.022004692,0.014079833,-0.051141758,0.0300088,0.002671338,0.012798647,-0.01965365,-0.0004944782,0.007000292,0.02472556,0.02222923,0.0027836068,-0.0060592154,0.014528909,-0.002659781,0.0015734148,-0.01131934,-0.007772966,0.011398589,-0.011484441,-0.013987376,-0.012217491,0.026231283,0.0009245669,0.019719692,-0.007522012,-0.010771205,-0.011794832,-0.0032838634,0.03069562,-0.0075616366,0.013577925,-0.001141675,0.033654235,0.016127089,-0.016140297,0.018147927,-0.017976223,-0.016444083,-0.0052403132,0.023233045,0.0092390645,0.018663043,-0.020948045,-0.030669205,0.0010508694,0.0192442,0.0064092297,0.002570626,-0.014542117,0.029929552,-0.031356025,0.024329318,-0.016774286,0.0007347005,0.03418256,-0.019904604,-0.0044841496,0.030669205,-0.0055738175,0.017262984,0.02167449,-0.011576898,0.026865272,-0.0030097954,0.011576898,-0.0102759,-0.0012077155,0.01177502,-0.028952152,-0.013525093,0.026508654,0.018491337,0.0023791087,0.017487522,-0.007020104,0.03917522,0.016100673,0.0020538594,0.011431609,-0.0019267313,-0.03563545,-0.006032799,-0.021198997,0.008651305,-0.022533016,0.008037128,-0.019891396,-0.008076753,0.008340914,0.0020142351,0.009879658,0.035159957,0.027129434,-0.013670382,-0.006967272,0.033654235,0.011431609,-0.009047547,-0.0040912083,-0.010923098,-0.0067823585,-0.04799823,0.02369533,0.018451713,0.03280892,0.0052568233,-0.0074163475,-0.020948045,0.008849426,0.035873197,0.018438505,0.012798647,-0.010751392,-0.019323448,-0.0005262602,-0.01756677,-0.006960668,0.061179914,-0.00018862815,0.017315818,-0.03119753,0.0053988104,-0.023312295,-0.010691956,0.0092192525,0.008506016,0.0007458448,-0.0080503365,-0.00063729077,-0.020115934,0.015545932,-0.0062276185,0.01177502,-0.008935278,-0.03819782,0.002293256,0.014396828,0.02813325,-0.011907101,-0.024606688,0.006726224,-0.0154270595,0.009727765,-0.034922212,-0.027076602,0.021832988,-0.0032574474,-0.0067889625,-0.040865857,0.019891396,-0.038012907,0.0012448633,-0.0011524066,-0.005339374,-0.023114173,-0.026376573,-0.014766654,0.003744496,-0.011405193,-0.020063102,-0.0047450094,0.01374963,0.009126796,0.04739066,-0.00722483,0.015572349,-0.029638974,-0.016893158,-0.0029305469,0.005979967,-0.006003081,0.0062672426,0.009126796,0.007396535,0.01694599,0.016272377,0.006141766,0.016364833,0.034658052,0.004807748,-0.0133732,-0.022995299,0.0033730182,-0.027842673,0.037616666,-0.020366888,-0.020736715,-0.005494569,0.013241119,-0.016721454,0.0077927783,0.013115642,0.0047681234,-0.0022717929,-0.016576163,-0.012138243,-0.051987074,0.011570294,-0.0005951899,0.04237158,0.010526855,-0.014343995,-0.012230699,-0.025716167,-0.0021198997,-0.033020247,0.0063795117,0.0022305176,-0.0022173095,-0.0133732,0.009800409,0.024897266,0.026442613,0.0092522735,0.012323156,0.001471052,0.009146608,-0.026799232,-0.043877304,0.0365336,-0.021040501,-0.0187555,0.0036916635,-0.0010929701,0.014264747,-0.011365569,-0.005114836,-0.010843849,-0.013498677,0.029374812,-0.013564717,0.04765482,0.00854564,-0.0017302609,-0.0050157756,-0.00028830802,-0.019415906,-0.0141326655,-0.012349572,0.008281478,-0.027420012,-0.014343995,-0.008842822,-0.004962943,-0.01562518,0.013260931,-0.011325944,0.018029055,-0.00076400593,-0.0052766353,-0.005336072,-0.0060988395,0.0069012316,0.011880685,0.019006453,0.0050421916,-0.007006896,-0.017949807,-0.00958908,0.027446428,0.016985614,-0.03162019,0.0057191066,-0.011378777,-0.034076896,-0.0015857973,0.018095095,-0.011543878,0.0040780003,-0.0018095095,-0.008730553,-0.024236862,-0.02612562,0.01965365,0.028238915,-0.016589371,-0.011160843,-0.009773993,-0.032069262,0.009919282,-0.018068679,-0.0038501606,-0.016140297,-0.008842822,-0.0017187038,-0.009826825,-0.0044841496,0.031144697,0.017474314,-0.020380097,0.008882446,-0.018372465,-0.028080417,-0.017804516,-0.0116891675,0.014106249,0.023444375,0.041552678,-0.008043732,0.0069474597,0.003595905,0.009958906,0.016232753,0.017804516,0.010685352,-0.016219545,0.0092918975,0.011497649,-0.011048574,0.020036686,0.0027208682,-0.026231283,0.06334604,0.010751392,0.0016840326,-0.0035859987,0.009476811,0.0070465207,-0.015664805,-0.00018357193,0.008677721,-0.019468738,-0.013518489,-0.004698781,0.008195625,-0.015744053,0.008294686,0.058009967,-0.0022090545,0.0055606095,-0.0048671844,0.0072908704,-0.02514822,0.0247916,-0.029506892,-0.022242438,0.00058033084,-0.017751684,0.030906951,-0.0041770614,-0.012078806,-0.006191296,-0.0013331925,-0.015321394,-0.017461106,0.013287347,-0.025399173,0.0128845,-0.015110064,-0.013208099,-0.0016196431,0.020314056,0.010724976,-0.002128155,0.0011961585,-0.003077487,-0.043877304,-0.015466684,-0.056636326,0.07518049,0.019125327,0.024804808,0.028872903,0.023021717,-0.015268562,0.0059469463,0.00080321747,-0.023748161,0.029506892,0.017738476,-0.007356911,-0.039650712,-0.0063828137,-0.0030395137,-0.021648074,-0.025610503,0.029823886,0.000402847,0.03069562,-0.005768637,0.00033680652,-0.023946283,0.009602288,-0.01820076,0.01340622,0.023285877,-0.00086430495,-0.033310823,-0.002400572,-0.030722037,0.02640299,-0.0043850886,0.0046030222,0.001743469,-0.015572349,-0.007825798,0.0092786895,-0.0014660989,0.022044316,0.024276486,-0.006300263,0.021132957,-0.0004065618,-0.019719692,0.0050091716,0.026759608,0.027261516,0.011444817,-0.03286175,-0.008783385,0.007231434,0.013643966,-0.026984146,-0.011656147,-0.013604341,-0.02771059,0.019957436,0.009906074,0.004999265,0.0010261042,0.003754402,-0.001329065,-0.008459787,0.00892207,-0.011292924,-0.0067889625,0.01709128,-0.029506892,0.0064092297,0.004157249,-0.016232753,-0.0005270857,-0.02425007,0.015044024,0.0037279858,-0.0052171987,-0.011391985,-0.029823886,-0.0066106534,-0.0012267021,0.0021628262,0.000117841,0.031408858,0.0025821833,-0.003513354,0.006679996,0.003879879,0.013828879,0.012158055,0.000057837024,-0.024606688,0.029004984,-0.0080107115,0.018081887,-0.0043520685,-0.004662459,0.026376573,-0.008393747,-0.0011391985,-0.0004750788,-0.007898443,0.007964483,-0.009879658,-0.018610211,-0.0019118723,-0.014040208,0.001549475,-0.025835041,0.024553856,0.012111827,-0.01264015,-0.022929259,0.00077638857,-0.0059238323,0.013432636,0.0075814486,-0.017342234,0.020234806,-0.004586512,-0.0017979525,0.019389488,-0.007872026,-0.009054151,-0.020565009,-0.0024666125,-0.036560018,-0.020432929,-0.0116891675,0.03756383,0.006528103,-0.011074991,-0.016708246,0.01812151,-0.016787494,0.01999706,-0.0133732,-0.0017104488,0.017117696,-0.0074163475,-0.036137357,0.036586434,-0.0003413468,-0.00861168,-0.016589371,0.010625916,0.002555767,0.006874815,0.051722914,-0.014277955,-0.014093041,-0.034473136,0.008809802,0.024144404,0.017474314,0.024091572,-0.028186083,-0.012488257,0.022823595,-0.028001169,-0.009826825,0.00066824723,0.021146165,-0.057481647,-0.007819194,-0.012699586,0.017038448,0.006187994,0.040997937,0.012679774,0.008598472,-0.007218226,-0.009952302,-0.003939315,-0.019283824,0.020446137,0.003341649,0.0064191357,-0.00043669276,0.043454643,0.0026300626,-0.03529204,-0.007205018,-0.007832402,0.010691956,-0.011127823,-0.00045856868,-0.024329318,0.01270619,-0.01764602,-0.014911943,-0.011266508,-0.012415613,-0.01396096,0.030061632,0.010097591,0.012818459,0.0024401962,-0.00086347945,0.012210887,0.017408274,0.0052700313,-0.0076012607,-0.042688575,-0.020802755,-0.043718807,-0.014291163,0.021423535,-0.016417667,-0.017196944,-0.019389488,-0.012659962,-0.012825063,0.034895796,0.18396239,0.0024913775,-0.004163853,0.023748161,0.030325795,0.012877896,-0.0043949946,-0.010566479,-0.011061783,-0.0041737594,-0.039888456,-0.017593186,0.018240385,0.0059568523,0.020129142,-0.015123273,-0.01396096,-0.040311117,-0.023365127,-0.0105004385,-0.0038930872,0.00018666757,-0.017619604,-0.016483707,0.036850594,-0.016179921,-0.03056354,0.013260931,0.004698781,0.011259904,-0.020115934,0.0057488247,0.010540063,0.011306132,-0.016100673,0.0060724234,0.0024633105,0.008492807,-0.0024385452,-0.010282504,0.016087463,-0.028238915,0.0043949946,-0.011081595,-0.010104195,-0.032914583,-0.034499552,0.022387726,-0.009245669,-0.00996551,-0.024910474,0.01583651,0.02118579,0.014911943,-0.0017748382,-0.0027406805,0.0031534336,0.010295712,0.002278397,0.0059205303,-0.0142251225,0.041552678,-0.021291455,0.018213969,0.0069474597,0.014489284,-0.040680945,-0.0031303193,-0.0037841203,0.014687406,0.007363515,-0.011933517,-0.0011903798,-0.019640442,0.0017781403,-0.008380539,-0.0076078647,0.01937628,-0.0023444374,0.014304371,-0.0062441286,-0.007555032,-0.028635157,0.01694599,-0.031963598,-0.00051346485,-0.009404167,-0.011035366,-0.017606396,-0.021000877,0.0028925736,-0.017421482,-0.02855591,-0.026904896,0.00213641,0.02410478,0.0006430693,-0.0030510707,-0.03151452,-0.018570587,-0.035476953,0.04009979,-0.011193863,0.013399616,-0.02889932,0.01131934,0.027393596,0.011167447,0.018491337,-0.0041869674,0.0049167145,-0.013947752,-0.028529493,-0.009747577,0.010672144,0.0031831518,0.020815963,-0.0028463453,-0.022678304,-0.02244056,0.039386548,0.014396828,0.01632521,0.0022503298,-0.002656479,0.006874815,-0.012336364,-0.0032359841,-0.001877201,-0.059647772,0.0070729367,-0.028925736,0.0010483928,0.019059286,0.02541238,-0.0019746108,-0.0072710584,0.0029222919,0.009087171,-0.003741194,-0.012435425,0.024184028,-0.01820076,0.027076602,0.019772524,-0.017672436,0.0038930872,-0.0070861448,-0.024699144,-0.017038448,-0.025121804,0.0052700313,0.001201937,-0.009318314,0.03381273,-0.014951567,-0.012897708,-0.016061047,0.012508069,0.015044024,-0.03325799,0.0009237414,0.027631342,-0.004418109,-0.009470207,-0.027816255,-0.16452007,0.014977984,0.037537415,-0.0057191066,0.037590247,-0.015585557,0.02612562,0.0036619452,0.022149982,0.003876577,0.029084234,-0.005804959,-0.039228052,-0.024091572,-0.02188582,-0.009985322,-0.003363112,0.016444083,0.0619724,0.014700614,0.04688875,-0.005514381,-0.0017385159,0.012772231,-0.012699586,-0.008690929,-0.010031551,-0.0064059277,-0.003486938,-0.036586434,0.013987376,-0.017381858,0.0066535794,0.0039723357,0.0052006887,0.011444817,-0.00013579577,-0.02736718,-0.017606396,0.0011936818,0.0071323733,0.018068679,0.03146169,0.008030524,-0.0022354706,0.008928674,0.012316552,-0.01756677,0.021965068,-0.015942175,0.03349574,-0.022559432,-0.018742291,0.00306593,-0.01177502,0.018147927,-0.0043982966,-0.015308186,-0.0029652182,-0.0076144687,0.0049167145,-0.02090842,-0.018240385,0.02118579,-0.012831667,0.0013513536,0.0050322856,0.026495446,-0.017791308,0.006855003,-0.01229674,0.0009881309,0.0037874223,-0.016483707,0.0040383763,0.008354123,-0.015730845,0.0010475673,-0.00008136395,-0.0071653933,-0.019019661,0.045805685,0.024395358,0.021476367,-0.0071455813,0.0011887288,0.0020885307,-0.01208541,-0.02001027,0.006683298,0.02333871,-0.015598765,-0.0055374955,0.013518489,0.034895796,0.034790132,-0.0019366374,-0.0092918975,-0.0035562806,-0.00051346485,0.0091334,-0.01722336,-0.032888167,0.010223068,0.0205518,0.030088048,0.0030395137,0.008486203,0.05328147,-0.0172894,0.0025012838,0.00931171,0.005623348,0.013525093,0.026574694,0.014396828,0.021595242,-0.0038402546,-0.011682563,0.012323156,0.027129434,-0.0075814486,0.019891396,0.0047053853,0.0072908704,-0.0016072604,-0.081256226,-0.045594357,0.025861457,0.031540938,-0.022282062,0.012455237,0.013577925,0.02889932,-0.034499552,0.029163482,0.00667009,-0.003513354,-0.02417082,0.0017963015,0.017804516,0.0079842955,-0.023008507,-0.00854564,-0.021423535,0.00671962,-0.035397705,-0.01862342,0.014502492,-0.018438505,-0.011187259,-0.0062474306,-0.008783385,0.0069474597,0.0033185347,0.011616522,-0.033918396,-0.02133108,-0.0117353955,-0.009945698,-0.019825356,-0.011874081,-0.011808041,-0.010355149,0.023391543,0.008413559,0.011808041,0.006726224,0.023867033,-0.027684174,-0.0047549154,-0.031091863,0.0032293801,0.059119448,-0.0005832201,-0.016153505,-0.019257408,-0.0164705,-0.0042331954,-0.04041678,0.022651888,0.013776047,0.00095428515,0.029823886,0.00006578252,0.0069012316,-0.014991192,0.0045006596,0.01694599,0.02291605,0.027129434,0.008961695,-0.023034925,-0.00007176744,0.013855295,-0.027472844,-0.022757554,-0.0009848288,-0.022533016,0.021621658,-0.003876577,0.012290136,-0.004457733,-0.022599056,0.007541824,-0.028265331,-0.011451421,-0.025755793,-0.011973142,-0.014304371,0.039782792,0.015678013,0.0030329097,0.012442029,-0.02465952,-0.032597587,0.0058313757,-0.015995007,0.050719097,-0.02035368,-0.011841061,0.009615496,0.0059139263,-0.025570879,0.018095095,-0.0177781,-0.000031162857,-0.030193713,-0.062342227,0.013287347,-0.010341941,0.0010112451,-0.007105957,-0.006528103,-0.0014206961,-0.026231283,-0.009324918,0.0035826967,-0.03780158,0.01862342,-0.01896683,-0.024302902,0.004312444,0.010672144,0.024197236,0.038461983,0.0003157561,-0.020115934,0.019666858,-0.013921336,0.021832988,-0.0031154603,-0.0042431015,0.0017087978,-0.03798649,0.0141326655,-0.00006387354,-0.010639124,0.03904314,-0.004163853,0.014066625,0.015149689,-0.016840326,-0.020895211,-0.013828879,0.000036451256,0.028608741,-0.025135012,-0.02244056,-0.01958761,0.004936527,-0.012818459,-0.043375395,-0.018213969,0.014991192,-0.0015940524,-0.0064686663,-0.00074914686,0.018372465,0.013214703,0.00916642,-0.022546224,0.006551217,-0.030246546,0.010150423,-0.013881711,0.021595242,-0.0141590815,0.04134135,0.009298502,0.0422395,0.0011557086,-0.0016386297,-0.015862927,0.00054648507,-0.008380539,0.007218226,-0.001872248,-0.010876869,-0.030061632,-0.0252803,-0.011345756,0.02146316,-0.015506308,-0.0021149467,0.018280009,0.006323377,0.0150044,0.0187555,0.0072908704,-0.011933517,0.008367331,0.039333716,0.017883765,-0.00993249,-0.002296558,-0.011213676,0.0029833792,-0.0071786013,0.014291163,-0.036295854,-0.018213969,-0.019851772,0.021529201,-0.028503077,-0.024117988,-0.008565452,0.0092060445,-0.00787863,0.01153067,0.005091722,0.0013133803,-0.0045402837,0.035344873,-0.011299528,-0.033099495,-0.01792339,0.0024253372,0.009542851,-0.0059370403,0.001196984,-0.002677942,-0.01201937,-0.0016295492,-0.003909597,-0.019389488,-0.026482238,0.03529204,-0.011557086,0.021093333,0.018306425,-0.011662751,0.037484583,0.03822424,0.010308921,-0.033469323,0.023391543,-0.020366888,0.00086017745,-0.016549747,0.014251539,-0.01569122,-0.010956118,-0.034473136,0.00968814,-0.017513938,-0.008076753,0.07887877,-0.012851479,-0.011332548,-0.013577925,0.0013397965,0.03909597,0.034261808,0.0104872305,-0.02382741,-0.05468153,0.038514815,-0.0015610321,0.01820076,-0.016576163,0.004295934,0.0035529784,-0.01687995,-0.020472553,-0.0117287915,-0.0031583866,-0.0020125841,-0.007931463,0.023378335,0.008717345,-0.012270324,0.0034539178,0.01660258,0.008657909,0.0040647923,-0.03716759,0.014238331,-0.0062342226,-0.026574694,0.003341649,0.015321394,-0.009331522,-0.02111975,0.021291455,0.015202521,0.025465215,0.019983852,0.026284115,-0.031593774,-0.0036421332,0.008453183,-0.0030428157,-0.018953621,0.014581741,-0.020802755],"How to merge this two query statement into one query statement":[-0.020291159,0.022302244,-0.0034621877,-0.0033651008,-0.031678062,0.016560249,0.0009717357,-0.026102502,-0.039167624,-0.0385851,0.023217635,0.012316165,0.018432638,0.00037014374,0.010679557,-0.015048467,0.011012427,-0.0036060843,0.011324491,-0.0064007994,0.0053259092,-0.0020336234,0.02805811,-0.0125519475,-0.009230189,0.0123716425,0.0053917896,-0.02956989,-0.026255067,0.025825111,0.0056241043,-0.0069729188,-0.0067718104,-0.036948495,-0.017503379,-0.0067683426,-0.0075866464,0.013356381,0.023730809,0.010457644,0.021525549,-0.007787755,0.0031570573,-0.0027843132,0.003205601,-0.002614411,0.018238464,-0.022954114,-0.025783503,0.004684442,0.017378552,0.017961074,-0.067905344,-0.003222938,-0.01866842,0.022635113,0.009895927,0.045103792,-0.025589328,-0.026102502,0.021262027,-0.0115256,0.0121636,0.0014589038,-0.038141277,-0.0021324442,0.0015447217,-0.007447951,-0.005422996,0.02151168,0.023619851,0.029736325,0.0014242299,0.00841882,0.023522764,-0.01715664,0.023633722,0.006688593,0.011338362,-0.0038141275,0.014979119,-0.02244094,-0.010776645,0.00918858,0.014729467,0.005471539,0.021372983,0.04582501,-0.028169066,-0.024979068,0.018959682,0.042191185,0.015617119,-0.010721166,-0.010339753,0.018890334,-0.018501986,0.041331273,-0.0032541442,-0.008703146,-0.01933416,-0.007572777,-0.039417274,-0.007163625,-0.02617185,-0.0049826377,-0.014660119,-0.004192073,-0.0018065096,-0.012108121,0.022635113,0.021858418,0.02396659,-0.026934676,-0.004237149,-0.016851509,0.00537792,-0.0236892,-0.017004075,-0.003800258,0.009875123,0.015076206,0.016324466,-0.0020006832,0.033619802,0.018876465,-0.033148237,-0.012205209,-0.014299511,-0.01711503,0.03309276,-0.0057038544,0.0024514438,0.0040707146,-0.0048647462,0.017336944,-0.011511731,0.0052357567,-0.027711371,-0.018127508,-0.008925059,-0.004226747,0.017919464,-0.014410468,-0.010124775,0.027822327,0.027239805,-0.0044035837,-0.009708689,-0.023758547,0.012836273,-0.012350839,0.011054035,0.009514514,0.006050593,0.001962542,-0.02710111,-0.0017683683,-0.00019688267,0.017503379,-0.019167725,0.022232896,0.0067232666,0.008203842,0.008800233,0.038779274,-0.009417428,0.00011507396,-0.020651767,-0.025409024,0.010506188,0.023814026,-0.006272506,0.008488168,-0.00052487594,-0.00032593455,0.0067093973,-0.006109539,-0.009327276,-0.008127559,0.011615752,0.0033876388,0.00083304016,0.0233702,-0.008807167,-0.033397887,-0.008141429,0.0033234921,0.0008971868,-0.008446559,0.0067579406,0.028321631,0.01682377,-0.013231555,-0.626682,-0.015228772,0.017031813,-0.042745966,0.020748854,-0.015811292,-0.005610235,0.012489534,0.00040763489,0.042635012,-0.014521424,0.047184225,-0.010637948,-0.017544987,-0.0109777525,-0.013834881,0.002586672,-0.031206498,0.0003820629,0.00016210042,-0.012288426,0.0025155905,0.017142769,0.019348029,-0.004271823,0.0004059012,-0.00024401749,-0.019264812,-0.0074063423,0.024743285,-0.04052684,0.009771101,0.022912504,-0.029653108,0.047711268,-0.00020511771,-0.012836273,-0.0049618334,0.00020284225,0.033120498,-0.023522764,-0.011740578,0.0081899725,-0.015450684,0.0012482599,-0.0141816195,0.019445116,0.005558224,0.019264812,-0.01589451,-0.010929209,0.014029055,-0.003488193,-0.004951431,0.010201057,0.002501721,0.033397887,-0.0033772367,0.012864012,-0.00022256302,0.012232947,0.01778077,-0.01261436,-0.014563032,-0.019597681,0.022288375,0.01090147,-0.000051116895,0.01805816,-0.01590838,0.014701728,-0.008252385,0.0063175824,0.015048467,0.014771076,0.0048751486,0.036393713,0.0050866595,-0.0025450634,0.018501986,0.024063678,-0.022010984,-0.009930601,-0.018807117,0.011560274,0.007642125,-0.025533851,0.0056137023,0.006047126,-0.007281516,0.004663638,0.013065121,-0.0023162158,-0.0018827921,0.02239933,0.011435448,0.003595682,-0.00070648047,0.018654551,-0.031844497,-0.012038774,-0.03018015,0.02022181,-0.020734984,0.04055458,0.003994432,-0.013606033,-0.0049791704,0.023078939,-0.0060540605,-0.014257902,-0.023162156,-0.004680975,0.0051317355,-0.0027149653,-0.036282755,0.016906988,-0.016962465,-0.0032697476,0.0015507896,0.0028068512,0.008827971,0.027961023,-0.0050623873,0.0115394695,0.005558224,0.0072399075,-0.009687884,0.009181646,-0.013751663,0.026879197,0.004847409,0.021067854,-0.024063678,-0.00085557817,-0.0023456884,-0.019375768,0.027142718,-0.0019035965,-0.022177419,0.021691984,-0.005287768,0.019694768,0.0030929106,0.010575536,-0.012253752,-0.016560249,-0.0025415958,-0.03980562,-0.0070596035,-0.017017944,-0.01075584,-0.027004024,-0.0002157366,-0.0042336816,0.0036130191,0.0015750614,-0.02206646,-0.016879248,-0.023897244,0.01679603,0.010776645,-0.016574118,-0.022329984,-0.013307838,-0.03331467,0.0040984536,-0.0032038672,-0.008439624,-0.018807117,0.019417377,-0.008710081,0.0027028294,0.008606059,0.006584571,-0.003170927,-0.03891797,-0.0017120232,0.010589405,-0.013834881,0.01137997,0.013959707,0.0012109855,0.012808534,0.014618511,0.00038986452,0.007115082,-0.013404924,-0.053120397,0.03703171,-0.0047919312,0.028321631,-0.003949356,0.0019989496,0.0135297505,0.02805811,0.007482625,0.011109513,0.014015186,0.019583812,0.031927716,0.035173193,0.011178861,0.01773916,-0.00083520723,-0.010762774,0.006567234,-0.03364754,0.03267667,0.017503379,0.00763519,-0.037641972,0.002988889,-0.0094937105,0.018155247,0.015839031,-0.017503379,0.015797423,-0.0103813615,0.0141816195,0.026144112,-0.026282806,0.022857027,-0.009216319,0.0099097965,-0.016296728,0.015797423,0.041580927,0.003228139,-0.0030114271,-0.009847384,0.00054958113,0.015769685,0.012260687,0.019583812,0.017614335,0.025020678,-0.012170535,0.02740624,-0.014632381,-0.0019278681,0.012662903,0.016671205,-0.017822377,0.021442331,-0.004618562,0.04144223,0.018432638,0.019694768,0.008266254,-0.0063037127,0.001508314,-0.007732277,0.005943104,0.010943078,-0.019126115,-0.025006808,-0.0013626837,0.021747462,0.009660145,0.00467404,-0.018848725,0.010429906,0.007732277,0.0028345904,0.0063106474,-0.00515254,-0.00918858,-0.0020613626,-0.027517198,-0.0073092557,-0.02585285,0.017905595,-0.030291108,-0.0068792994,-0.005149072,-0.007829363,0.0063141147,0.018016553,0.014882033,-0.021275897,-0.007815494,0.016338335,-0.00209777,-0.026532458,-0.005173344,-0.009389688,0.012898686,0.00073768693,0.013446533,0.004077649,0.0034413834,0.017101161,0.00094659714,-0.032510236,-0.0033911061,0.020707246,-0.011012427,0.025200982,0.011137253,-0.011407709,0.010658753,-0.020721115,-0.009798841,0.044438053,-0.020124724,0.027988762,-0.053619698,0.032593455,-0.0003599583,-0.022288375,-0.0027392372,0.012822404,-0.004192073,0.006903571,-0.005849485,-0.010103971,0.009902862,0.019417377,0.0004997374,0.0032402747,-0.045935966,-0.013696185,0.0139458375,0.034035888,0.02120655,0.0043377033,0.010672622,-0.024354938,0.026421502,-0.017863987,-0.04199701,0.03051302,-0.019819593,-0.010395232,-0.005103996,0.008287059,-0.0047919312,0.020693377,-0.0069867885,-0.006584571,-0.0153952055,-0.019389637,-0.0078016245,0.0016825504,0.005093594,0.009778036,0.013931968,0.013807142,0.001992015,0.026532458,-0.008342537,-0.0028814,-0.018529726,-0.011255144,0.020152463,0.014854293,0.0042510186,0.00023816626,0.033536583,0.0058910935,-0.0134395985,-0.007191364,0.018432638,-0.0069070384,0.02116494,0.016366074,-0.015436814,0.014618511,-0.01807203,-0.013099794,0.0077461465,-0.0068550273,0.0072884513,0.007787755,-0.03389719,-0.028099718,0.0020058844,-0.0045214747,0.0050623873,-0.027295284,-0.041192576,-0.0224132,-0.02805811,-0.013141403,-0.02122042,0.05520083,0.013238491,-0.014188555,-0.035644755,-0.024022069,-0.018127508,-0.01122047,0.00252946,-0.02181681,-0.01621351,-0.026976284,0.01185847,0.018085899,0.0043377033,0.014438206,0.0063626585,-0.010367492,0.0006063596,-0.04080423,-0.027711371,0.012628229,-0.0075866464,-0.027503327,-0.022510288,-0.014063729,0.014784945,-0.0108876005,0.037947103,0.012115057,0.021137202,0.02618572,-0.02556159,0.0161719,0.031012325,0.021636507,0.003997899,0.012600491,0.010894535,0.002109906,-0.014701728,-0.0002628714,-0.013474273,-0.025908329,-0.011754448,0.037253626,0.013210751,-0.007829363,0.00017867888,0.02839098,-0.023911113,-0.0008408418,0.018807117,0.027850065,0.01679603,0.009278732,0.008030472,-0.0088418415,0.01434112,0.0010116106,-0.023744678,0.02551998,0.012905621,-0.026574068,0.003243742,-0.0025155905,-0.016671205,0.0004954032,-0.010041558,-0.010769709,0.010700362,0.008855711,0.013821011,-0.02490972,0.005135203,-0.013592164,0.013356381,-0.014882033,-0.013786337,0.0005001708,-0.018848725,0.0006787413,0.0041851383,-0.002791248,-0.013030447,-0.006584571,-0.004299562,0.007260712,0.009140037,0.019819593,-0.010894535,-0.0073300595,-0.0001422713,-0.012399382,-0.027683632,-0.010790514,0.003997899,0.024077548,0.021262027,0.037225883,0.0057038544,-0.0018117107,-0.0027323023,-0.0044139856,0.00827319,0.0025554656,-0.0009569993,0.0047191163,0.0068307556,0.034202322,0.0025797372,0.0040915185,0.013543621,-0.0047191163,0.031650323,-0.012649034,-0.0042475513,-0.021234289,-0.024133025,-0.0055062133,-0.00839108,-0.004372377,0.0012023171,-0.046629444,-0.023730809,-0.0013973577,-0.012302295,0.028737718,-0.02585285,0.020083116,-0.0052357567,0.021345245,-0.003782921,0.008925059,-0.013737794,0.0056241043,-0.0034812582,0.007732277,-0.0036130191,0.0054333983,0.007988864,-0.0045977575,-0.007760016,0.013377186,0.009472906,-0.022177419,0.006234365,0.012753055,-0.0055998326,0.004781529,-0.00662618,-0.0054888763,0.020859811,0.02024955,0.031705804,-0.014056793,0.007510364,0.013425729,-0.039361797,-0.009355015,-0.024826502,0.038474146,-0.000023960198,-0.006903571,0.027281415,0.0074548856,-0.004680975,0.023203766,-0.007350864,-0.01866842,0.016074814,0.042524055,0.009882058,-0.024840374,-0.00016697643,-0.010963883,-0.010485384,-0.032482497,0.041248057,0.0029178075,0.0069798534,0.010478449,-0.0102357315,-0.026698893,0.009001341,-0.006965984,0.023134418,0.006289843,0.00529817,-0.017988812,0.018626813,-0.026740503,0.030207891,0.01588064,-0.006445876,-0.010013819,-0.013772468,0.014729467,0.027212067,-0.008717015,0.02460459,-0.0030565031,-0.032621194,0.016698943,-0.01962542,0.0028692642,0.0010887601,0.0059639085,0.02956989,-0.029403456,-0.0126975775,0.005911898,0.008661537,0.017794639,-0.0056622457,-0.010360558,-0.018834855,-0.016893119,0.02868224,0.027642023,0.014729467,-0.002751373,-0.017198248,0.008106755,-0.007219103,-0.0063453214,0.02429946,-0.012219078,-0.009285667,-0.029098326,0.02527033,-0.003987497,0.0056518437,-0.013848751,0.0030877097,0.012808534,0.026532458,-0.0045249425,-0.0012890018,-0.0043411707,-0.004986105,-0.026407633,0.014396598,-0.025963807,-0.01389036,0.00857832,-0.020360507,-0.014701728,-0.0006726734,0.0227322,0.0033200248,0.0059223,-0.010568601,0.0012942029,0.003925084,0.01042297,0.008626863,-0.009036015,0.036088582,0.0043931813,0.007101212,-0.020596288,-0.004743388,0.02493746,-0.0041435296,-0.0014060261,0.006383463,-0.043051098,-0.007843234,-0.024979068,0.028931892,-0.005135203,0.0016981537,-0.008481232,0.00013772034,-0.010561666,-0.0063314517,0.003351231,-0.007725342,0.002683759,-0.0069243754,-0.0009439966,0.0022780744,-0.02371694,-0.025076155,-0.034701627,-0.018890334,-0.011802991,-0.031289715,-0.014882033,0.0010194123,0.0112066,0.0003861804,-0.0171289,-0.024091417,-0.0052357567,-0.012669838,0.014757207,-0.021386854,0.021428462,0.012205209,-0.0124617955,0.041608665,-0.009965275,-0.017045682,-0.04887631,0.008044342,-0.0009890726,-0.019680899,0.016865378,-0.0003712273,-0.0024341068,-0.0088418415,-0.0020162866,-0.012011034,0.022857027,0.039167624,-0.011040166,0.008176102,-0.00467404,-0.009098428,0.008710081,-0.012988838,-0.004805801,-0.03966693,0.0025346612,0.004861279,0.009528385,-0.004067247,0.009084558,0.0028120521,-0.006913973,0.010242666,-0.016906988,-0.009778036,0.011185796,-0.004174736,0.029958239,0.029764066,0.008051276,0.022690592,-0.003318291,0.00039246507,0.0011347029,0.030013716,-0.02181681,-0.022274505,0.0040360405,-0.0013150072,0.0010081433,-0.00662618,-0.028404849,-0.00059509056,-0.019486725,0.000064255044,0.031622585,-0.022468679,0.008238516,0.007447951,-0.037475538,-0.0056449086,0.013793272,-0.03742006,0.0062031583,-0.01962542,-0.022690592,-0.029320238,0.001565526,-0.002813786,-0.02274607,-0.021400724,-0.0044555943,0.012406317,0.012801599,0.019195464,0.24410416,-0.0014571701,-0.0059500393,0.019764116,-0.007850168,0.039278578,0.0054368656,-0.005592898,-0.019389637,0.021137202,-0.05925074,-0.0022156613,0.0038938776,-0.004178203,0.012059578,-0.014174685,-0.027198197,-0.033952672,-0.040304925,0.0018931943,0.023814026,0.0012725317,0.0007875307,-0.017822377,0.01929255,-0.005898028,0.026255067,0.004941029,0.020526942,0.012094252,-0.020943027,0.01291949,-0.0034309812,0.008772493,-0.010416036,0.006598441,0.00694518,-0.022010984,0.023328591,-0.0021861885,0.009472906,-0.009750297,0.00459429,0.007822429,-0.010839057,-0.0286545,0.00041066884,0.008266254,0.010360558,0.023495026,-0.030346585,0.019639289,0.021733593,0.016768292,-0.0028519272,-0.005041583,0.025728025,-0.00982658,0.010908405,0.018155247,-0.024854243,0.035367366,-0.02181681,-0.00095266505,0.014257902,0.013183012,-0.016920857,0.007191364,-0.0060609956,0.004254486,0.002501721,0.004441725,-0.011560274,0.016019335,-0.008980537,0.004042975,0.014660119,0.014715598,0.009459036,0.026948545,-0.022302244,-0.008453494,0.0036650298,-0.026255067,-0.027628154,-0.024174634,0.0055790283,-0.011615752,-0.023758547,-0.014465946,0.0068758316,-0.006189289,-0.014140011,-0.025589328,0.0066747232,0.019680899,0.00086468004,0.013508947,-0.020471463,-0.008619929,-0.029098326,0.026948545,0.015492293,0.0033945735,-0.038529623,-0.010374427,-0.0045076055,0.020374376,0.021594897,-0.030402064,0.00795419,-0.01805816,-0.012746121,-0.01527038,-0.035644755,-0.0007255511,0.018779377,-0.015090075,-0.021594897,-0.019126115,0.02245481,-0.014029055,0.00050233793,0.01030508,0.006490952,-0.00091799116,0.02399433,-0.010513122,-0.035922147,-0.045935966,0.010478449,-0.010790514,0.0280165,0.0094382325,-0.018585203,0.015048467,-0.017877856,-0.024881981,-0.02429946,0.011151122,0.029403456,-0.008675407,-0.010006884,-0.0074340813,0.018418768,-0.058640476,-0.013502012,-0.014382728,0.006029789,-0.00902908,-0.010825188,0.007912581,0.0037274428,-0.030485282,0.03622728,-0.017891726,-0.010686492,-0.018862594,-0.005041583,0.02026342,-0.0109777525,-0.0037274428,0.019639289,-0.012378578,-0.011504795,-0.0134395985,-0.17808509,0.012253752,0.03894571,-0.0121636,0.023467287,0.016074814,0.013377186,-0.015090075,-0.015672596,-0.038529623,-0.00094139605,0.0052773654,-0.05045744,-0.016158031,0.007988864,-0.035311885,-0.028488066,0.005450735,0.01929255,0.005977778,0.051400572,-0.0013037382,-0.00046159612,-0.0029195412,0.01929255,0.008453494,-0.02585285,0.0062031583,-0.031234238,-0.018474247,-0.008633798,0.013058186,0.005620637,0.00035259008,-0.02022181,0.0049479636,0.006449343,-0.004736453,-0.022870896,-0.00062889763,0.025311938,0.011040166,0.011823796,0.012683708,-0.0017406291,0.029680848,0.013065121,-0.02117881,0.03245476,0.009299536,0.026546327,-0.022260636,-0.010637948,-0.0103813615,0.009160841,0.024812633,-0.04920918,-0.00257627,-0.027544936,0.010367492,-0.0021116398,-0.010464579,0.005898028,0.007843234,-0.011920882,0.0013609501,-0.0161719,0.0014736402,-0.025159372,0.010270406,-0.03589441,0.0033616333,0.0037863886,-0.008502037,0.018640682,0.024243983,-0.019833464,0.01619964,0.009750297,0.010908405,-0.0070908098,0.013307838,-0.001758833,0.03622728,0.012545012,-0.0061338106,0.019070638,-0.013751663,-0.024160765,0.00068177533,0.032926325,-0.01869616,-0.0120041,-0.013488142,0.0018255801,-0.0049757026,0.03309276,0.009389688,0.026310546,0.0053120395,-0.0063765277,-0.0044763987,-0.008474298,0.028848674,0.013502012,-0.0075450377,-0.01402212,0.01933416,0.029209282,-0.0025658677,0.00030426335,0.033841714,-0.014202424,0.034729365,0.028931892,0.0019538736,-0.0023976993,0.011851534,0.010360558,0.02087368,0.045963705,-0.02615798,0.012115057,-0.003460454,0.020471463,0.016268987,-0.09891766,-0.004542279,0.026379893,0.008751689,-0.00065837044,-0.015547771,-0.0017397623,0.028515805,-0.008502037,0.026241198,-0.0072399075,-0.01618577,-0.013987446,-0.0062204953,0.016241249,0.009285667,-0.00057905394,-0.024354938,-0.014202424,0.020110855,0.019070638,-0.010187188,0.034368757,-0.018446509,-0.01995829,-0.0037794537,-0.020499201,0.0072745816,0.027808458,0.017336944,0.0001597166,-0.018460378,-0.012156664,0.018626813,0.004282225,-0.01389036,-0.045408923,-0.025936067,0.025811242,-0.02155329,0.00857832,-0.009569993,0.0048092683,-0.029126065,-0.017891726,-0.006948647,-0.010263471,0.011907013,-0.019819593,-0.008779428,-0.03389719,-0.020318897,-0.013959707,-0.015367467,0.021081723,0.027919414,0.012655969,-0.014840424,-0.016366074,0.008890385,-0.007614386,-0.014424337,-0.021414593,0.02122042,0.0045353444,-0.0007242508,-0.0145075545,-0.016768292,0.015436814,0.01043684,-0.015783554,0.00779469,-0.0044902684,0.008661537,-0.015020728,0.024784895,-0.010617144,-0.04199701,0.005485409,-0.00024575117,-0.015630988,-0.014140011,-0.009264863,-0.008411885,0.010464579,0.0132038165,0.010409101,-0.017655943,0.0061754193,-0.0214562,-0.000361692,0.024424287,0.012440991,-0.027808458,-0.0050727897,-0.0072121685,0.0054472676,0.005790539,0.020859811,-0.019680899,-0.020055376,-0.02837711,-0.06252395,0.0073647336,-0.0066955276,-0.008994406,0.0060852673,0.014001315,0.017364683,-0.022260636,-0.0054472676,0.022219026,-0.034396496,0.013488142,-0.0023075473,-0.01371699,0.003567943,0.019209333,0.020180203,-0.0048127356,0.010707296,0.0030131608,-0.007732277,-0.03212189,0.010291209,0.02805811,0.011040166,0.017489508,-0.021927767,0.00050233793,-0.0110679045,-0.027225936,0.0015126483,-0.003533269,-0.011747513,0.0473784,0.00041998745,-0.0233702,0.001208385,0.013730859,0.012295361,-0.018085899,-0.006383463,-0.028155196,0.010055427,0.012635165,-0.0081899725,0.005835615,0.006681658,0.019597681,-0.0031067804,-0.0022468679,0.020762723,0.014618511,-0.007038799,-0.00083304016,0.0028241882,-0.03578345,-0.010402166,-0.0027947153,0.023134418,-0.017531117,0.036643364,-0.015298119,0.025936067,0.0005274765,-0.0020318897,0.0012447926,-0.0003707939,0.0048924857,0.0017154906,-0.0151039455,-0.010207992,-0.0016158031,-0.019417377,0.026768241,0.019181594,-0.011705904,0.0045838878,0.017101161,0.019223204,0.024881981,0.034784842,-0.010083166,-0.011213535,-0.011317557,0.0299305,0.04210797,0.0074618207,0.039112143,-0.0070873424,0.01961155,-0.013189946,0.015381336,-0.02178907,-0.012995773,0.00042323815,0.021470072,-0.0059500393,-0.024271721,-0.017711421,0.010707296,-0.0029923564,-0.0002789081,-0.0078016245,-0.0036442257,-0.014771076,0.017850118,-0.021678114,-0.016685074,-0.0014285642,0.021345245,-0.0147433365,0.008030472,0.01043684,0.019791855,-0.022191288,0.0062863757,0.0011260345,-0.031594846,-0.029736325,0.031400673,0.0055339523,0.0068931687,0.015797423,0.010312014,0.02773911,0.027212067,-0.015825162,-0.0015759282,0.0055547566,0.0138002075,0.018945811,0.010124775,-0.0029992913,-0.023814026,-0.008862645,0.0006744071,-0.009320341,0.0075935815,-0.020984637,0.06263491,0.015117815,-0.012822404,0.013273164,-0.0132939685,0.026934676,0.013148338,-0.0005625838,-0.033120498,-0.041081622,0.014576903,0.0014615044,-0.019445116,-0.039833363,-0.013751663,-0.005807876,0.004282225,-0.01495138,-0.010943078,0.020707246,0.011782187,0.0028814,-0.00093532813,0.0090221455,-0.02151168,-0.01432725,0.011386905,-0.008467363,-0.008821037,-0.029070588,-0.0049202247,0.013612968,-0.04102614,-0.021081723,0.022094201,-0.017004075,-0.025367416,-0.0017909063,0.012628229,0.024410417,0.02088755,0.018640682,-0.026906937,-0.0038592035,-0.009632406,-0.013682316,0.007538103,-0.0065533645,-0.015422945],"SELECT * \nFROM instalmentsdetails as inds\nINNER JOIN (\n SELECT max(`receiptNo`) as `maxreceiptNo` \n FROM instalmentsdetails\n) as maxt\nWHERE inds.instalmentName='Third Installment' AND inds.studentFeeId='1'\n":[-0.031304043,0.009749876,-0.011543194,-0.012937997,-0.029517595,0.010656841,-0.025408767,-0.026356958,0.0012273232,-0.043204524,0.014016735,0.0049848733,0.015954342,-0.0004710894,0.0053559043,-0.0067919325,0.016504018,0.023484902,0.024543028,-0.017507177,0.026810441,0.0089253625,-0.018881368,0.01760337,0.010230842,-0.008162687,0.008300106,-0.010567519,0.013707543,0.013652575,0.016572729,0.0045726164,-0.0132128345,-0.021574778,-0.02165723,0.004854325,-0.004703164,-0.0045451326,0.023017678,0.019169947,0.03042456,-0.02586225,-0.0022296228,-0.007077077,0.016572729,0.012271514,0.0156107955,-0.014497701,-0.012917384,-0.002325816,0.0002503602,0.012381449,-0.024776641,-0.0059914673,0.004953954,-0.008348202,0.030452045,0.031194106,-0.029819917,0.0007553749,0.027717406,0.013096028,-0.003933618,0.014978668,-0.025230123,0.008471879,-0.014009864,-0.009097136,-0.031523913,0.019760849,0.009832327,0.02367729,-0.0049402122,-0.002136865,0.012690642,-0.023045162,0.009262038,0.02426819,0.007324431,-0.0003444063,0.015129829,-0.012443288,-0.02962753,0.007839752,0.017149888,0.014882474,-0.01760337,0.0368008,-0.032898102,-0.017988143,0.03520674,-0.0012986093,0.029545078,0.006534272,-0.003744667,0.01028581,-0.01846911,0.025298832,-0.008416912,-0.007592398,-0.014758797,-0.006077354,-0.0046207127,-0.003456087,-0.018372916,0.006919045,0.0021059457,0.004593229,0.016833823,-0.007626753,0.007880978,0.02839076,0.024433093,-0.017493434,-0.005860919,0.0008193606,0.034547128,-0.021244973,-0.009186458,-0.006678562,0.009090265,0.01919743,-0.012505126,-0.027263924,0.01159129,0.033640165,-0.029435143,0.00861617,0.00083524967,0.0073862695,0.045403227,0.02441935,0.024350641,0.0014763951,0.0021248409,0.013666317,-0.028967919,0.025628638,-0.01970588,-0.025848508,0.0063728048,0.005771597,-0.025504962,0.0015279272,-0.010004101,0.016545244,0.015638279,-0.0045313905,-0.03974157,-0.01607802,0.021066329,-0.01868898,0.0006750707,-0.0060601765,0.004792487,-0.031166622,-0.0083963,0.008210784,-0.009928521,0.0019307366,0.0023704772,0.0010555495,-0.00040173577,0.0013965203,0.0076885913,0.016765114,-0.009042168,-0.018826399,0.0011311299,-0.0081833,0.031523913,0.017328532,-0.005221921,0.017850725,0.0017048541,0.015899375,0.023498643,0.0072832056,-0.016352858,-0.018634012,-0.0012582424,0.026673023,0.02615083,0.012264643,-0.024996512,-0.010155262,0.002006317,-0.0064793043,0.0036965704,-0.011845515,-0.01086984,-0.0017082896,-0.014236606,-0.017630855,-0.60684216,0.00027870285,0.007929075,-0.0045966646,0.009461296,0.030809334,0.00080991304,0.015349699,-0.0021935503,-0.0011800855,0.0017366322,0.0030043223,0.007441237,0.002360171,-0.015349699,-0.018221756,-0.001163767,-0.02172594,-0.0099010365,0.0106018735,-0.00030339533,0.014181638,0.0069774482,0.022179421,-0.007187012,0.018070595,-0.008643653,-0.023429934,-0.019966977,-0.0024924367,-0.040538598,0.013061673,0.021423617,0.011467613,0.04177537,-0.002293179,-0.011392033,0.009426941,0.009694909,0.046530064,-0.0072007542,-0.01897756,0.0022055744,-0.016558986,0.016751373,0.0067919325,0.018702721,0.0036622155,-0.0057990807,0.006891561,-0.015528344,0.010004101,-0.031881202,0.007187012,0.03954918,-0.01999446,0.030836817,0.001927301,0.022880258,0.00891162,-0.010986647,0.009392587,-0.026013412,-0.038202476,-0.024130771,0.0023550177,-0.005496759,0.004060731,0.03853228,-0.015322215,0.029737465,0.019334849,-0.013006706,0.0007579515,-0.018496593,0.0072419797,0.048426446,0.020406717,0.010890453,0.043204524,-0.011914224,0.006599546,-0.02129994,-0.015019894,0.016916275,-0.009584974,-0.0056479196,-0.020145621,-0.019444784,0.009729263,0.018730206,-0.020186847,0.043341942,0.008753588,-0.009846069,0.016352858,-0.016394082,-0.010079682,-0.00011218971,-0.018510336,-0.00258863,-0.009839199,-0.017122405,-0.00070341333,0.03548158,0.0054005655,-0.002842855,-0.035179257,0.030726882,-0.033557713,0.0065136594,-0.007331302,0.0099216495,-0.008732975,0.006297224,-0.039439246,0.005864355,-0.02274284,-0.008169558,0.012931125,0.019293623,-0.0041019563,0.01231961,0.007984042,0.026892893,0.011378291,0.00005630957,0.026205799,-0.011749322,0.025106447,-0.008526847,-0.008636782,0.021602262,-0.02404832,0.0030180642,-0.029902369,-0.010237713,0.015926858,-0.010904196,-0.026068378,0.009681166,0.01622918,0.025821025,-0.0019204301,0.0063418853,-0.019032527,-0.021396134,0.0071389154,-0.010491938,-0.006025822,-0.020159364,0.012862416,-0.01658647,0.00011680613,-0.00005706108,-0.011714967,-0.005977725,-0.01853782,-0.012883029,-0.031688813,0.002672799,0.009069652,-0.020530395,-0.011866128,0.0067644487,-0.01868898,-0.0013303874,0.01723234,-0.020764006,-0.023443677,0.007090819,0.009035298,-0.007839752,0.019101238,0.00030511306,-0.014167896,-0.014085445,0.0031812491,0.011639386,0.0045760516,0.016050536,0.012752481,-0.0004384524,-0.0040985206,-0.005599823,0.0053524687,-0.009756747,0.024391867,-0.010388874,0.068654515,-0.02513393,0.0074000116,-0.008348202,0.025271349,0.00004903603,0.01578944,0.024240706,0.010464455,0.023814708,0.02389716,0.019073753,0.033227906,-0.009165846,0.011680612,-0.0018019063,-0.011124066,0.010924808,-0.039714083,0.028803017,0.0001614673,0.00026904058,-0.014319057,-0.01731479,-0.016655179,0.027937276,0.029655013,0.017946918,0.012876158,-0.014745056,-0.01774079,-0.008279493,0.020447943,0.043589298,0.015899375,-0.0032138862,0.01752092,-0.004789051,0.02267413,0.02455677,-0.014552669,-0.04040118,0.010931679,0.0046035354,0.02564238,0.02070904,0.01572073,0.021066329,-0.017369758,0.010526293,-0.03427229,-0.007743559,0.0335852,0.010615615,-0.033722617,0.00010853951,-0.027566245,0.006142628,0.008746717,0.0015777416,0.012917384,-0.0006866654,0.032101072,-0.008217654,0.0017692692,0.014264089,-0.039274342,-0.008355074,0.03402494,0.018730206,0.0056754034,0.0064002885,-0.0015339393,0.019692138,-0.005874661,-0.0012754198,0.01578944,0.007777914,-0.02006317,-0.004259988,-0.027758632,-0.0015691529,-0.009976617,0.0068469,-0.0075855274,0.019169947,-0.0091589745,0.00075322774,0.028363276,0.025381284,0.022880258,-0.010732422,-0.018881368,0.025656123,-0.009069652,-0.0034492163,-0.009832327,-0.0043493104,0.008004655,-0.01470383,0.0011259767,0.004383665,0.02484535,0.014305315,-0.024103288,-0.021835875,-0.016325373,0.02810218,0.018840142,0.0032654183,0.015803182,0.0016412978,-0.000008830242,-0.023388708,-0.0037721507,0.058155708,-0.0013432704,-0.007867236,-0.01745221,0.021849615,-0.008471879,-0.015171055,-0.018675238,-0.029435143,0.0051703886,-0.0040985206,0.011495097,-0.006932787,0.015129829,0.018235497,0.009598715,-0.020008203,-0.024460576,-0.005019228,0.039026987,0.03020469,0.0288305,-0.012931125,0.0051978724,0.0016327092,-0.015363441,-0.002712307,-0.04938838,0.00652053,-0.0098804245,0.0006261152,-0.023374967,0.029022887,0.004043553,-0.009385716,0.0047065997,-0.014470218,-0.0016035077,0.000741633,-0.012608191,-0.014319057,-0.038724665,0.0036553447,0.015665762,0.05628681,-0.008643653,0.03490442,-0.006025822,0.011288969,-0.0408684,0.0014549233,0.0019822686,0.013164737,0.01528099,-0.01108284,0.015157312,-0.004060731,-0.039659116,0.017630855,0.020049429,-0.0054864525,0.013309027,-0.0064140307,-0.0042531174,-0.00049127283,-0.014497701,-0.02092891,0.019101238,-0.02918779,-0.0040023276,0.02070904,-0.0014609355,-0.006757578,0.00069181866,0.0046447613,0.003148612,-0.032430876,-0.005933064,-0.011921096,-0.037020672,-0.031688813,-0.0038855213,0.03831241,-0.01086297,-0.010945421,-0.02094265,-0.030974235,-0.007331302,-0.02129994,0.014099186,0.0011002106,-0.0028308309,-0.019431043,0.023773482,-0.012539481,-0.004194714,0.02447432,0.022825291,-0.013961768,0.03520674,-0.0029098466,-0.019953234,0.01767208,-0.017136145,-0.037680283,0.0008713222,0.009907908,0.006365934,0.008100849,0.0010074528,0.0037206186,-0.020764006,0.019087495,-0.032760683,0.027140247,0.0005376517,0.018414142,-0.009653683,-0.0056273066,-0.0014695241,-0.0010598438,-0.020338008,-0.012539481,0.0073862695,-0.004040118,-0.00092671916,-0.004534826,0.010698067,-0.026549345,0.0016584753,0.010553777,-0.011694354,0.01868898,-0.00077727606,0.014978668,0.026920376,-0.019114979,-0.0024271626,0.019279882,0.0076954626,-0.034519646,-0.012017289,0.04353433,0.027428826,-0.010134649,-0.01550086,0.004136311,-0.0052597113,0.009956004,0.0011886741,0.0099216495,0.00623195,0.0042634234,0.0031726605,-0.024446836,-0.0060533057,-0.0034011195,0.00376528,0.0016438744,-0.014305315,0.003672522,-0.038999505,0.003103951,0.02347116,0.012869286,-0.012594448,-0.008526847,-0.022358067,0.034354743,-0.0015244917,0.017617112,0.018001886,-0.0047821803,0.013707543,0.006122015,0.007351915,-0.01723234,-0.0127456095,0.009481909,0.037845183,0.034739517,-0.009186458,-0.0004947083,-0.0027088714,-0.009433812,0.026192056,-0.012759351,0.012031031,-0.009928521,-0.0053971303,0.03325539,-0.028857984,0.04122569,0.016105503,-0.015418408,0.019527236,-0.011900483,0.004978002,-0.008437525,-0.023086388,-0.012415804,-0.018579045,-0.008011526,-0.0149237,-0.055599716,-0.0118111605,-0.0060223863,-0.002863468,0.003665651,0.015542085,0.022399291,-0.007345044,0.04861883,-0.0057131937,0.007365657,0.0003869203,0.0010272068,-0.013309027,-0.012292127,0.0004320109,-0.020324266,0.031386495,-0.027841084,-0.0010400899,-0.010485067,-0.0019496316,-0.016352858,-0.001535657,0.013240318,-0.013515156,0.012450159,-0.007942816,-0.013899929,-0.0034767,0.024790382,0.00977736,-0.00775043,-0.008891008,-0.02737386,-0.014758797,0.005671968,-0.038779635,0.06150873,0.03396997,0.014676346,0.019843299,0.015844407,-0.029297724,0.013501414,-0.00031155458,-0.016449051,0.033063006,0.01824924,0.025175156,-0.028995402,0.017122405,-0.0045382613,-0.036113705,-0.016572729,0.035893835,0.0028222422,-0.010691196,-0.01209287,0.017424725,-0.036883254,0.015803182,-0.03910944,0.010849228,0.0058128224,-0.03361268,-0.008011526,-0.014868733,-0.037982605,0.005816258,0.007984042,-0.022756582,-0.0125119975,-0.024281932,-0.008726105,-0.0039301827,-0.011872999,0.025449993,0.006389982,-0.0030558545,0.023842191,-0.00089751766,-0.009227684,-0.012106611,0.008059623,0.023210064,-0.010278939,-0.014978668,0.009749876,0.016558986,-0.019032527,-0.009619328,-0.00087218103,-0.0045897937,-0.021354908,-0.0016619107,-0.006273176,0.0120653855,0.0005007204,0.012924254,-0.009152103,-0.038587246,-0.012862416,0.01028581,0.00059906085,0.0030936445,-0.015995568,0.0021059457,-0.01035452,0.02165723,-0.016105503,-0.0034423452,0.013879316,0.020090654,-0.028583147,-0.002887516,-0.02028304,0.009055911,-0.0065136594,0.0030421126,-0.016174212,-0.002495872,-0.004476423,-0.019912008,-0.000010266163,-0.0037481023,0.019582203,-0.02150607,-0.008100849,-0.0046481965,-0.009722392,0.040291242,0.023141354,-0.019087495,-0.0006325567,0.010553777,0.008863524,-0.009969747,0.012986093,-0.0089665875,0.032760683,-0.006025822,0.013130383,-0.019279882,-0.054885138,-0.021107554,-0.0052322275,0.020777749,-0.033530228,0.0044661164,-0.0028411371,-0.030314624,-0.0075236885,0.034574613,0.022770323,-0.015638279,0.02905037,0.018153045,-0.00025207794,0.0067232233,0.018922592,0.016311632,-0.011756193,-0.024611738,-0.014841249,0.0022845904,-0.03267823,0.012305869,0.019747106,0.00019689562,-0.03402494,0.008293235,-0.03998892,0.0001396735,-0.021533553,0.0017589629,0.0026573394,0.0054383557,-0.020873941,0.024859091,-0.0015193385,-0.010691196,-0.05026786,-0.0042187623,0.03347526,-0.01506112,0.017067436,-0.010945421,-0.051312245,0.007908462,0.018785173,0.014222863,0.026989086,0.016284147,-0.021932067,0.012072257,0.015033635,-0.03490442,-0.011103453,-0.021602262,0.029957335,-0.040098857,-0.011756193,-0.008155816,0.006633901,-0.011405774,-0.010395745,0.007255722,-0.0038717794,0.0059021446,-0.030699398,-0.002306921,-0.027415086,0.030479528,0.026631797,0.0298474,-0.0017349145,0.0149237,0.003789328,0.007647366,0.009165846,0.024446836,-0.030836817,-0.0026487506,-0.023567354,-0.029819917,0.0006712058,-0.01701247,-0.0013724719,0.008526847,-0.029682498,-0.00601208,0.000879052,-0.010643099,0.021973293,-0.008650525,-0.026700506,-0.007070206,0.018702721,0.004692858,-0.018812656,0.0030610075,-0.0066304654,-0.03267823,-0.03245836,0.009275781,-0.021038845,-0.018702721,-0.015816923,-0.00999723,-0.016490277,0.031331524,0.19403559,0.010746163,-0.0063350145,0.018290466,0.015267247,0.027951019,0.0064861756,0.00862304,-0.019403558,0.001202416,-0.033145458,-0.0013664599,-0.0057819034,-0.00093015464,0.027277665,0.0060155154,-0.02079149,-0.014236606,-0.021849615,-0.02514767,-0.011192775,0.0046962933,-0.009042168,-0.028775532,0.012113483,0.001294315,0.023800965,0.012539481,0.038449828,0.00803901,-0.01826298,0.00070556055,0.00305929,-0.014593895,-0.027538761,-0.0017220315,-0.016215438,0.008877265,0.022646647,-0.00048526074,-0.007846624,-0.030314624,-0.019912008,-0.028775532,-0.0006243975,0.006183854,0.00021385828,0.012209675,-0.020406717,0.0007205907,-0.039054472,-0.0010169004,0.015652021,0.003593506,0.016765114,-0.01853782,0.016421568,-0.0026109605,-0.0033702003,-0.014731314,-0.026576828,0.03034211,-0.002360171,0.00066175824,-0.010162133,0.014868733,-0.02201452,0.019018786,-0.0077710426,-0.013851833,0.009275781,-0.0023017677,-0.012793706,-0.023196323,-0.025587412,-0.008492492,-0.0120653855,0.0016490277,-0.0072832056,0.05114734,0.002894387,-0.0047409544,-0.028857984,-0.0031932734,-0.034574613,-0.023484902,-0.004692858,0.012072257,-0.027181473,-0.0072694635,-0.005548291,-0.021354908,-0.018304206,-0.026989086,0.007166399,0.023787225,0.015638279,0.02223439,-0.022976452,0.012862416,-0.03556403,0.027758632,-0.0062834825,0.0111103235,-0.027827341,0.008128332,0.036663383,0.020173104,0.008045881,-0.045623098,0.01405109,-0.0153359575,-0.033090487,-0.019362332,-0.015349699,-0.0006849477,-0.0022175987,-0.021629745,-0.02789605,-0.011989805,0.020887684,-0.027538761,0.011508839,-0.007819139,-0.0021214054,0.00062697404,-0.028555661,-0.0018895109,-0.006534272,-0.038504794,0.010450712,-0.020818975,0.019760849,-0.0045382613,-0.016435308,0.0011062227,0.0015932012,-0.005084502,-0.01818053,0.008052751,-0.0037137477,-0.023237549,-0.0024134207,0.01470383,0.00854746,-0.015019894,0.0054417914,-0.030287141,-0.04084092,-0.03020469,-0.02340245,-0.015349699,-0.008939104,-0.015129829,0.045952905,-0.018056853,-0.019953234,-0.052576497,0.012972351,0.009241425,-0.033145458,0.00615637,0.016187955,-0.014374024,-0.025408767,0.0035213612,-0.17402738,0.0055070654,0.038257442,-0.0069877547,0.044936005,-0.012182192,0.016146729,-0.0050226636,0.0059227576,0.022907743,0.025216382,0.014099186,-0.030919269,0.011041614,0.0006381394,0.0027294843,-0.024446836,0.0064999172,0.044386327,0.01354264,0.04303962,-0.009956004,0.016160471,-0.022784065,0.0039507956,0.013027319,-0.026178313,-0.00040474182,-0.000089912806,-0.020681554,-0.003346152,0.013604478,0.015226022,-0.038642216,0.011962322,0.022316841,0.029215273,-0.0044592456,-0.012896771,0.028019728,-0.0070152385,0.039686598,0.0073587857,0.011460742,0.008918491,0.011646258,0.015597053,-0.008052751,0.04534826,0.015652021,0.03471203,-0.043396913,0.00021385828,-0.012415804,-0.0037755861,0.024804125,-0.021382391,-0.005338727,-0.006523966,-0.010004101,0.0011800855,-0.006297224,0.024666706,-0.002483848,-0.011742451,0.013776252,0.0084787505,0.018276723,0.00025787528,0.012360836,-0.034767,0.013659446,-0.008726105,-0.0042256336,0.010169004,-0.011488226,-0.014044219,0.0018654625,-0.0043699234,0.0049505183,-0.034547128,0.06112396,0.002659057,0.026027152,-0.010320165,-0.0054383557,0.008959717,-0.01209974,0.014621379,-0.005568904,0.029655013,-0.032925587,-0.016146729,0.01782324,0.02447432,0.0048646317,0.0021591955,0.016242923,-0.0035059014,-0.009220813,0.003967973,0.016462794,-0.01543215,0.038587246,-0.0024855656,0.027992245,-0.00702898,0.011350807,0.03586635,0.011921096,-0.0030507012,0.014648862,0.0015253506,0.01970588,0.007846624,0.02092891,-0.01846911,0.0053215497,0.016284147,0.015885632,0.021382391,-0.013205963,-0.0028222422,-0.0016181084,0.025793541,0.0057200645,-0.08585937,-0.024982769,0.033502746,0.022894,-0.011907354,0.0015906246,0.0058780964,0.008952846,-0.047437027,0.02397961,-0.03144146,-0.041088272,-0.025271349,0.00009152318,0.008829169,0.007193883,0.008416912,-0.01658647,-0.009811714,0.026480636,-0.03402494,-0.014305315,0.031056687,-0.016833823,-0.018991303,0.0053352914,-0.024378125,0.019595945,0.015116087,0.0113027105,0.012883029,-0.009097136,-0.015487118,0.0034663936,-0.031056687,-0.049443346,-0.0547752,0.005836871,0.0061975955,-0.015006152,0.019128721,0.012079127,0.045952905,-0.011927967,-0.009323877,-0.02571109,-0.016160471,0.040456146,0.001894664,-0.015390925,-0.031029204,-0.009530006,-0.031386495,-0.016957501,0.04402904,0.025958443,0.014841249,0.0037103123,-0.0019187124,0.025188897,-0.009399458,0.00220901,-0.0139548965,0.046310194,0.018194271,0.013590736,-0.020131879,-0.021616004,0.00746185,-0.001796753,-0.0015519755,0.005613565,-0.020626588,0.00003387163,-0.0167926,0.04853638,-0.015294732,-0.019169947,0.0050501474,-0.017273564,-0.013975509,-0.021135038,-0.027731149,-0.009907908,0.009564361,0.0025662994,0.016187955,-0.00073175604,-0.0024409045,-0.04716219,-0.009406328,0.002476977,0.03108417,-0.014071703,-0.007777914,0.0016576163,0.0025113318,0.012663159,0.019692138,-0.02448806,0.005726936,-0.015184796,-0.06634588,0.016256664,-0.013432705,0.00009715951,-0.0007673991,0.0032654183,-0.004404278,0.008107719,-0.014800023,0.011261485,-0.025546188,0.031523913,-0.015349699,-0.016600212,-0.02469419,0.006046435,-0.013363995,0.027140247,0.008801685,0.0072763343,-0.000044473287,-0.018386658,-0.0024615172,0.012209675,-0.002227905,0.01585815,0.009584974,0.02564238,-0.014305315,-0.00030511306,0.017988143,-0.011769935,0.012182192,0.023594838,-0.014181638,-0.03572893,0.014456476,0.003318668,0.032980554,-0.026920376,0.0007905885,-0.020173104,0.0071732705,-0.015652021,0.009956004,-0.0057853386,0.0049436474,0.0184004,-0.0153359575,0.010471325,0.036635898,-0.00063599215,0.008492492,-0.011206517,-0.010972905,-0.011268356,0.0035316676,0.0031520477,0.018427884,-0.018001886,0.0061907247,-0.0010881865,0.0072694635,0.007709204,0.0022553888,-0.011027873,-0.013899929,0.0039301827,0.028583147,-0.009392587,-0.001600931,-0.023608578,-0.019939493,0.011275226,0.031029204,0.017410984,0.0015493989,0.021093812,-0.0015631408,0.01572073,0.02766244,-0.0018104949,-0.0039576665,-0.015459634,0.0278136,0.03166133,-0.009152103,0.025408767,-0.021849615,0.01955472,0.025463736,0.037707765,-0.023704773,-0.03424481,0.01419538,0.013508284,-0.0028565968,0.005142905,-0.0030953623,0.020777749,-0.008698621,0.0018276724,0.014126671,0.0034921595,-0.017259823,0.021464843,-0.012051644,-0.025463736,-0.01848285,0.012278385,0.0020578492,-0.012443288,0.028803017,0.010546906,-0.01600931,0.016600212,-0.0023189452,-0.016023053,-0.038449828,0.0022382115,0.014264089,0.006757578,0.01673763,-0.0030661607,0.03215604,0.039246857,-0.025821025,-0.0041844076,0.024103288,0.008217654,-0.011976063,0.049745668,0.0020595668,-0.027579987,-0.011763064,-0.023636064,-0.017136145,-0.004143182,-0.018070595,0.0615637,-0.016888792,-0.0418853,0.01028581,-0.011694354,0.029325208,-0.0067197876,0.010567519,-0.027827341,-0.037790217,0.026356958,0.0077023334,0.0013217988,-0.005383388,0.011763064,-0.0018551562,0.018166788,0.0043905363,-0.03056198,-0.01122713,0.009825457,-0.01782324,0.0063075307,-0.0032396521,-0.007214496,0.01955472,0.026411926,0.0065858043,0.0052562756,-0.022852775,-0.0040091984,0.02709902,-0.044413812,-0.0057235,0.008574944,-0.03471203,-0.025449993,0.0040023276,0.011034743,0.005012357,0.0031262815,0.025477476,-0.025889734,-0.0068331584,-0.002136865,-0.0103682615,-0.031688813,0.0111103235,-0.0043286975],"how to get last weeek dates from today to last 7 days date":[-0.014172313,-0.0015441421,-0.012870847,0.003298604,-0.022764862,-0.013963791,-0.027352348,-0.041388042,-0.025396554,-0.013144083,0.004015848,0.033651154,0.0002961553,0.020262597,0.00366172,0.018637562,-0.0012457399,-0.0070142522,0.01067777,-0.004184823,0.016408533,0.0042387513,0.011691619,-0.0070717754,0.004947007,0.000565796,-0.0015809931,-0.013697745,0.0047492706,-0.0056265015,-0.015272447,-0.026115596,-0.0011297943,-0.04668019,-0.03310468,-0.043861546,0.0012969716,0.009038354,0.020104406,-0.017113194,0.00026267493,0.0055905497,-0.008484692,0.0045623197,-0.022506006,0.0084775025,-0.0050261016,-0.028560339,0.016422912,0.013158464,0.013690555,-0.0009913788,-0.04423545,-0.011907332,-0.0093044005,-0.0051806956,0.00610826,0.01532997,-0.019773647,-0.015186162,-0.0056013353,-0.0088154515,0.00482477,0.007880698,-0.0036527321,-0.020205073,-0.012511326,0.007837555,0.005612121,0.031091364,0.038454354,0.002876167,-0.014661261,-0.01584768,0.017817855,-0.011274574,0.001545041,0.01532997,0.02843091,0.02016193,0.043171268,-0.008362455,-0.022117725,0.0268634,0.021283636,-0.008829833,-0.0044005355,0.030055946,-0.034025054,0.0038396828,-0.008973641,0.010951006,0.020420786,0.02945195,0.021413064,0.028502814,-0.0049290312,0.035894565,0.01929908,-0.016609864,0.0046378192,0.0057775006,-0.016451675,-0.009167782,-0.012597611,0.011137957,0.0020025312,-0.008988022,-0.0017562595,-0.0021499349,-0.024677513,0.047456756,0.037850358,0.010591485,-0.011188289,-0.024174184,0.014071647,-0.019327842,-0.04998778,-0.032098025,0.008240218,0.031263936,0.03169536,-0.02841653,0.032471925,0.024548085,-0.0029336903,-0.0016457068,-0.013704936,-0.0085709775,0.044896968,-0.008067648,0.0075499383,0.02532465,0.017170716,0.035894565,-0.023728378,0.019428508,-0.014100408,-0.0073629874,0.007492415,0.010951006,-0.0015513325,0.00878669,0.010267916,0.016509198,0.018148614,-0.0049182456,-0.0037821596,-0.03172412,0.016681768,-0.011217051,-7.46076e-7,0.004048205,0.030774986,0.014395216,0.0016663793,-0.002962452,0.00040423629,-0.012597611,-0.013395748,0.00023953078,0.02499389,0.019701743,0.005888952,0.029149951,0.005371242,-0.020967256,-0.015358731,-0.0024519323,0.0056732395,-0.03736141,0.0012529303,0.0261875,0.0014147146,0.029265,0.0060183792,-0.013805602,-0.011641285,-0.015962727,-0.025454078,0.021456206,0.027970724,0.018997082,-0.020118788,-0.024332372,0.010296678,-0.0303148,0.005809857,-0.0021912798,0.010641818,-0.01394941,0.009915586,0.004120109,-0.5812158,-0.022549149,0.0051878863,0.00551505,0.013381367,0.028200816,-0.00047232053,-0.0151574,-0.026777115,0.04360269,0.0061190454,0.015128639,0.011756333,-0.01773157,0.01758776,-0.020866591,-0.008628501,-0.014841022,-0.0054683127,0.008837023,-0.021959534,0.017429572,-0.023440761,0.034312673,0.0067841588,-0.016509198,-0.006320377,-0.026273785,-0.009678301,0.019917456,-0.01790414,0.00047321935,0.011511859,-0.016422912,0.05479098,-0.0055438117,-0.035204284,-0.0036275657,0.014956068,0.035031714,-0.018493753,-0.016408533,-0.0010857531,0.007391749,-0.0028833575,-0.015617587,-0.0029318926,-0.0039008015,0.0030055945,-0.027237302,0.042107083,-0.005788286,0.006075903,0.016322248,0.012381899,0.018019186,-0.002962452,-0.017889759,0.015200542,0.00348915,0.0013347212,-0.013827173,-0.032098025,-0.007089752,-0.01101572,-0.018795751,0.018695084,0.013970981,0.0027035968,-0.02565541,0.009081497,0.013100941,-0.0112673845,0.015473778,0.03362239,-0.018004805,0.037476454,-0.013539556,-0.022462863,0.043315075,-0.004623438,-0.022074582,-0.035261806,0.011303336,0.029106809,0.013064989,-0.05185729,-0.0052921474,0.005561788,0.0119432835,0.019356603,0.001953996,0.018709466,-0.008765119,0.0005284957,0.0041416804,-0.009325972,-0.0041093235,0.009894014,-0.009879634,0.0040913476,0.008664453,0.005112387,-0.008801071,0.0471979,0.0050548636,-0.015574444,0.004062586,0.0454722,0.00015751508,-0.0049541974,-0.0069315624,-0.011526239,0.042653557,-0.007945411,-0.03704503,0.016681768,0.005112387,-0.0026820258,-0.0027251681,0.01705567,0.0085709775,0.031954214,-0.011619714,-0.020147549,0.03310468,0.017674046,-0.02275048,0.008606929,-0.023886567,-0.00059186126,-0.012274043,0.018292421,-0.038224258,0.031982977,0.0009302602,0.00036221728,-0.00035997026,0.007787222,-0.02671959,-0.016034631,0.01686872,-0.022074582,-0.0153155895,0.00964235,-0.034657814,-0.036412273,0.009239687,0.004220775,-0.0038001356,-0.0072982735,-0.002599336,0.0008641983,0.02135554,0.02411666,-0.010490819,-0.018896418,-0.026633305,-0.02775501,-0.026446356,0.0071221082,0.006151402,-0.0084487405,-0.006701469,0.026245024,-0.009807729,-0.030947557,0.004030229,0.010771246,-0.020938495,-0.010864721,-0.022592291,-0.03946101,-0.0010489022,-0.008606929,0.008153933,-0.008901737,0.007064585,-0.017530238,-0.0026406809,-0.000163582,0.02309562,0.00019930938,0.018321184,0.0037102555,0.006050736,-0.0121877575,0.000074095005,-0.04668019,0.02636007,-0.025353411,0.010735293,-0.0031152484,0.0016789625,0.0009473375,0.014352073,0.013359795,-0.004932626,0.028128913,0.008125172,0.04256727,-0.005648073,-0.007593081,-0.02118297,-0.012856467,-0.038684446,0.020909734,-0.025569124,0.047284186,0.029768327,-0.010390153,-0.036325987,-0.008621311,0.00045861382,0.0045695105,0.030228514,-0.00037839572,0.010397344,0.0048966743,0.018162994,0.0032231046,-0.01256885,0.03635475,-0.0041237045,-0.02375714,0.03327725,0.0043106554,0.029020526,-0.0049757687,-0.046708953,-0.007028633,-0.015358731,-0.017127573,0.014078837,0.06442614,0.010663389,0.015459398,0.0043430123,0.030688701,0.013640222,-0.01826366,0.0013203404,0.03664237,-0.005684025,-0.014107599,0.011598144,0.03445648,0.027654346,0.0059680464,0.014021314,-0.0057271677,0.01776033,0.012957132,0.014445549,-0.019543555,-0.033133443,-0.002962452,0.005921309,0.0037282314,0.023440761,0.030746225,0.015387493,-0.0067949444,-0.02841653,0.00911745,-0.0078950785,0.009361924,-0.015128639,0.0062772343,-0.018004805,0.006270044,-0.000040614625,0.007007062,-0.019399745,0.033421062,-0.018982703,0.022304675,-0.013841554,0.0065828273,0.021039162,-0.016279105,-0.019414127,0.006935158,0.001839848,-0.022779243,-0.020895353,0.0142729785,-0.0063958764,0.030774986,-0.030084707,0.0023818258,0.036095895,-0.006334758,-0.015631968,-0.036786176,0.010361391,0.006629565,-0.009124639,-0.016710531,0.013812792,0.019744886,0.011864189,-0.0067050643,-0.038166735,0.006255663,-0.02116859,0.007715318,-0.017832235,-0.001995341,0.0009118348,-0.03362239,-0.025252746,-0.020363262,0.006320377,0.0009913788,0.021902012,0.011037291,-0.011979235,0.031206412,-0.018637562,0.003521507,-0.04181947,-0.044896968,0.004184823,0.05154091,0.030746225,0.017098812,-0.0014362859,0.0016385163,0.0076721753,-0.03132146,-0.015416255,-0.0060938788,-0.026173119,-0.0004498505,-0.002007924,0.0027017994,-0.009110259,0.007844745,0.0010309261,0.013208797,-0.016077774,-0.006212521,0.014452739,-0.009052736,-0.010131299,-0.009520113,0.026762733,0.033190966,0.04423545,0.025410935,0.042279653,-0.013769649,-0.024533704,-0.03152279,0.035060477,-0.004666581,0.002962452,-0.010864721,0.04325755,0.0034729717,-0.00020840975,0.007309059,-0.01672491,-0.0151574,0.0046522003,-0.00508003,0.0031781646,-0.008146743,-0.003721041,-0.0038217069,0.020924116,-0.0168831,-0.04256727,0.019083368,-0.0024501348,-0.014869783,-0.003739017,-0.0040913476,0.045242105,-0.023124382,-0.0022865527,-0.027409872,-0.02962452,-0.016753672,-0.005766715,0.036268465,0.013517985,-0.008988022,-0.01757338,-0.040755287,0.013072179,-0.01033982,-0.028790431,0.0016322248,-0.01016006,-0.0067949444,0.04961388,0.023239428,0.022951812,0.002311719,0.0027755012,-0.009692683,-0.0027449417,-0.02411666,-0.009095878,0.0010506997,0.0030792963,-0.009929966,-0.0009073408,0.029883375,-0.0035143164,0.009031164,0.02013317,0.01379122,0.009045545,0.02013317,-0.0075355573,0.009103068,0.018321184,0.01876699,-0.002689216,-0.023857806,0.014287359,0.018522516,0.0051087914,-0.0016726708,-0.0041920133,-0.017113194,0.015430636,0.010670579,0.022405341,-0.0053496705,-0.005482693,0.0261875,-0.0006624172,0.019514794,0.023972852,0.019155271,0.023239428,0.006618779,0.0038288974,-0.0018515325,0.005648073,0.010203202,-0.046593904,0.0030109873,-0.012518517,0.0032356877,-0.004623438,-0.021657538,-0.023124382,0.014402406,-0.013510794,0.011583762,0.015775776,0.020636499,0.009009593,-0.014697214,-0.021844488,-0.025727313,0.024145423,0.011835427,-0.007830365,-0.028459672,-0.018882036,0.014582166,-0.018997082,0.0045874864,-0.014524643,-0.017875377,-0.008312123,0.019414127,0.005737953,-0.0062592584,-0.0047492706,-0.027970724,-0.006611589,0.014100408,-0.038137972,-0.0063095912,-0.0041956087,0.02945195,0.015056734,0.01291399,0.0020996018,-0.0055042645,-0.019931838,0.016782435,0.0021786964,0.0142729785,-0.0028510005,-0.014941688,-0.0004507493,0.03201174,-0.007269512,-0.013640222,0.009929966,0.014531834,0.049843974,-0.03169536,0.0014147146,0.010706532,-0.035319332,0.019931838,0.008326503,-0.028114531,0.0028617862,-0.01153343,-0.0024411466,0.004893079,0.029178714,0.027697489,-0.0048535317,0.015027973,-0.008455931,0.047082853,0.007722508,-0.0011145147,-0.028704146,-0.031580314,-0.014193884,-0.018752608,0.018062329,-0.010864721,0.016940624,0.0052525997,0.0024914797,-0.026849018,0.0014102206,-0.014316121,0.005669644,0.0148266405,-0.011555001,-0.0030882843,0.012604802,-0.01619282,0.01758776,0.008642882,0.025986169,0.004688152,0.014718784,-0.02118297,-0.036239702,-0.007043014,-0.014208265,0.039288443,0.004943412,0.031925455,0.013582698,0.011576572,-0.0067841588,-0.022319056,0.008750738,0.012669516,-0.007463653,0.03877073,0.0074133202,-0.01257604,0.0017913127,0.013007465,-0.04069776,-0.025928644,0.016998148,0.00047996035,0.018651944,-0.005371242,-0.021269254,-0.0076290327,0.029351285,-0.0008295944,0.0076937466,0.0021840893,-0.02306686,-0.013489223,0.0037569932,-0.034255147,0.03879949,0.030113468,-0.009584826,0.00007870136,0.00038985544,0.0069135865,-0.0043106554,-0.021945154,-0.005076435,0.008067648,-0.0072263693,-0.00036334078,-0.011382431,-0.007168846,-0.019572316,0.005115982,0.028891098,-0.039115872,0.0048139845,-0.007787222,0.0017149146,-0.0047672465,-0.008678834,-0.03189669,-0.009139021,-0.017472714,-0.010253536,0.015962727,0.035089236,0.006924372,-0.030746225,-0.0047169137,-0.001790414,0.0016349212,0.011404002,0.006011189,-0.010045013,0.0021499349,-0.027798153,-0.011619714,0.014510263,-0.0066619217,-0.007456463,-0.0192847,0.0052993377,-0.03960482,0.0320405,-0.00047456755,0.031982977,-0.028100152,-0.004939817,-0.012518517,-0.031436507,-0.0021319587,-0.008340884,-0.03997872,0.0055761687,-0.0000024278193,0.009822111,-0.015790157,-0.0079885535,-0.014445549,0.037764072,0.011792284,-0.002144542,-0.022175247,0.013863125,-0.001249335,-0.013172844,-0.00089206116,-0.014941688,0.02566979,-0.027481776,0.0060902834,0.013129702,-0.013992553,-0.016796814,-0.0062412824,-0.010476438,0.014970449,-0.010735293,-0.029351285,-0.012309995,-0.005223838,0.010095346,-0.017645285,-0.009556064,0.021988297,-0.0003786204,0.011310526,0.017544618,-0.023383237,-0.0036563273,-0.03065994,-0.006489352,-0.0039043967,-0.010922244,-0.015991488,0.024850084,0.0064713755,-0.005773905,-0.014006933,-0.02328257,-0.017846616,-0.015732633,0.01102291,-0.00095452793,0.024490561,0.008384027,0.0054862886,0.03514676,-0.022088962,0.01189295,-0.03411134,-0.011037291,0.012633563,0.006482161,0.03135022,0.0018200744,-0.019572316,0.009254067,0.025223983,0.007442082,0.0155313015,0.034514003,-0.018062329,-0.017156336,0.0016591888,0.010886292,0.0075067957,0.014186693,0.020219455,-0.01893956,-0.012180567,-0.01619282,0.010246345,-0.01686872,-0.01085034,0.003679696,-0.011490287,-0.0056265015,-0.014754737,-0.022347817,0.004080562,-0.0075499383,0.022189628,0.0018820917,-0.015042353,0.03770655,0.0046090577,-0.025928644,-0.015186162,-0.002040281,-0.024720656,-0.018608801,0.013395748,0.0014920116,0.00063904835,-0.011785094,0.038454354,-0.00775127,0.007237155,-0.009052736,-0.005802667,-0.006219711,-0.01619282,0.0126191825,-0.036929984,0.009103068,0.008542215,-0.010979767,-0.01137524,-0.023972852,0.012949942,-0.016250344,-0.030401085,0.0066223745,-0.021815727,0.014050076,0.0023998017,0.02119735,0.029710805,-0.0054143844,0.2040928,-0.0038468733,0.011288956,0.035118,-0.007700937,0.020981638,0.01136805,0.009750206,0.005784691,0.02894862,-0.035894565,0.008254599,-0.009419447,0.0028977382,0.004152466,-0.019644221,-0.029768327,-0.022448484,-0.05082187,-0.0029930111,0.026892161,0.024720656,-0.04098538,-0.01566073,0.026475117,-0.011310526,-0.020737164,0.0045767007,0.028243959,0.0069531337,-0.0036814937,-0.022074582,-0.0129858935,0.028186437,-0.022017058,-0.017702809,0.056976866,-0.021614395,0.04170442,0.016782435,-0.012137424,-0.017472714,0.002049269,-0.0019396151,-0.008908927,0.0070358235,-0.00611545,-0.019241557,-0.008721977,0.004720509,-0.02030574,-0.03065994,0.0510232,0.006999871,0.01239628,-0.010713722,0.014143551,-0.010059394,-0.002566979,0.015905203,-0.04064024,0.025008272,-0.010951006,-0.017199479,0.0015054937,0.012712658,-0.0030055945,-0.011037291,0.03994996,0.0044832253,0.0069962763,0.00775127,0.0018155804,0.020061264,-0.024274848,-0.024533704,0.015703872,0.026101215,0.03321973,0.012504136,-0.02755368,-0.012496945,0.005403599,-0.018162994,-0.0029732375,-0.024735035,0.028517196,-0.006374305,-0.042107083,0.04426421,0.019903075,-0.0032518662,-0.009124639,-0.0020888164,0.013287892,0.004526368,0.011181099,0.0058817617,0.012870847,-0.020694021,-0.015459398,0.00827617,0.0056229066,-0.0009877835,-0.025396554,-0.00063904835,0.0043034647,0.009124639,0.011993616,-0.018134233,-0.0064318283,-0.020262597,0.016624246,-0.025482839,-0.04478192,0.006920777,0.010929435,-0.00516991,-0.009426638,-0.002879762,-0.0011873177,-0.009592017,-0.0040014675,0.016049013,0.00011965304,-0.008326503,-0.04995902,-0.0031961405,-0.010009061,-0.018608801,-0.00084307644,-0.006838087,0.0033507345,-0.027812535,-0.0410429,-0.0039475393,-0.0040913476,-0.009879634,0.016839957,0.009728635,0.012302804,-0.010462058,0.0029067262,-0.0009055432,0.0091534015,-0.017645285,0.031033842,-0.002221839,-0.005737953,-0.019960599,0.0075139864,-0.044896968,0.01669615,-0.0134460805,0.0045731054,-0.0061370214,-0.0368437,-0.018982703,0.02188763,0.002299136,0.000976998,-0.01722824,0.024375515,-0.011590953,-0.024030374,-0.018306803,-0.18418974,0.027079113,0.021082304,-0.023354476,0.0021912798,0.012511326,0.047082853,-0.005702001,-0.012561659,-0.00931159,-0.005784691,0.0148266405,-0.033679914,0.014136361,-0.0155600635,0.026115596,0.0033651153,0.03408258,0.023742758,0.01481226,0.039489772,-0.02034888,-0.0026155144,-0.0046989378,-0.007887888,0.0381955,-0.013618651,-0.002531027,0.036038373,-0.017702809,-0.033421062,0.01411479,0.0075139864,-0.0017796283,-0.03155155,-0.010613056,0.012101472,-0.018896418,0.015373113,0.030746225,0.017199479,0.012266852,-0.014560595,-0.00081701117,-0.016854338,0.026460737,-0.010821578,-0.023570187,-0.020809067,0.004033824,0.010311059,0.007614652,0.02309562,-0.014841022,-0.0010920446,0.013144083,-0.016077774,0.0018119852,0.0077440795,-0.02705035,-0.0005630996,-0.0019917456,0.0073126545,-0.011288956,-0.014423978,0.011993616,-0.027021589,0.036268465,-0.019615458,0.019428508,-0.012468183,-0.014539024,0.00088576955,-0.020694021,0.049527597,0.004806794,-0.027136635,0.0022344221,-0.0110301,0.012115853,-0.022146486,0.051569674,0.0057631196,0.030142229,0.0024375515,0.008678834,0.015747014,0.013287892,-0.027639965,0.011519048,0.042020798,-0.008757928,-0.01102291,-0.0033004016,0.020104406,0.0012547278,0.02102478,0.02461999,0.016077774,-0.0018425444,-0.0008641983,0.010800007,-0.027985105,0.016782435,-0.005511455,0.01257604,-0.0093978755,0.007456463,0.026029311,0.009182163,-0.022362199,0.006874039,0.007456463,0.005302933,-0.012496945,0.008872975,0.005443146,-0.001036319,0.013841554,0.0027161802,0.0019468055,-0.015445016,-0.004152466,-0.00240879,-0.0044400827,0.007287488,-0.08887356,-0.048894837,0.0041956087,0.016178438,-0.038137972,0.009361924,-0.0042063943,0.0005873672,-0.017156336,0.0347441,-0.015977107,-0.004094943,-0.03411134,0.022549149,0.030084707,-0.005896142,-0.0112386225,-0.0028420126,0.010311059,0.021312397,-0.0060543315,-0.034427717,-0.015186162,0.009699873,-0.019241557,-0.0057127867,-0.008829833,0.019040225,0.01602025,0.0041920133,0.0028150484,-0.0037138506,0.015171781,-0.0070861564,-0.030458609,-0.017789092,-0.053525466,0.009584826,-0.016768053,-0.053985655,0.021470586,-0.015545682,-0.0036509344,0.0015342553,0.0020888164,-0.018838894,-0.022951812,0.006187354,-0.026374452,-0.026676448,-0.019356603,0.011619714,-0.031235173,-0.031263936,0.011813856,-0.028919859,0.00791665,-0.010922244,0.0053496705,-0.015445016,0.0133238435,-0.009973109,-0.036268465,0.028459672,0.022966193,0.011224242,-0.0007940917,-0.00022548699,0.022362199,0.006464185,0.008772309,-0.0151574,-0.015962727,0.011245813,0.0025723719,0.008808262,0.0042711077,-0.0023998017,-0.013812792,0.009685492,0.0004556927,-0.0203345,-0.033679914,0.007287488,-0.00018728791,-0.007197608,0.016207201,-0.0060183792,0.012655134,-0.02600055,-0.0047816276,0.0220602,0.031407744,-0.020118788,-0.0047816276,0.005953666,-0.020895353,0.0050081257,0.02118297,-0.018565658,-0.040410146,-0.013970981,-0.0589039,0.027884439,0.004371774,-0.00491465,-0.0028366197,0.017285764,0.018997082,-0.013963791,-0.009023974,0.024231706,-0.026388831,-0.010066585,-0.03580828,-0.019385366,-0.020607736,-0.010052203,0.031263936,0.005338885,0.003983491,-0.020507071,-0.016120916,-0.014222645,-0.028100152,0.028474053,0.020924116,0.01361146,-0.014898545,0.011339288,-0.0036958745,-0.024274848,0.02016193,-0.012101472,0.0101960115,0.02719416,0.010893483,-0.021973915,-0.026273785,0.017602142,0.018162994,-0.0047672465,0.0035862208,-0.019859932,-0.0048786984,0.008132362,0.0082330275,-0.009067116,0.016178438,0.016422912,-0.004601867,-0.027266063,0.015358731,0.0092756385,-0.011677238,0.015804537,0.002522039,-0.0067374213,-0.046823997,-0.04133052,0.03445648,-0.0020294953,0.0105627235,0.0048822933,0.01567511,-0.0068992055,0.01051239,-0.012317185,0.004519177,0.01446712,0.016394151,-0.0032518662,0.0043034647,-0.005655263,0.026475117,0.027352348,0.02996966,0.0065037324,-0.0044652494,0.0098293,-0.017947283,0.022692958,0.04806075,-0.021542491,-0.025223983,0.015775776,0.023843424,0.01568949,-0.008053267,0.00240879,-0.024174184,0.005788286,-0.019342223,0.006187354,0.0040518004,-0.029538235,-0.022534769,0.021844488,0.0036958745,-0.0076434137,-0.023527047,0.0034460076,0.019356603,0.012360328,0.0003712053,-0.007456463,-0.0127414195,0.022103343,0.014510263,-0.005561788,0.014531834,-0.022405341,0.00998749,0.007722508,-0.017530238,0.02361333,-0.005525836,-0.016998148,0.009239687,-0.01929908,-0.03877073,0.0025490029,0.002662252,0.0061909496,-0.011641285,0.0048643174,0.031292696,0.009606398,0.019701743,-0.019212795,0.011957664,0.007880698,-0.03517552,-0.015948346,0.0016780637,-0.03290335,-0.01586206,0.0064929468,-0.0064713755,0.059536655,-0.0030073922,0.11763523,0.0034729717,-0.017774712,-0.0011154135,-0.018536896,0.023512665,0.02687778,-0.015200542,-0.011475906,-0.020406405,0.026791496,0.010591485,0.0037426122,-0.017832235,0.008117981,-0.048981123,-0.004094943,-0.0019557935,0.0039223726,0.022405341,0.025051415,-0.022261532,0.021298015,-0.006528899,-0.011842618,-0.019859932,-0.016494818,-0.017803473,0.006439019,-0.026949685,-0.005324504,0.00775127,0.029739566,0.007007062,-0.01016725,-0.021815727,-0.052605093,-0.00034558945,0.017314525,0.022333436,-0.00079588935,0.0052849567,-0.023023717,0.0220602,-0.0062089255,-0.009498541,0.027639965,0.021240493,-0.039892435]," select Registereddate, orgid\n from your_table\n where Registereddate > DATEADD(day, -7, CONVERT(datetime, CONVERT(char(10), GETDATE(), \n101)))\n\nand DATEPART(week, Registereddate) = DATEPART(week, GETDATE())\n":[-0.013928047,-0.006950759,-0.017920755,-0.017589133,-0.020135976,0.009882281,-0.0508838,-0.028174449,-0.026901029,-0.033162016,-0.0005065498,0.050353207,-0.020852277,0.00032457325,0.019724768,0.014723935,-0.00064375764,-0.028200978,0.009955238,-0.0010752784,0.014604553,0.0014591287,-0.00594595,0.015559618,-0.005150061,0.01956559,-0.0042779003,-0.022192022,0.007607367,-0.01371581,-0.0046128365,-0.026211258,-0.027749976,-0.030774351,-0.038149584,-0.0011192181,0.0033875,0.013941312,0.02464601,0.01721772,0.026622467,-0.018119726,0.01677998,-0.03435585,0.009530764,0.024234802,-0.0092654675,-0.024818454,0.00687117,0.019034998,0.013264807,0.01128835,-0.022523642,0.008363461,0.010824082,0.0006707018,0.017376896,0.022775672,-0.03589457,-0.010684802,0.007043612,-0.007826236,0.0023727424,0.0037771538,-0.0077997064,-0.018782966,-0.033851787,-0.008595595,-0.005979112,0.014445375,0.028360156,0.020467596,-0.006605874,0.015188204,0.02196652,-0.027909154,0.009225673,0.013954577,-0.018650318,-0.014578023,0.024115419,-0.020082917,-0.01884929,0.020785952,0.021502253,0.0036776676,-0.014975967,0.018889084,-0.031411063,-0.011102643,0.008920583,0.026118405,0.03289672,0.006917597,0.0043608053,0.01677998,-0.016435096,0.040006656,0.017098336,-0.020467596,0.021807343,-0.007965516,-0.01813299,-0.010220533,-0.02099819,0.010771023,-0.011215394,0.0007598247,0.0024705702,-0.023040969,-0.02130328,0.04531258,0.03374567,-0.012250049,-0.0057469774,-0.009086393,-0.020321684,-0.0017211087,-0.027325502,-0.04727577,0.025627607,-0.0041518845,0.023040969,-0.039290357,0.02883769,0.0033841839,-0.0016232807,-0.0014334281,0.011653133,-0.01048583,0.029792756,-0.002286521,0.022497112,0.003913118,0.004778647,0.02290832,-0.023823593,0.0185442,-0.035072148,-0.03159677,0.017310573,0.0037141459,0.009000171,0.009709839,0.009782795,0.013417352,0.023611356,-0.013258174,-0.013079099,-0.018889084,0.023611356,0.003879956,-0.0036345571,0.006811478,0.029023398,-0.000003792258,-0.000036530033,0.00075733755,0.0011706192,-0.015665736,-0.0050373105,0.0030475894,0.01987068,0.019990064,-0.000010233591,0.013231644,0.006363791,0.005760242,-0.0133775575,-0.0027839513,0.014020901,-0.009093025,-0.008131326,0.008827729,0.036929224,0.016302448,0.0039728098,-0.017788107,-0.031464122,-0.008244078,-0.02878463,0.010989892,0.018756436,0.027086735,-0.012767376,-0.0090333335,0.00608523,-0.0011755935,0.00549163,-0.011215394,0.0034289525,0.007003818,0.0018404919,-0.028015273,-0.6014794,-0.016992217,-0.008695081,-0.0046924255,0.022669556,0.0063405777,0.010731229,-0.0216349,-0.011467425,0.003009453,0.01777484,0.035921097,0.046134997,-0.024407245,0.0036445057,-0.03143759,0.0056972345,-0.00021990562,-0.0058000367,0.010797553,-0.0009326817,-0.0005231308,-0.01034655,0.0111756,0.025707196,0.019141117,-0.018239109,-0.0010048092,-0.008409888,0.015572883,-0.026993882,0.0029116252,0.0016025545,-0.015188204,0.0432698,0.0077400147,-0.031994715,0.0087216105,0.003763889,0.044675868,-0.012449021,0.0019714818,0.008217548,0.012548507,0.0091129225,0.001464103,0.004490137,-0.0001798003,0.020122712,-0.018331964,0.00076189736,0.003271433,-0.009882281,-0.017018747,0.029580519,-0.00100398,0.009298629,-0.0030674865,0.010227166,-0.009941973,0.0154535,0.008787935,-0.04735536,-0.033188548,-0.026529614,-0.022775672,0.0010926884,0.01716466,0.013470411,-0.021873666,0.03157024,0.008927215,0.0005778482,0.008973642,0.0029033346,0.007547675,0.03353343,0.0034455336,-0.018318698,0.04250044,0.004652631,-0.0009061521,-0.019034998,-0.0048582354,0.00907976,0.0032183737,-0.062822126,-0.013729075,-0.00036975648,-0.0069308616,0.035337444,0.03239266,0.015652472,-0.0131454235,-0.0018189367,0.0051666424,-0.023863388,-0.005126848,-0.022802202,0.014591288,-0.001102637,-0.0018537567,-0.012561772,0.027272442,0.040351544,0.011195497,0.0027507893,-0.004317695,0.03080088,-0.018836025,-0.0063538426,-0.028280567,-0.013291337,0.030615173,-0.024898043,-0.030111112,0.004997516,0.0087282425,-0.0042646355,-0.017628929,0.0019781142,0.008065003,0.012316373,-0.03921077,0.0059724795,0.031331472,0.011606706,-0.005375563,0.030535584,-0.01959212,0.015466765,-0.0046824766,0.012037812,-0.028625453,0.021701224,-0.00097413425,-0.009139452,0.0025683981,-0.0064201667,0.00615487,-0.018623788,0.0018802864,0.022775672,-0.01302604,0.012230152,-0.00046965707,-0.019088058,0.017973812,-0.025189867,0.00081454206,-0.024301127,-0.0012087555,-0.021170631,0.00838999,-0.011692927,0.0013787108,-0.00076065375,-0.062238473,-0.008695081,-0.00060271967,-0.041969847,0.0035748654,-0.016819775,-0.018968673,0.0071099363,-0.033772197,-0.01815952,0.03027029,-0.0119847525,-0.025667401,-0.008409888,-0.0021737702,-0.007859398,0.010691434,-0.0068976996,-0.022855261,-0.028015273,0.013496941,0.01807993,-0.00894048,0.007958884,0.014723935,-0.0019515847,0.0015917768,-0.008840994,0.011308248,-0.044171806,0.0069109644,-0.05008791,0.028360156,-0.005262812,0.0039562285,-0.023518503,-0.007627264,0.022483848,0.019950269,0.014922908,-0.0001410422,0.019976798,0.012329638,0.037884288,0.0027856093,-0.00825071,-0.029156046,-0.00087216106,-0.0039429637,0.005504895,-0.004241422,0.019247234,0.026728585,0.00016259751,-0.018729907,0.00009803521,-0.0019797725,0.0049610375,0.016289182,-0.017562604,-0.0010885432,0.00295971,0.025853109,0.024473568,-0.024234802,0.0432698,0.007574205,-0.0018305434,0.005378879,0.009736368,0.010611845,0.029156046,-0.04059031,-0.035257857,-0.007315541,0.0017227668,0.0185442,0.046081938,-0.00019368691,0.011076113,-0.027537739,0.023929711,-0.019353352,-0.008960377,0.028360156,0.031198826,-0.008867524,-0.014644347,-0.007056877,0.0013671041,0.028094862,-0.02569393,0.026595937,-0.0074747186,0.00061930064,0.024765395,0.011401101,0.011361307,-0.0363721,-0.0146178175,-0.0033228341,0.005644175,0.0020245411,0.047700245,0.020865541,0.0091129225,-0.0142331375,0.010618478,-0.0060587004,0.018597258,-0.024632746,-0.0012833701,-0.015586148,0.027962213,-0.013370926,0.019937005,-0.029553989,-0.0050870534,-0.0034820118,-0.0009451175,0.0061117597,0.015599413,0.028651983,-0.025150074,-0.024911307,0.02119716,0.014631082,-0.011367939,-0.024738865,-0.01131488,-0.010399609,0.001757587,-0.019127851,0.0046128365,0.019061528,-0.0076537933,-0.029686637,-0.04454322,0.022112433,0.030960059,-0.0010271935,-0.00874814,0.0072226874,-0.0055811675,0.009723104,-0.008807831,-0.02574699,0.030482527,-0.0006362962,-0.002845301,-0.026715321,-0.013536735,0.006685463,-0.029872345,0.010870509,-0.021462457,0.027776506,-0.030482527,0.007123201,-0.007169628,0.02119716,0.04051072,-0.00720279,-0.012515346,-0.044675868,-0.020759422,0.017177925,0.050565444,-0.015586148,0.0045664096,0.00703698,-0.009185879,0.008628757,-0.004629418,-0.02296138,0.023094028,-0.005952582,-0.003551652,-0.021488987,0.029792756,-0.023226677,0.0038766398,-0.0024523311,-0.007514513,0.007282379,-0.003238271,0.0058597284,-0.013284704,0.009291997,-0.0155463535,0.021687958,0.019034998,0.0151616745,0.040749487,0.017788107,-0.0024374083,-0.03767205,-0.030615173,0.018424816,0.009398116,-0.0018836026,0.010313387,0.017138131,0.016541215,-0.007627264,0.012475551,0.0024738864,0.00067650515,0.031145766,-0.0040689795,-0.0075543076,-0.00016808997,0.0030359826,-0.011692927,0.026781645,-0.016753452,-0.021833872,0.0006280057,0.004781963,-0.026038816,-0.0036212923,-0.020441066,0.026370436,-0.010724597,-0.009557294,-0.01987068,-0.02679491,-0.027378561,-0.0026678843,0.03223348,0.008157856,-0.012561772,0.006917597,-0.02881116,0.011527117,-0.0043972833,-0.009046598,-0.016010622,-0.019101322,-0.0016415198,0.0074879834,0.012548507,0.009736368,0.03573539,0.002533578,0.0018802864,-0.00067360344,-0.0044271294,-0.014896378,-0.002944787,-0.024990896,-0.033719137,-0.020374743,0.024261331,0.0010321678,-0.0007084236,0.0052230177,-0.016726922,-0.015891239,0.021953255,-0.0021837188,0.019910475,0.0247256,0.036716986,-0.004095509,-0.016368771,-0.0016705366,-0.011812311,-0.0058928905,-0.010857244,-0.017085072,-0.0047852793,0.0029414708,0.015174939,0.0112817185,0.012774009,-0.0043011135,0.024924573,-0.013596427,0.014551493,0.0052163852,0.04456975,0.011686294,0.014445375,0.0004085146,0.025587812,0.012641361,-0.0049411403,-0.03308243,0.025574548,-0.0053191874,-0.011474058,-0.0041817306,-0.02408889,-0.019830886,-0.0002284034,0.00028291345,-0.0051666424,-0.0067119924,-0.0045199827,-0.011772516,-0.015718795,-0.021462457,0.0013662751,0.038255703,-0.0059923762,-0.01098326,-0.017230984,-0.019857416,0.026211258,-0.004702374,-0.0031852117,-0.01987068,-0.02881116,-0.01989721,0.037486345,-0.0136096915,0.011646501,0.01471067,-0.023651151,0.008900685,-0.01471067,-0.03029682,-0.01790749,0.012820436,0.032817133,0.021687958,0.039608713,-0.008502741,0.0071430984,0.0051401127,-0.0021571892,0.002253359,-0.0072226874,-0.0008771354,-0.030907,-0.023611356,0.013795399,-0.02125022,-0.008821096,0.020361478,0.01059858,0.042473912,-0.013357661,0.0108970385,-0.024738865,-0.02572046,0.018371757,0.006642352,-0.0060686492,0.00063256547,-0.02293485,-0.022775672,0.0063239965,0.0040026554,0.02942134,0.00036726933,0.015692266,0.0005824079,0.012959716,-0.01299951,-0.023558296,-0.013351028,0.0008597253,-0.014087224,-0.025866373,0.0516001,0.0115138525,0.029845815,0.01989721,0.01650142,-0.017032012,0.009318527,-0.005405409,-0.0063339453,-0.0081843855,-0.033904847,0.00180733,-0.016634068,-0.0053987764,0.022616496,0.0065163365,0.02641023,-0.019313559,0.022589967,-0.0037937348,-0.031119237,-0.0081047965,-0.021953255,0.045896232,0.009636882,0.022112433,0.029553989,0.02743162,-0.00960372,-0.0072558494,0.0033278083,0.009185879,0.0041684657,0.030058052,0.0017542708,-0.003926383,0.03172942,-0.0053357687,-0.032498777,-0.012621463,0.02064004,0.011222026,-0.018146256,-0.0032979625,-0.017920755,-0.0064234827,0.038521,-0.0009616985,-0.0008070806,-0.0016539556,-0.016222859,-0.006231143,-0.02204611,-0.04942467,0.01746975,0.022085903,0.0007250046,-0.014325991,-0.014471904,0.001644836,0.0068645375,-0.025733726,-0.00091112644,0.055234656,-0.032366127,0.012435757,0.015944298,-0.0068645375,-0.029951934,-0.007859398,0.031941656,0.0040921927,-0.014564758,-0.013662751,0.023452178,0.013251542,-0.015174939,-0.019088058,-0.002565082,-0.013543367,0.0052594957,0.015612678,0.034010965,0.010711332,-0.010950098,-0.0019333456,-0.026914293,0.024128683,-0.0013040963,-0.009418013,-0.032445718,-0.00910629,-0.007958884,-0.008821096,0.009132819,-0.01987068,-0.0016680495,0.014325991,0.019393148,-0.019910475,0.008695081,0.009829222,0.026967352,-0.021356339,-0.013324498,-0.028386686,-0.0068313754,0.00608523,-0.0141535485,-0.016753452,-0.005033994,-0.0068844347,0.011056216,-0.01650142,-0.018650318,0.012754112,0.018292168,0.014312726,0.00453988,-0.005611013,0.015732061,-0.0411209,0.00027275758,-0.0037871024,-0.0034753794,0.02028189,0.0019101321,-0.008993539,-0.0036080275,-0.035125207,-0.012575037,-0.019366618,0.014166813,-0.029660108,-0.0023064183,-0.034170143,-0.0073487028,-0.0077201175,0.03987401,0.0013339422,-0.016209593,0.0185442,-0.0022085903,-0.009179247,0.016262652,0.008051738,-0.0023462127,0.000044639182,-0.009676676,-0.0049378243,0.018119726,-0.016660597,0.008051738,0.009544029,-0.008237445,-0.021568576,-0.008124694,-0.045604404,-0.010784288,0.020812482,0.010618478,0.020799218,-0.025627607,0.015586148,0.025481693,-0.029102987,0.02602555,-0.03379873,-0.020958394,-0.0016249388,-0.008516006,0.032764073,-0.021913461,-0.0021256853,-0.022430789,0.031464122,0.005737029,0.013795399,0.02099819,-0.003846794,0.008522638,-0.0067285732,-0.017456485,-0.014498434,-0.010956731,0.007852766,-0.03836182,0.009650147,0.016527949,0.0072226874,0.005276077,-0.00184215,0.0146974055,0.001642349,-0.013357661,-0.026901029,0.00064665935,0.013768869,0.017642193,0.015413705,0.020533921,0.010472565,0.036053743,-0.008157856,-0.008476212,0.008449682,0.0033162017,-0.012090871,-0.015241263,-0.012548507,-0.015997358,0.011381204,-0.022444053,0.016368771,-0.014578023,-0.025295986,-0.012269946,0.01445864,0.005770191,0.007859398,-0.001380369,-0.047249243,0.014259667,0.015877973,-0.0033178597,0.0043641212,-0.021236956,0.005982428,-0.013105629,-0.025879638,0.020732893,-0.0028850955,0.0155463535,0.0026944138,-0.008827729,0.0064566447,0.013702545,0.20173118,0.025309252,-0.004377386,0.004755433,0.016130006,0.052369457,-0.0053987764,0.00075029064,-0.009782795,0.031251885,-0.01540044,-0.014790259,0.01445864,-0.0009774504,0.0038103159,-0.009477705,-0.027882624,-0.03570886,-0.03369261,-0.008118061,0.014564758,-0.0032913303,-0.027298972,-0.026476555,0.028121391,-0.0004068565,-0.021422664,0.013596427,0.026940823,0.00050530623,-0.013072467,0.011547014,-0.011122541,0.011487323,0.0030790933,-0.012256682,0.003896537,-0.0004883107,0.0029182574,0.015732061,0.008549168,-0.016236123,0.007759912,-0.032260012,0.00016539556,0.010472565,-0.0023926396,0.0061382893,-0.009378218,-0.028307097,-0.026675526,-0.015493294,0.006038803,0.013231644,0.038043465,-0.0061217085,0.028758101,-0.018318698,-0.023186883,0.0035317547,-0.036292512,0.02431439,-0.031649828,-0.01677998,-0.0053324522,0.022589967,-0.023213413,0.026264317,0.01476373,-0.010273593,0.009530764,-0.0003668548,-0.016713656,0.007123201,-0.013835194,-0.02469907,0.0024423825,0.026940823,0.03308243,0.013271439,-0.036796574,-0.00960372,-0.022523642,0.011626603,-0.010565419,-0.026781645,0.0012518661,-0.00064873195,-0.018557465,0.01984415,0.024752129,-0.011905164,-0.006791581,0.010379711,0.023810329,0.006363791,0.022550171,0.009530764,-0.012455653,-0.011434264,-0.02740509,0.03167636,0.00014902181,-0.012163828,-0.010140945,0.005312555,0.014511699,0.034117084,0.019101322,-0.045843173,-0.009179247,-0.007216055,-0.007461454,0.0038434777,-0.02434092,0.025733726,0.028307097,0.014856583,-0.013132159,-0.012163828,-0.0010570392,-0.0049245595,0.017814636,0.004987567,-0.0163953,-0.019074792,-0.027564269,-0.0011233633,-0.018451346,-0.059161037,0.015108615,-0.028758101,0.019963535,-0.013112262,-0.020414537,-0.013556632,0.018265639,-0.022470582,-0.0002194911,0.01509535,0.006446696,-0.02158184,0.0046625794,0.010996525,0.036902692,-0.003568233,0.00394628,0.0013297969,0.0019864049,-0.009119554,-0.0055811675,-0.036902692,0.012581669,0.004927876,0.033957906,0.0077333823,-0.047620658,-0.015639206,-0.001413531,0.019552326,-0.009325159,0.018239109,0.047779836,-0.029076457,-0.018716643,-0.013198483,-0.1655448,0.0080252085,0.03172942,-0.030111112,0.028333627,0.013928047,0.038998533,-0.023385854,0.004642682,0.00963025,0.015519824,0.0053656143,-0.042129025,0.010140945,-0.0022085903,-0.0031653144,0.004423813,0.027882624,0.051228683,0.0030459312,0.03353343,0.016103476,-0.02403583,-0.02028189,-0.010518991,0.01274748,-0.013430617,0.020772688,0.0009061521,-0.04098825,-0.005869677,0.013596427,0.0018968674,-0.02155531,-0.039237298,0.0081047965,0.0061250245,-0.02505722,-0.019061528,0.024473568,0.017987078,0.0163953,-0.0077333823,-0.004569726,0.0016879466,0.03297631,0.025574548,-0.027856095,0.001183884,-0.0019184226,0.03082741,-0.030455997,0.017443221,0.011056216,-0.0118255755,0.042288203,-0.007938987,-0.0134571465,-0.020653304,0.00076562806,0.008655286,-0.024898043,-0.015015761,0.023531767,-0.016713656,0.013019408,-0.038096525,0.03308243,-0.002714311,0.0111756,-0.04480852,-0.037433285,-0.008065003,-0.0153208515,0.04313715,-0.00022177098,-0.011659766,0.006304099,0.011540382,-0.004639366,-0.033825256,0.055977486,0.012900025,0.03992707,-0.0030956743,-0.000904494,0.0075808372,0.020056387,-0.017987078,-0.0038036834,0.028333627,-0.033878315,-0.011102643,-0.008171121,0.03294978,0.0044735563,0.0054219896,0.008907318,-0.011215394,-0.0010396292,0.023770534,0.01677998,-0.025733726,0.027590798,0.015227999,0.019459471,-0.0058796257,0.016222859,0.02229814,-0.0019051579,-0.03796388,0.02099819,0.012117401,0.01540044,0.01230974,0.013821929,-0.0012236785,-0.005528108,-0.005544689,-0.0057469774,0.0063704234,-0.017894225,0.0163953,0.0006089375,-0.0062543564,0.008595595,-0.078103185,-0.054385707,0.022138963,0.009689941,-0.008210915,-0.0041618333,0.0052230177,0.008310402,-0.026609203,0.03085394,-0.013112262,-0.013211748,-0.03440891,-0.0080849,0.03568233,0.008045105,-0.015957562,-0.009557294,0.0016357165,0.01512188,0.0007577521,-0.0042447383,0.0028038486,0.0034952767,0.00038737382,-0.0061217085,-0.01611674,0.021767547,0.020772688,0.011520484,0.0045465124,-0.017124865,0.021833872,-0.0042215246,-0.031039648,-0.034833383,-0.04862878,-0.010140945,-0.0052230177,-0.023173617,0.021409398,0.0039728098,0.021064512,0.0014699064,0.004917927,-0.009232306,-0.029023398,0.03844141,0.010419506,-0.014498434,0.014657612,-0.017416691,-0.0073619676,-0.041969847,0.012243417,-0.004536564,0.03568233,0.017721782,-0.019671708,0.006260989,0.010724597,0.0036411895,-0.0054651005,0.020374743,0.023399118,-0.00072749174,0.0061814,-0.0059625306,0.0018272272,-0.009683309,-0.021051249,-0.003979442,-0.011925061,-0.008111429,0.0030558798,0.024195008,0.007070142,-0.025654137,-0.019645179,-0.003763889,0.0010321678,-0.012051077,-0.019711504,-0.00960372,0.021369604,0.0021339757,-0.00092853646,-0.006937494,0.015068821,-0.021687958,0.0006794068,0.010406241,0.015625942,-0.024141949,-0.0009326817,-0.0055878,-0.004569726,-0.0069308616,-0.004675844,-0.0068048458,-0.023505237,-0.00049287046,-0.061973177,0.01338419,-0.006937494,0.0301907,0.003631241,-0.002465596,-0.011706192,0.010300122,-0.014816789,0.014657612,-0.032100834,-0.0001532707,-0.038176116,-0.01203118,-0.037433285,0.013072467,0.011619971,0.018995203,0.025640871,-0.04199638,-0.025574548,-0.0019814305,-0.0077997064,0.012203623,-0.0034223201,0.012097504,-0.006741838,0.0059625306,-0.012442389,-0.005355666,0.034568086,-0.013874988,0.025189867,0.042075966,0.014471904,-0.043057565,-0.0059426334,0.01079092,0.020626774,-0.012051077,0.0029481032,-0.03634557,0.023651151,-0.01186537,-0.004088877,0.008781302,0.008091532,-0.0008472895,-0.013105629,-0.044835046,0.035125207,0.016342241,0.0010412873,0.0033941325,0.0034090553,-0.016023887,-0.026065346,-0.027020412,0.027020412,0.011016422,0.019751297,0.008781302,0.026012287,-0.0037207783,0.007667058,-0.0057104994,-0.008927215,0.00037597437,0.020626774,0.013297969,0.004340908,0.0035914464,0.022841997,0.036186393,0.022152226,0.011308248,-0.0012386013,0.0052860253,-0.017695252,0.007401762,0.0316233,0.0042546866,-0.018013608,0.012429124,0.024115419,0.033055898,-0.011951591,0.011885267,-0.006493123,-0.009258836,-0.0075410428,0.017456485,-0.0027408407,-0.04321674,-0.01644836,0.035337444,-0.0023080765,-0.000078448895,-0.019021733,0.025521489,0.0101210475,0.012575037,-0.009325159,-0.011056216,-0.010903671,0.0014384025,-0.0017327154,0.008840994,-0.0057303966,0.0066456683,0.008443049,0.0041021416,0.0036411895,0.01821258,-0.009311894,0.0038865884,-0.0033941325,-0.030323349,-0.01581165,0.023200147,-0.0100414585,0.009000171,-0.0020013277,-0.016156536,0.028651983,0.0032133996,-0.008642022,-0.037592463,-0.0020742842,0.0022019579,-0.02058698,-0.0046095205,-0.008005311,-0.027033675,-0.010916936,-0.01609021,-0.011918429,0.027325502,-0.004377386,0.049636908,0.003896537,-0.027325502,0.0108970385,0.01807993,0.010538889,0.02373074,0.015294322,-0.009185879,-0.03913118,0.014896378,-0.010558786,0.0062709376,-0.018796232,-0.02260323,-0.010711332,0.019088058,0.015055556,0.020799218,0.02033495,0.008118061,-0.015625942,0.015931033,-0.00018467098,-0.03358649,0.0002626017,-0.005693918,-0.018570729,-0.026728585,-0.05215722,0.020507392,0.0145382285,0.010333285,0.02207264,-0.007859398,-0.023942975,-0.0323396,-0.00385011,0.022895057,0.036584336,0.020427803,0.022841997,-0.025972491,0.017058542,0.0032764073,-0.023239942,0.010028194,0.012389329,-0.0054651005],"Suggestions to modify pivot query in SQL Server to get desired output":[-0.0067309025,0.01427938,-0.020777697,0.004027969,-0.017817508,0.036565363,-0.047278423,-0.024358114,-0.02306127,-0.034253597,0.027952628,0.011720933,0.013567526,0.008225093,0.0033601653,0.00031341866,0.02193358,-0.010656675,0.0053424337,-0.04378258,-0.008725505,-0.015364783,0.020213852,-0.0021972344,-0.03005295,-0.009141341,0.022159118,-0.033717945,0.0014272332,0.012616037,0.019213026,0.00130213,-0.021975867,-0.02280754,-0.03490202,0.0203971,0.0040632095,0.012066288,0.02619061,-0.0015725996,0.033689752,-0.018663278,-0.012700614,-0.025330747,0.0070480653,0.022511521,-0.002267715,-0.0003733272,-0.010508666,-0.0064172633,0.027078668,0.028699722,-0.03879255,0.0015285491,0.0026641688,0.0007268317,0.006152961,0.040202163,-0.026077842,0.011897135,0.010797637,0.002387532,-0.0009356307,0.008394246,-0.037326556,-0.020242045,0.0032438722,-0.0056631207,0.015209725,0.0064384076,0.029686451,0.054692987,-0.002160232,-0.009155437,0.0022412848,-0.004627055,0.002472109,0.0029971898,-0.017859798,-0.007964314,0.028713819,-0.005169756,-0.009648802,0.002687075,0.02473871,0.013250363,0.021383831,0.0386234,-0.0012131482,0.0019628862,0.015294302,0.0258664,0.035945132,0.012002856,0.00584637,0.013468853,-0.018776046,0.037580285,-0.01690126,-0.01212972,-0.0034183117,0.009042668,-0.026416149,-0.01646428,-0.04710927,0.017591972,-0.01122052,-0.023075366,0.0027857479,0.013497045,-0.0089439945,0.006015524,0.020016506,0.003682614,0.0043416084,0.009162485,-0.0060895286,-0.023188135,-0.014885514,-0.015787667,0.02262429,0.015463456,0.018198105,-0.013010729,0.025979169,0.0072876997,-0.0013761348,-0.0026183564,-0.008993331,-0.012524412,0.042372968,0.023709692,-0.009395071,0.036086094,-0.013926977,0.005930947,-0.016309224,-0.0028826587,-0.042344775,-0.028079493,0.020749504,0.027050475,-0.00018897625,0.0023100034,0.0154070705,0.010896309,-0.00499003,-0.014251188,-0.024640037,-0.024104383,0.0075273337,-0.015604417,0.037495706,0.023089463,0.006660422,-0.021989964,-0.024344018,0.020552158,-0.010698963,-0.027149148,0.0046869633,-0.0010325416,0.0014439723,0.006565273,0.0114108175,0.011065463,-0.0029936659,0.006663946,-0.022455137,-0.0037495708,0.02000241,0.009810907,-0.017253663,-0.007456853,0.009606513,-0.014871418,0.01697174,-0.0047962083,-0.003016572,0.0061917254,0.0005893945,0.0011426676,0.025640862,0.024950152,0.0013585147,-0.027346494,0.02816407,-0.020171562,-0.0013919929,-0.014716361,0.006367927,0.022638386,-0.014998283,-0.022060445,-0.6062464,-0.02542942,0.02230008,-0.020340716,0.025556285,0.012503268,-0.0109808855,-0.0013488235,0.0017972566,-0.0014430914,-0.007365228,0.040286742,-0.0036896623,-0.011100703,-0.01191123,-0.020608542,0.0017144419,-0.03989205,0.0022060445,0.008690265,-0.00010291277,0.0189452,0.009225918,0.0034729342,0.02954549,-0.013680295,-0.020115178,0.009232965,0.013433613,0.0054129143,-0.019339891,0.0017778745,-0.008535207,-0.006061336,0.05432649,0.0024474408,-0.034563713,-0.003908152,0.012411643,0.039638318,-0.027755281,-0.028220454,0.0036368018,-0.0053318613,-0.013955169,0.002496777,-0.007971362,-0.0045600985,0.010804684,-0.029348144,0.002264191,0.0025390657,-0.0030430022,-0.01614007,0.005345958,-0.015872244,0.039074473,0.0018395451,0.03103968,-0.007745824,0.0009074384,0.008295573,-0.026599398,-0.011939423,-0.03591694,-0.008803033,0.025373036,-0.020213852,0.018043047,-0.024499075,0.01286272,0.019523142,-0.0004938051,0.0033724993,0.0044966657,0.008951043,0.04065324,0.004866689,0.010254935,0.010811732,0.01832497,-0.029771028,-0.021510696,-0.011615212,0.0037636668,0.0076964875,-0.048659842,0.000106546926,-0.005821702,-0.0015849337,0.019001585,0.009338686,-0.027374687,-0.03591694,0.024893766,0.008824178,-0.02338548,-0.005701885,0.04214743,-0.025175689,-0.019494949,0.0019628862,0.006174105,-0.00582875,0.061402746,0.009782715,-0.014519014,0.007118546,0.035719596,-0.03213918,0.028305031,-0.038426053,-0.019297604,-0.0054552024,0.008767793,-0.04265489,0.017183183,-0.017676547,-0.033717945,-0.01719728,0.019184833,0.028023109,0.016379705,-0.024724614,-0.015646705,0.018451836,0.014998283,-0.006019048,0.030250296,0.0003444742,0.0023840081,-0.0036967103,0.014434438,-0.017324144,0.0066392776,-0.0017849226,-0.014984187,0.0027240773,-0.0012677708,-0.012834527,-0.015421167,-0.015745377,0.0013814208,-0.01996012,-0.003018334,-0.03653717,-0.036706325,0.026937706,0.0073793246,-0.011749125,-0.01584405,0.0015188581,-0.02411848,0.0061071487,-0.01172798,-0.0038200514,0.003467648,-0.046094347,-0.016689818,-0.0386234,-0.022483328,0.013680295,-0.021299254,0.0018941676,0.003138151,-0.02182081,-0.004933646,-0.007534382,0.011601116,-0.023089463,0.027543839,-0.019593623,0.012552604,0.019776871,-0.020213852,0.008105275,-0.030926911,-0.017690644,0.024315825,0.006004952,0.0057864618,0.0012008141,-0.027135052,-0.00020307238,0.015632609,-0.0014193042,-0.0036191815,0.0258664,-0.032195564,0.011283953,-0.009465552,-0.007132642,-0.0055503515,-0.014659976,0.018973392,0.022582002,-0.011234616,0.0012519126,0.015970916,0.0068471953,0.032449294,0.0073793246,0.007879737,-0.0066040372,0.013511142,-0.017845701,-0.0019276459,-0.040371317,0.0035257947,0.025415324,0.009395071,-0.04000482,-0.005204996,-0.0072665554,-0.007414565,0.026839033,0.007893833,0.027106859,-0.009613561,0.032562062,0.02466823,-0.0042535076,0.038905323,0.024513172,-0.013997458,-0.004087878,-0.007950217,0.012961392,0.04147082,0.0043380843,-0.014998283,0.0006770548,0.028445993,0.014413293,0.01588634,0.026077842,0.03766486,0.007907929,0.032308333,-0.03213918,0.0022976694,0.031208834,-0.01424414,-0.020185659,0.012813383,-0.0039751087,0.04750396,0.025091114,0.00194879,0.0104734255,-0.019748678,-0.010247887,0.009634705,0.012468028,-0.004634103,-0.017606067,-0.01559032,0.012390499,0.03800317,0.025598573,0.014504919,-0.008795986,-0.0019998886,-0.009803859,0.010170358,0.0011329765,0.018677372,-0.022469232,-0.006998729,-0.016407896,-0.0034817443,-0.052042916,0.021679848,-0.044064503,-0.009197725,-0.0066181333,-0.009923676,0.04313416,-0.010029397,0.019297604,-0.009973013,-0.01406089,0.018254489,0.002792796,-0.011636356,-0.006061336,-0.0017170849,0.007315892,0.0040491135,-0.002692361,0.0055186353,0.0010501618,-0.0026659307,0.0018959296,-0.02313175,-0.0046940115,0.012143817,-0.02156708,0.023159944,-0.012961392,-0.00499003,0.004521334,-0.02050987,-0.005286049,0.047926843,-0.0072947475,0.012545557,-0.06619543,0.017070414,-0.024160769,-0.028953452,-0.016802588,0.002142612,0.020622639,-0.00826738,-0.018451836,-0.0035363669,0.012735854,0.012228393,0.0033918815,-0.011854846,-0.02729011,-0.021989964,0.04733481,0.017507395,0.023117654,-0.0066251815,0.0001811573,-0.014575399,0.019480852,0.00539177,-0.025048824,0.042683084,-0.00032861604,0.002274763,-0.0061917254,0.0037530947,-0.0258664,0.023850653,0.007654199,0.00259545,-0.014321669,0.009261158,-0.012390499,0.010395897,-0.004842021,0.022779347,-0.0003385274,0.021778522,0.0327876,0.050069455,-0.013165786,0.007231315,-0.022525618,-0.042288393,0.025260266,0.002043939,0.00429932,0.013405421,0.018099433,0.0050957515,-0.025598573,-0.0013955169,0.015632609,-0.004313416,0.0021003236,0.017986663,0.017930279,0.021468407,-0.022074541,-0.024780998,0.028544664,-0.0082462365,-0.013828305,-0.015294302,-0.02604965,-0.013067113,0.028079493,-0.018367259,0.016436089,-0.02929176,-0.017817508,-0.0070515894,-0.026543014,-0.024470882,-0.008936947,0.03927182,0.019650007,-0.006917676,-0.017845701,-0.038567014,-0.0059767594,-0.022582002,0.0012193153,-0.04000482,-0.02619061,-0.009092004,0.03191364,0.018719662,0.023850653,0.017761124,-0.011854846,-0.0073722764,0.0017065129,-0.035353094,-0.022878021,0.004764492,-0.021877196,-0.037693053,-0.008704361,-0.013060065,-0.0025302556,-0.019297604,-0.0018034237,-0.008295573,-0.019847352,0.010572098,-0.016633434,0.020989139,0.0067132823,0.027572032,0.027924435,0.0012395785,-0.0023611018,-0.01919893,-0.021440215,0.021454312,-0.015942724,-0.019551333,0.0011250474,0.03275941,0.02036891,0.0074991416,-0.023695596,-0.012122672,-0.012587844,-0.025344843,-0.013433613,0.028643338,-0.0016607004,0.01770474,0.003108197,0.011093655,-0.0030042378,0.0040385416,-0.0111429915,0.03780582,-0.01839545,-0.017902086,-0.01267947,0.003890532,-0.0338871,-0.023991615,0.00413369,-0.0029390433,0.011072511,-0.023639211,-0.0064560277,-0.04713746,-0.013158738,0.023047173,0.012193153,-0.0075061894,-0.029460913,0.012517364,-0.020650832,-0.002695885,-0.009444407,-0.01122052,-0.017098607,-0.0071643586,0.0038588159,0.0037178544,0.005740649,0.029601874,-0.009007428,0.004729252,-0.0114390105,-0.01012807,0.0006841028,-0.020354813,-0.003774239,0.020129275,0.008281477,0.033097714,-0.013158738,0.017521491,0.009613561,0.006156485,0.0065159365,0.0048138285,-0.011685693,-0.011587019,0.0108751645,0.03676271,-0.016421992,0.00520852,0.021228774,-0.008549304,0.032392908,-0.017972566,-0.016295128,-0.018240394,-0.03306952,-0.022793444,0.012150865,-0.0043521803,0.00039579291,-0.04465654,-0.007647151,0.0026201182,0.009860244,0.022201406,-0.003353117,0.016295128,-0.005617308,-0.012573749,-0.012432788,0.028009012,-0.0049054534,-0.0043768487,-0.0141736595,-0.0041865506,0.013673247,0.0050217467,0.03366156,0.008471775,0.0032139178,0.0036438499,0.011594067,-0.026909513,0.00039799543,-0.00025064682,-0.015266109,0.016281031,-0.010036445,-0.002465061,0.011713885,0.0010307796,0.012256586,-0.01308121,0.012756999,-0.021299254,-0.015646705,0.02699409,-0.029686451,0.045417733,0.009676994,-0.004221791,0.005286049,-0.009613561,-0.002281811,0.009825003,-0.026331572,-0.0073793246,0.01464588,0.03493021,0.0038940562,-0.023399577,-0.0018219249,-0.026359765,-0.007985458,-0.0185787,0.03306952,-0.017535586,0.0022025204,-0.014800937,-0.010987934,-0.027022284,0.033436023,-0.016915357,0.021397926,0.0045671463,-0.01508286,-0.006660422,0.02232827,-0.0115729235,0.025612669,-0.023808366,-0.01093155,0.0050076502,-0.00010472985,-0.007816304,0.0051415637,-0.006907104,0.019325795,-0.005606736,0.02342777,0.021806715,-0.0041618827,-0.003122293,-0.005286049,-0.008189852,0.037552092,-0.016450185,-0.0012113863,0.0034200738,0.011523587,0.02437221,-0.029263567,-0.00885237,-0.019015681,-0.024019808,0.021172388,0.039102666,-0.004961838,-0.002165518,0.0015602654,-0.011544731,0.012926152,-0.008725505,0.024344018,0.005937995,-0.020890465,0.001515334,0.0097756665,0.034056254,0.01795847,0.007640103,-0.026007362,0.03041945,0.0041372143,-0.0004951266,-0.020467581,0.023484154,-0.0033214008,-0.05658187,-0.004965362,-0.02466823,0.020453487,0.005825226,-0.024611844,0.0028262741,-0.023737885,0.03676271,0.0077035353,0.015745377,-0.0053318613,-0.034056254,0.01763426,-0.0010290175,0.006924724,0.0040632095,0.005617308,0.0029284712,-0.010374752,-0.011305097,0.0002513076,0.021031426,-0.023766076,-0.0004409446,-0.015576225,-0.049702957,0.0013461804,-0.020580351,0.0254999,-0.023512347,-0.012890912,-0.0010915691,0.003240348,-0.012284778,0.01846593,0.010205599,0.0028579906,0.004306368,-0.004979458,0.0020404148,0.016365608,-0.012623085,-0.026683975,-0.015787667,-0.008958091,-0.006135341,0.009084957,-0.015970916,0.0016897736,0.019396275,-0.028474184,-0.008464727,-0.00063300435,-0.043557044,-0.009028572,0.011192327,-0.0043662763,0.009761571,0.00095677486,-0.0046904874,0.026881322,0.0026183564,-0.008091179,-0.041583586,0.006678042,0.0048948815,-0.007534382,0.018014856,-0.009014476,-0.014504919,0.012482123,0.007044541,0.027952628,0.009973013,0.0022042824,0.02965826,-0.012616037,-0.0070727337,0.02379427,0.027163245,0.006995205,-0.011530635,-0.040286742,0.017140895,0.012475076,-0.018987488,-0.014659976,0.021806715,0.016520666,0.0065265084,-0.0081969,-0.010388848,0.012369355,0.011699788,-0.0052402364,0.013489997,0.0034729342,0.010480473,0.02929176,-0.009232965,0.014786841,0.0018148768,0.015914531,-0.034112636,-0.03194183,0.013482949,-0.012453931,0.014688169,-0.017042222,0.008337861,0.017817508,-0.024033902,0.011826654,0.0211301,-0.0019346939,-0.0022042824,0.0046622953,-0.03228014,0.010734203,-0.004105498,-0.02736059,-0.0001409613,-0.010663723,-0.020932755,-0.027839858,-0.029404528,0.0043380843,-0.01832497,-0.0050182226,0.021736234,0.008154612,-0.01427938,0.027050475,0.20298429,0.016182357,0.01683078,0.0109033575,0.016252838,0.03129341,0.008337861,0.00429932,-0.008436535,0.0065265084,-0.019607717,-0.007456853,0.012834527,-0.0005748578,0.013764871,-0.0041618827,-0.024936056,-0.027882148,-0.04186551,-0.015280206,0.02538713,0.011255761,0.00903562,-0.008457678,0.036960054,-0.0014889038,-0.0013532286,0.008464727,0.017507395,-0.013948121,-0.006558225,0.0060754325,0.0047363,0.0020721313,-0.0044860938,0.0033090666,-0.012728806,-0.007238363,0.018184008,0.00921887,0.022271886,-0.027586129,0.0185787,-0.014222996,-0.0041372143,0.00041099032,-0.005941519,0.0078022084,-0.0037178544,0.014547207,0.0017990187,-0.009987108,0.041358046,-0.0030518123,-0.015562128,-0.0068366234,0.00841539,0.013038921,-0.002146136,0.01726776,-0.017211376,0.017902086,-0.016055493,0.00940212,0.0006083361,0.0006263968,-0.0014184231,-0.0046728672,-0.007985458,-0.013349036,0.0069493926,-0.011079559,-0.0051274677,0.008781889,-0.024174863,-0.008077083,0.017577875,0.02299079,0.018564604,0.02043939,-0.011890086,-0.014314621,0.0005272834,-0.012214297,-0.02575363,-0.0053988183,-0.0051274677,0.006170581,-0.02266658,0.0075907665,0.00010329821,-0.013215123,-0.01595682,-0.014032698,-0.003139913,0.032251947,0.008838274,0.003354879,-0.005620832,-0.03727017,-0.011819606,0.051225338,0.004531906,-0.0109808855,-0.032223754,-0.010078734,0.020862274,0.023470057,0.00626573,-0.043979928,0.011897135,-0.014998283,-0.0031716295,-0.003254444,0.004859641,-0.007766968,0.01399041,-0.013412468,-0.019057969,-0.0017144419,0.04950561,-0.029038029,0.005286049,0.01362391,0.006494792,-0.013010729,-0.02237056,-0.019368084,-0.015266109,-0.035635017,0.034112636,-0.027966723,0.0010404707,-0.021919483,-0.015576225,0.007914977,0.007626007,-0.010050541,-0.006343259,-0.015012379,0.018296778,0.0029284712,0.0053530056,0.016732108,0.021693945,-0.016196454,-0.016999934,0.008711409,0.006801383,-0.019494949,0.014230044,-0.020101082,0.016224647,-0.010649627,0.02765661,-0.011100703,-0.013482949,-0.017606067,0.0020316048,0.03154714,-0.017859798,0.015717186,0.01133329,-0.021214677,-0.015463456,-0.014702264,-0.17941555,0.012721758,0.04547412,-0.026909513,0.023695596,0.0056631207,0.021834906,0.009395071,-0.007689439,-0.01464588,0.009719282,0.000053493713,-0.029517299,-0.0022835732,-0.00710445,-0.0030976248,-0.010769444,0.017084511,0.0126724215,0.010755348,0.0035205088,0.01731005,-0.0154352635,-0.012848623,0.005807606,0.0287843,-0.0046904874,-0.00018952688,-0.015308398,-0.020199755,0.02349825,-0.026881322,0.019988313,0.000647541,-0.0118689425,0.008182804,0.0041689305,-0.0013611576,-0.010261984,0.02765661,0.021975867,0.007217219,0.010409992,0.02469642,0.020890465,0.046207115,0.017183183,-0.013031873,-0.0029883797,-0.0023011933,0.021186484,-0.0104452325,0.012552604,-0.019833256,-0.003760143,0.024893766,0.012023999,0.0024192485,-0.029122606,-0.012439836,0.0050252704,-0.033097714,0.007115022,0.010487521,-0.02954549,0.0035363669,-0.0022007583,0.02612013,-0.0028386083,-0.005694837,0.0026395004,0.02917899,-0.017577875,0.01850822,0.017606067,0.012630133,-0.027825762,-0.004313416,-0.004323988,0.016295128,-0.016703915,0.036114287,-0.020354813,0.03366156,0.005300145,0.006170581,0.0026095463,0.0030711945,-0.0034764581,-0.015040572,0.033717945,-0.016689818,-0.010480473,-0.004961838,0.0146035915,0.0029337571,0.020819984,0.0010343036,0.0080066025,0.02025614,-0.017789317,-0.02266658,-0.018240394,0.031631716,-0.0058886586,-0.017239569,0.0024632988,0.007044541,0.03791859,-0.009338686,-0.0067449985,0.01763426,-0.008471775,0.03741113,0.001504762,0.016802588,-0.008979235,0.025950978,-0.008499967,0.010910405,0.036255248,-0.029263567,0.020848177,-0.029742835,0.021454312,0.008457678,-0.11457335,-0.026218804,0.039976627,-0.0012457456,-0.015900435,0.0050111744,-0.008803033,0.020749504,-0.0280513,0.02120058,-0.013292652,-0.02469642,0.005423486,-0.0014545445,0.009754523,0.0053565297,-0.020918658,0.00409845,-0.002924947,0.023230424,0.01646428,-0.019593623,0.013645055,0.0042711277,-0.013926977,0.0039328206,-0.018776046,0.010755348,0.010001205,0.006783763,-0.011298049,-0.030560412,0.0037213785,0.0024386307,-0.020016506,-0.037382938,-0.040906973,-0.0051098475,-0.012686518,-0.019974217,0.001718847,-0.005279001,0.016858973,-0.020580351,0.015985012,-0.023653308,-0.014617688,0.03366156,0.022962596,0.012587844,-0.0002361102,-0.006988157,-0.014046795,-0.024865575,0.006244586,0.020679023,0.017295953,-0.017549682,0.0018677373,-0.00093122566,-0.029066222,-0.0038270995,-0.01078354,0.023991615,0.041217085,-0.00038984613,-0.0013884689,-0.020171562,-0.0031363892,-0.0106073385,-0.021947676,0.023244519,-0.022638386,0.023836557,-0.008922851,0.006022572,-0.008760746,-0.017098607,0.027106859,-0.011678644,-0.014998283,-0.023089463,-0.014448534,-0.03989205,0.016238743,0.032054603,0.0027364113,-0.015731283,0.008218044,-0.025147498,-0.0010501618,0.0003990967,0.022130925,-0.012637181,-0.0039152005,-0.014222996,-0.0026465484,-0.010142166,0.016619338,0.015942724,-0.020523967,0.007886785,-0.053537104,0.017718837,-0.008725505,0.0015805287,-0.0011514777,0.015872244,0.035945132,0.002687075,-0.0068225274,0.0070974017,-0.038567014,0.021003235,-0.044431005,-0.017930279,-0.009521936,0.0040350175,0.007675343,0.004094926,-0.004211219,0.011544731,-0.024400402,-0.03760848,0.0027311253,0.0040808297,-0.017648356,0.012341162,-0.00888761,0.022060445,-0.023413673,-0.003245634,0.004979458,-0.00710445,-0.009282302,0.043444276,-0.0053071934,-0.028586954,0.007181979,0.0020104607,0.026824936,0.0018941676,-0.011995807,-0.029996566,0.0086761685,-0.01843774,-0.010536858,0.02244104,-0.011037271,0.013060065,-0.0122424895,-0.015576225,0.022511521,0.02538713,-0.00928935,-0.0037530947,0.026331572,-0.02244104,0.0016545333,-0.0037284265,0.0045882906,-0.00994482,0.03267483,0.008203948,0.025217978,0.0061987736,0.0064207874,-0.0022976694,-0.0099095795,0.0051027993,0.013109402,-0.0214966,0.0011602878,-0.0072524594,0.00032773503,0.031518947,0.024865575,-0.0077881124,0.008203948,0.01311645,0.011897135,0.00033632488,0.03555044,0.0029619494,-0.01993193,0.00962061,0.04460016,0.011354433,-0.017422818,0.008732553,-0.00027883908,0.016703915,0.009366879,-0.005515111,-0.01399041,-0.020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment