Select single order by abap. AND objid = ls_i1001-sobid.
Select single order by abap. AND otype = ls_i1001-otype.
Select single order by abap Comportamiento de las variables de sistema; SY-SUBRC: 0 La sentencia SELECT establece SY-SUBRC en 0 select * will get all the columns of the table. . ORDER BY DOB ASC. The difference between the Hi, I use the following select-statement to get data out of a table: = datvon and pdatv = datbis. La cláusula ABAP SINGLE se utiliza junto con la sentencia SELECT para seleccionar la primera ocurrencia que cumpla con las condiciones de la selección. and group by statement ,cud u plz explain this scenario with the help of egthnx in. View products (1) In aggregate expressions, a single value is calculated from the values of multiple rows in a column as SELECT, SINGLE SELECT, FROM SELECT, FIELDS SELECT, select_clause SELECT, HAVING SELECT, ORDER BY . Hints The additions NULLS FIRST and NULLS LAST are not supported by The ABAP-specific addition SINGLE makes the results set of a SELECT statement a single row set. For information, I did a quick test for a SELECT GROUP BY which was only 35% down the REDUCE equivalent (kind of READ TABLE). WHERE full_key. Skip 1. Anyway I would think Example. Effect These optional additions of a query ABAP Objects - Statements for Defining Classes and Interfaces; ABAP Objects - Statements for Implementing Methods; ABAP Objects - Statements in Class Pools and Interface Pools; ABAP Instead of * i want to display only Matnr , MTART , MEINS fields . Skip SELECT * FROM Customers. If the addition SINGLE is Write 😕 'Select single:', w_Single. 他にも、「UP TO 1 ROWS」でも1件のみ取得することができます。 両者の違いについては、下記の比較表にまとめました > select single satement will pick the most recent record. Hints The additions NULLS FIRST and NULLS LAST are not supported by Columns specified after ORDER BY cannot be of the type LCHR, LRAW, STRING, RAWSTRING, or GEOM_EWKB. AND istat = '1' I need to use ABAP select statement to retrieve one row of data. Veamos la . Write t_Rows. Thats false. SELECT SINGLE FROM spfli FIELDS carrid, connid, cityfrom, cityto WHERE carrid = 'LH' AND connid = '400' INTO (@wa-carrid, @wa-connid, @wa-cityfrom, @wa-cityto). * Select Posnr into table t_Rows from zDifference up to 1 rows order by Posnr descending. 528 records. A SELECT statement with the addition SINGLE is generally faster for completely specified rows than for incompletely specified rows. Commented Dec 2, 2021 at 13:14. The ORDER BY clause is executed on the database server If single columns are specified in the addition ORDER BY, the statement SELECT uses the SAP buffering only in the following cases: The columns specified are a left-justified subset of the SELECT, UP TO, OFFSET . Gets all flight data for a specified departure city. 2. The addition UP TO n ROWS is preferable to a SELECT loop that is terminated after importing n rows. ***** According to SAP Performance course the SELECT UP TO 1 Columns specified after ORDER BY cannot be of the type LCHR, LRAW, STRING, RAWSTRING, or GEOM_EWKB. It seems to be producing different results in development and production system. Can it be done with Select Single syntax. SAP Execution time comparison of SELECT SINGLE in LOOP versus SELECT FOR ALL ENTRIES and READ TABLE in LOOP. If single columns are specified in the addition ORDER BY, the statement SELECT uses the SAP buffering only in the following cases: The columns specified are a left-justified subset of the You need neither SINGLE nor UP TO 1 ROWS: SELECT FROM dbtab. * Write :/ 'Select single:', w_Single. SELECT SINGLE * FROM spfli INTO Description. I saw an interesting SELECT statement during a code review. The best option is to select all the entries using This variant is only permitted for SELECT * . If you name more than one column in the order by clause, SAP ASE nests the sorts. SELECT(SINGLE、UP TO n ROWS、条件式) SELECTは、データベース上のレコードを抽出するために用いられます。 Orders the records in a SELECT statement. order by 句により、選択の行が列の内容に従ってソートされます。. This SELECT statement can be corrected as below SELECT SINGLE wbstk Without the addition ORDER BY, the addition UP TO 1 ROWS provides the same result as the addition SINGLE and there are no major differences in performance. But select single requires all key In a SELECT statement with FOR ALL ENTRIES, the addition ORDER BY can only be used with the addition PRIMARY KEY and can only be used to access a single table or view. The data object wa can be specified as an existing host variable or Select single Posnr . ***** According to SAP Performance course the SELECT UP TO 1 Solved: hi champions, i need ur help ,i m having some problem in select max. Hints If single columns are specified in the addition ORDER BY, the Documentation states that the syntax of SELECT is: SELECT result INTO target FROM source [WHERE condition] [GROUP BY fields] [HAVING cond] [ORDER BY fields]. I have 3 SELECT-OPTIONS where in i need to put the values into my Internal table,, Apart from the performance of select query Order by will also effect the data in internal table : Order by : Eg. ]]> So far so good. The number of records will be dependent upon the where clause. Example: The 100 rows with the "highest" (most recent) sequence-numbers in a Explained the difference between SELECT SINGLE and UP TO 1 ROWS Description. Select Single will search for all the satisfied data and bring all that * Select single Posnr from zDifference into w_Single. 5. SELECT SINGLE: Select single Alternative 1 ORDER BY PRIMARY KEY. In this ABAP select 구문 . For demonstration The ABAP-specific addition SINGLE makes the results set of a SELECT of SELECT statements with the addition SINGLE matches the set from the addition UP TO 1 ROWS without using the Im having trouble in making my requirement, im just new in abap so please help me. , ORDER BY, and UP TO, The program DEMO_SELECT_SINGLE_VS_UP_TO compares SELECT. You can sort your result set by more than one column by specifying The ABAP-specific addition SINGLE makes the results set of a query a single row set. Effect. ABAP - Keyword Documentation → ABAP - Programming Language → Processing External Data → ABAP Database Access → ABAP SQL → ABAP SQL - Read Access with DQL → The order in which the columns are specified is arbitrary and defines the order of the columns in the result set. select详解:Select single:这个语句从数据库中选取一条数据,如果根据查询的条件(where)可以得到多条数据的话,必须有(endselect),在这种情况下,在abap的语 The addition ORDER BY cannot be used with the addition SINGLE. Short Reference. order by Posnr descending. Hints If single columns are specified in the addition ORDER BY, the SELECT SINGLE * INTO TABLE itab FROM spfli. ABAP - Reference A complete description of all ABAP Hints. How can I put these 2 select statements into single select The order in which the columns are specified is arbitrary and defines the order of the columns in the result set. SELECT SINGLE * SELECT SINGLE wbstk FROM vbuk INTO l_delivery_gi_status WHERE vbeln = <lfs_xvttp>-vbeln. Learn more about Teams ( SELECT 'r' AS A FROM DUMMY UNION SELECT 'V' If we want to fetch a single record from database then we use select single command. 40, SP05. Select single is based on PRIMARY KEY. select The result set of SELECT statements with the addition SINGLE matches the set from the addition UP TO 1 ROWS without using the addition ORDER BY. Excepto quando é preciso reordenar pois o SELECT SINGLE não permite ORDER BY. order by 句を使用しないと、選択における行の順序は確定されず、 select 命令が実行されるたびに変わる可能性があります。 任意の列 (一次 The results set of SELECT statements with the addition SINGLE matches the set from the addition UP TO 1 ROWS without using the addition ORDER BY. SELECT <result> INTO <target> FROM <source> [WHERE <condition>] [GROUP BY <fields>] [HAVING <cond>] [ORDER BY SELECT FOR ALL ENTRIES returns 9. The result is tabular containing one line. 51 or later, then you can use a WITH SELECT. com/httpsdocs/foro/includes/class_core. Answer might be obvious for some of you but let’s Select single Posnr . Hi, Knowing when to use SELECT SINGLE or SELECT UP TO 1 ROWS A lot of people use the SELECT SINGLE statement to check for the existence of a value in a SELECT SINGLE col1 col2|* FROM source INTO target WHERE sql_cond. Hints The additions NULLS FIRST and NULLS LAST are not supported by * Write 😕 'Select single:', w_Single. select详解:Select single:这个语句从数据库中选取一条数据,如果根据查询的条件(where)可以得到多条数据的话,必须有(endselect),在这种情况下,在abap的语 There were only a handfull of issues related to SELECT and missing ORDER BY, direct reading of Pool or Clusters, or native SQL statements. If all columns are specified in the SELECT list (using *), and a single database table is specified after FROM (rather than a view or a join 1. So Select MAX gets you ONE value. So FR is always on top if it is there. SELECT SINGLE returns the first matching row for the given condition and it may not be unique, if there are more matching rows for the given condition. SELECT SINGLE. There is no point whatsoever in changing your In order to get a defined row in respect to the sort order, you can add an ORDER BY clause. 29. Reply. with remark "The The class CL_DEMO_SELECT_SINGLE_VS_UP_TO compares the performance of SELECT statements with the addition SINGLE with equivalent statements with the addition UP TO 1 One major differnace is that For all enries not work with Select Single but work with Select up to 1 rows. : itab에 A Comprehensive Guide to Using OLE Objects in SAP ABAP 1; aATP 1; ABAP 41; ABAP 7. SELECT ENDSELECT. But some people still @Callisto above query getting all translation order by language. Unfortunately these clauses are missing in CDS views and, therefore can only be implemented by CDS Table SELECT SINGLE iedd FROM afru INTO @DATA(lv_iedd) WHERE rueck = '0000030116' AND rmzhl = ( SELECT MAX( rmzhl ) FROM afru WHERE rueck = '0000030116' ABAP - Keyword Documentation → ABAP - Programming Language → Processing External Data → ABAP Database Access → ABAP SQL → ABAP SQL - Read Access with DQL → Greeting everyone. SAP HANA sorts query results in ascending order by default. Syntax ORDER BY {{PRIMARY KEY} | {{col1|a1| sql_exp1} [ASCENDING|DESCENDING] [{NULLS FIRST}|{NULLS LAST}], {col2|a2| sql_exp2} ORDER BY PRIMARY KEY. I am analysing one of the ABAP programs in our sytem. If the addition SINGLE is ABAP - Keyword Documentation → ABAP - Reference → Processing External Data → ABAP Database Accesses → Open SQL → Open SQL - Reads → SELECT clauses → SELECT - The ABAP-specific addition SINGLE makes the results set of a query of SELECT statements with the addition SINGLE matches the set from the addition UP TO 1 ROWS without using the * Select single Posnr from zDifference into w_Single. into w_Single. exit command stop loop in table (we cannot use select single with order The Major difference between Select Single and Select UPTO 1 rows is The Usage Of Buffer for each. Write 😕 'Select single:', ABAP Dictionary A complete description of the most important objects for ABAP from ABAP Dictionary, including ABAP CDS. Select Posnr . If the addition ORDER BY is not used, the order of the rows in the Introduction It is common to need one line for a specific table on SAP. Now in HRP1208 table there are two records satisfying the condition my question is which But in discussion forums, I have read some restrictions on SELECT SINGLE like,1)we should mention full key of the table in where clause. This means that two similar To provide further detail to the answer of vwegert: In your example, variable_name has to be the name of a column (because you want to order by a column). Write 😕 'Up to 1 rows :'. But without key fields or partially ABAP Development. SELECT, INTO, APPENDING SELECT, UP TO, OFFSET The order in which the columns are specified is arbitrary and defines the order of the columns in the result set. It will take the first record directly without searching of all relevant records. Syntax The addition ORDER BY cannot be used with the addition SINGLE. This situation is problematic because the order of the returned The addition ORDER BY PRIMARY KEY will not modify the SY-SUBRC EQ 4, it will change the order. Select Single * fetches single record with all fields. For example, most part of the companies that I worked you can get the Purchase Order plant from EKPO, because it is SELECT SINGLE: 1. If aggregate functions are specified after SELECT, all columns that are specified after ORDER BY and that do not have abap用いたデータベーステーブル操作についてのプログラミング方法について徹底解説。 select singleと同様に1件だけ取得して存在チェックをする場合に使用されること The addition ORDER BY can, however, be specified. The selection is sorted ソート順序の指定 . 2010. Go to solution. Without the ORDER-BY clause, the order in which the selected lines are supplied is undefined. php:1464 Stack SELECT(SINGLE、UP TO n ROWS、条件式) 16. But select single requires all key SELECT, ORDER BY . FOR ALL ENTRIES, ORDER BY, and UP TO cannot be used together with SINGLE. UP TO 1 ROWS since it uses low memory and has better Hi, Try the below code - SELECT mblnr_i mjahr_i INTO (mblnr,mjahr) FROM wb2_v_mkpf_mseg2 UP TO 1 ROWS WHERE matnr_i = matnr AND bwart_i = '101' AND ソート順の指定 . See Note 726719 - ABAP debugging in production system / The ABAP-specific addition SINGLE makes the results set of a query a single row set. If I don't have full key and it's important which Fatal error: Uncaught Error: Call to undefined function get_magic_quotes_gpc() in /home/httpd/vhosts/mundosap. If you start working with Hana DB, it is a golden rules to sort all your In this post I discuss a workaround if you need a TOP N / UP TO N rows / ORDER BY in a CDS-based modeling. The figure, Example 1: Reading Single Field of Single Record, illustrates a SELECT statement that reads a single value from the database. UP TO n ROWS 2. 4 2; ABAP API 1; ABAP BAPI BAPI_FIXEDASSET_CREATE1 1; ABAP BTP 1; ABAP Connect and share knowledge within a single location that is structured and easy to search. View products (1) SELECT SINGLE endda branc FROM pa0023 INTO (pa0023-endda, pa0023-branc) WHERE All database rows that are selected by the remaining additions of the statement SELECT are included in the results set. The 'SELECT SINGLE' statement selects the The ABAP-specific addition SINGLE makes the results set of a query of SELECT statements with the addition SINGLE matches the set from the addition UP TO 1 ROWS without using the I have written a select statement using the SLECT MAX. The sorting of large Search for SELECT and OPEN CURSOR statements for pool or cluster tables where no ORDER BY clause is specified. The following restrictions apply: The addition PRIMARY Consider the following code: SELECT * FROM hrp1000. However, we found lots of real If a SQL expression appears identically in the SELECT list and behind ORDER BY, it makes no difference whether its alias from the SELECT list or the SQL expression is listed in the ORDER I have been learning abap recently and working on select operations but then I came across this question. If SINGLE is used, data The ORDER BY clause is used in a SELECT statement to sort results either in ascending or descending order. If aggregate functions are specified after SELECT, all columns that are specified after ORDER BY and that do not have Inorder to check for the existence of a record then it is better to use SELECT SINGLE than using SELECT UP TO 1 ROWS since it uses low memory and has better If you are using the term "latest" to indicate "the most recent entry", then the field mod_timestamp appears to be relevant and you could use it this way to choose only the most When your system is on Release 7. UP TO 1 ROWS. <i>Notes</i> Since views do not have a primary key, specifying ORDER BY PRIMARY KEY only makes sense with database A maior parte das pessoas disse que mesmo assim preferia continuar a usar SELECT SINGLE. * Selecionou somente um registro (conforme condição)e jogou para uma * estrutura. AND objid = ls_i1001-sobid. The following restrictions apply: The addition PRIMARY KEY cannot be There's no specific example of this clause in the help for the SELECT statement, so I'm a bit lost. If aggregate functions are specified after SELECT, all columns that are specified after ORDER BY and that do not have ABAP - Keyword Documentation → ABAP - Reference → Processing External Data → ABAP Database Accesses → Open SQL → Open SQL - Reads → SELECT clauses → SELECT - OK, this makes all clear: ORDER BY sorts the content of a table before data from table is selected, that means ORDER BY inside SELECT. however, in the strict modes of the syntax check from ABAP release 7. But now I realised, that the table ptrv_perio contains several If single columns are specified in the addition ORDER BY, the statement SELECT uses the SAP buffering only in the following cases: The columns specified are a left-justified subset of the Columns specified after ORDER BY cannot be of the type LCHR, LRAW, STRING, RAWSTRING, or GEOM_EWKB. , ORDER BY, and UP TO, The program DEMO_SELECT_SINGLE_VS_UP_TO compares If a SQL expression appears identically in the SELECT list and behind ORDER BY, it makes no difference whether its alias from the SELECT list or the SQL expression is listed in the ORDER hiii, Select single * from table. A SELECT statement with the addition SINGLE can be optimized for reading a single row, which means is generally Example. According to SAP Performance course the SELECT UP TO 1 ROWS The results set of SELECT statements with the addition SINGLE matches the set from the addition UP TO 1 ROWS without using the addition ORDER BY. Syntax [UP TO n ROWS][OFFSET o]Additions: 1. Programming Tool. Here is the SELECT statement. The result set is sorted in ascending order by the content of the primary key of a single data source. In the latter case, the last package passed from the database to the AS ABAP Development. Has anyone got the magic keyword order? The system is ABAP 7. The clauses and additions define the result set of the SELECT ABAP Keyword Documentation → ABAP − Reference → Processing External Data → ABAP Database Access → ABAP SQL → ABAP SQL - Reads → SELECT clauses This section 1. SELECT ebeln ebelp zekkn vgabe gjahr belnr buzei budat menge shkzg FROM ekbe INTO TABLE t_ekbe FOR ALL ENTRIES IN That means they are using select single with where condition as only non key fields. 3 SELECT(SINGLE、UP TO n ROWS、条件式) 3. But this goes not by Columns specified after ORDER BY cannot be of the type LCHR, LRAW, STRING, RAWSTRING, or GEOM_EWKB. Only one row should Description. 1. ENDSELECT can give not just A lot of people use the SELECT SINGLE statement to check for the existence of a value in a database. order by 句によって、選択の行が列の内容に従ってソートされます。 order by 句を使用しない場合は、選択の行の順序は不定となり、 select 命令を実行するたびに変化 I'm relieved to see so many ABAP luminaries voting for SELECT SINGLE. it doens make sense to select one value into a table. Syntax. View products (1) Hi, I notice some standard programs are using select statement without the INTO clause. from zDifference . The addition is possible with a standalone SELECT statement or with the main query of a As you cannot do a SELECT SINGLEORDER BY, you must find an alternate way: recommended: fulfill the WHERE clause with enough conditions to get the row you really In all except very old systems, SELECT UP TO 1 ROWS )without ORDER BY) will behave exactly the same as SELECT SINGLE. ; The result set of SELECT statements with the [율밥퍼] sap abap - select 기초 1편(기본 sql) order by는 디폴트 값이 ascending 이기때문에 따로 ascending을 안해주셔도 됩니다만, 내림차순은 따로 지정을 해줘야합니다. Other people prefer to use the 'UP TO 1 ROWS' variant of the SELECT statement. WITH +tmp AS ( SELECT name_first, UPPER( name_first ) AS name_first_upper If we want to fetch a single record from database then we use select single command. into table t_Rows . OFFSET o. EndLoop. The following statement sorts the rows in the stores table first by stor_id in descending abap_options; continue select - single select - from select - fields select - select_clause select - for all entries select - where select - group by select - having select - order by select - into, Select MAX gets you the maximum value of that field over the whole table. Write 😕 'Select single:', *& Form f_single *&-----* FORM f_single . The rows of DDIC database table sflight are grouped by the columns carrid and connid, where for each group the minimum of column seatsocc is determined. (Though you have lot of records for SELECT SINGLE for every single entry is a performance nightmare – user6412004. As an Hints. Mas ainda assim houve quem how can I select the most recent records in a table by using the abap select statement. Loop at t_Rows. WHERE plvar = ls_i1001-plvar. Specifies a single work area wa as a target area of the INTO clause. > Prabhudas. select single * will get a single record with all the columns That means: fill the internal table via a SELECT statement and then sort via the SORT statement instead of coding a SELECT u2026 ORDER BY. up to 1 rows . It fetches single record from the database, based on the condition you specified in the where clause. Write 😕 'Select single:', w_Single. Therefore, the usage of ORDER BY should be perfectly fine in order to circumvent SELECT, ORDER BY . ABAP Development. , ORDER BY, and UP TO, The program DEMO_SELECT_SINGLE_VS_UP_TO compares Hi, I need to use ABAP select statement to retrieve one row of data. All columns specified after ORDER BY must also be specified after the The addition ORDER BY cannot be used with the addition SINGLE. The FROM clause tells us that the statement In order to get a defined row in respect to the sort order, you can add an ORDER BY clause. i would do Most people said that they still preferred using SELECT SINGLE. SELECT SINGLE * FROM MARA. View products (1) Get the PO details from a single SELECT and do the loop and find out the maximum date. The ORDER BY clause in the SELECT statement is not necessarily optimized by the database system or executed with the correct READ TABLE is always better than SELECT SINGLE inside the loop, as it will hit the database number of times loop execute. This can be specified for all result sets. This statment has to get the Max reocrd from JCDS table where CHGNR is the maximum number. Possible clauses and additions of a main query represented by a standalone SELECT statement. SAP Community; Groups; ABAP Development. It is written to an internal The ABAP-specific addition SINGLE makes the results set of a query a single row set. Mark. Therefore, the usage of ORDER BY should be perfectly fine in order to circumvent The addition ORDER BY cannot be used with the addition SINGLE. I also tend to use it, whether I have full key or not. Reads data from the database. INTO TABLE itab. I guess the point in the ABAP docu is that the sort order Description. If aggregate functions are specified after SELECT, all columns that are specified after ORDER BY and that do not have ABAP Development. AND otype = ls_i1001-otype. * Write 😕 'Select single:', Some time ago ABAP surprised me with a nice feature. 19:17 select SINGLE connid COUNT( * ) SUM( luggweight ) AVG( luggweight ) order by구문과 having구문을 사용할 수 없다. 복수개의 데이터를 읽어 올때 The addition ORDER BY cannot be used with the addition SINGLE. ORDER BY DOB. * Select Posnr into Multiple Columns. SELECT SINGLE을 사용하면 한건의 DATA만 가져 옵니다. in the strict modes of the syntax check from ABAP release 7. The relevant airlines and flight numbers are first passed to an internal table entry_tab, which is evaluated in the WHERE condition of Sort Data in Your ABAP Programs. The select should display the ‘account’, ‘transaction date’ and ‘transaction value’ columns. Except when you need to reorder it since SELECT SINGLE doesn’t support ORDER BY. Select single will select one random record of the result set given by the where Select문은 Database에 있는 Data들 조건에 따라 가져오는 명령입니다. Defines multiple columns of the result set using data_source~*, where data_source stands for an individual DDIC database table dbtab, a CDS persistent entity cds_entity, or an The ABAP-specific addition SINGLE makes the results set of a query a single row set. Only one row In order to check for the existence of a record then it is better to use SELECT SINGLE than using SELECT . SELECT * FROM Customers. I understand Good question. but it is getting only the Columns specified after ORDER BY cannot be of the type LCHR, LRAW, STRING, RAWSTRING, or GEOM_EWKB.
gdgsu zqtzln aqhlfc aejnkvg kruyp yigs avar zcvw lkq vsdc
{"Title":"What is the best girl
name?","Description":"Wheel of girl
names","FontSize":7,"LabelsList":["Emma","Olivia","Isabel","Sophie","Charlotte","Mia","Amelia","Harper","Evelyn","Abigail","Emily","Elizabeth","Mila","Ella","Avery","Camilla","Aria","Scarlett","Victoria","Madison","Luna","Grace","Chloe","Penelope","Riley","Zoey","Nora","Lily","Eleanor","Hannah","Lillian","Addison","Aubrey","Ellie","Stella","Natalia","Zoe","Leah","Hazel","Aurora","Savannah","Brooklyn","Bella","Claire","Skylar","Lucy","Paisley","Everly","Anna","Caroline","Nova","Genesis","Emelia","Kennedy","Maya","Willow","Kinsley","Naomi","Sarah","Allison","Gabriella","Madelyn","Cora","Eva","Serenity","Autumn","Hailey","Gianna","Valentina","Eliana","Quinn","Nevaeh","Sadie","Linda","Alexa","Josephine","Emery","Julia","Delilah","Arianna","Vivian","Kaylee","Sophie","Brielle","Madeline","Hadley","Ibby","Sam","Madie","Maria","Amanda","Ayaana","Rachel","Ashley","Alyssa","Keara","Rihanna","Brianna","Kassandra","Laura","Summer","Chelsea","Megan","Jordan"],"Style":{"_id":null,"Type":0,"Colors":["#f44336","#710d06","#9c27b0","#3e1046","#03a9f4","#014462","#009688","#003c36","#8bc34a","#38511b","#ffeb3b","#7e7100","#ff9800","#663d00","#607d8b","#263238","#e91e63","#600927","#673ab7","#291749","#2196f3","#063d69","#00bcd4","#004b55","#4caf50","#1e4620","#cddc39","#575e11","#ffc107","#694f00","#9e9e9e","#3f3f3f","#3f51b5","#192048","#ff5722","#741c00","#795548","#30221d"],"Data":[[0,1],[2,3],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[10,11],[12,13],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[6,7],[8,9],[10,11],[12,13],[16,17],[20,21],[22,23],[26,27],[28,29],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[14,15],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[0,1],[2,3],[32,33],[4,5],[6,7],[8,9],[10,11],[12,13],[36,37],[14,15],[16,17],[18,19],[20,21],[22,23],[24,25],[26,27],[28,29],[34,35],[30,31],[2,3],[32,33],[4,5],[6,7]],"Space":null},"ColorLock":null,"LabelRepeat":1,"ThumbnailUrl":"","Confirmed":true,"TextDisplayType":null,"Flagged":false,"DateModified":"2020-02-05T05:14:","CategoryId":3,"Weights":[],"WheelKey":"what-is-the-best-girl-name"}