h1
stringclasses
12 values
h2
stringclasses
93 values
h3
stringlengths
0
64
h5
stringlengths
0
79
content
stringlengths
24
533k
tokens
int64
7
158k
content_embeddings_openai_text_embedding_3_small_512
sequencelengths
512
512
content_embeddings_potion_base_8M_256
sequencelengths
256
256
SQL
Query Syntax
Syntax
There are three syntaxes for denoting parameters in prepared statements: auto-incremented (` ?`), positional (` $1`), and named (` $param`). Note that not all clients support all of these syntaxes, e.g., the [JDBC client](#docs:api:java) only supports auto-incremented parameters in prepared statements. #### Example Data Set {#docs:sql:query_syntax:prepared_statements::example-data-set} In the following, we introduce the three different syntaxes and illustrate them with examples using the following table. ```sql CREATE TABLE person (name VARCHAR, age BIGINT); INSERT INTO person VALUES ('Alice', 37), ('Ana', 35), ('Bob', 41), ('Bea', 25); ``` In our example query, we'll look for people whose name starts with a `B` and are at least 40 years old. This will return a single row `<'Bob', 41>`. #### Auto-Incremented Parameters: `?` {#docs:sql:query_syntax:prepared_statements::auto-incremented-parameters-} DuckDB support using prepared statements with auto-incremented indexing, i.e., the position of the parameters in the query corresponds to their position in the execution statement. For example: ```sql PREPARE query_person AS SELECT * FROM person WHERE starts_with(name, ?) AND age >= ?; ``` Using the CLI client, the statement is executed as follows. ```sql EXECUTE query_person('B', 40); ``` #### Positional Parameters: `$1` {#docs:sql:query_syntax:prepared_statements::positional-parameters-1} Prepared statements can use positional parameters, where parameters are denoted with an integer (` $1`, `$2`). For example: ```sql PREPARE query_person AS SELECT * FROM person WHERE starts_with(name, $2) AND age >= $1; ``` Using the CLI client, the statement is executed as follows. Note that the first parameter corresponds to `$1`, the second to `$2`, and so on. ```sql EXECUTE query_person(40, 'B'); ``` #### Named Parameters: `$parameter` {#docs:sql:query_syntax:prepared_statements::named-parameters-parameter} DuckDB also supports names parameters where parameters are denoted with `$parameter_name`. For example: ```sql PREPARE query_person AS SELECT * FROM person WHERE starts_with(name, $name_start_letter) AND age >= $minimum_age; ``` Using the CLI client, the statement is executed as follows. ```sql EXECUTE query_person(name_start_letter := 'B', minimum_age := 40); ```
582
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Query Syntax
Dropping Prepared Statements: `DEALLOCATE`
To drop a prepared statement, use the `DEALLOCATE` statement: ```sql DEALLOCATE query_person; ``` Alternatively, use: ```sql DEALLOCATE PREPARE query_person; ```
45
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
General-Purpose Data Types
The table below shows all the built-in general-purpose data types. The alternatives listed in the aliases column can be used to refer to these types as well, however, note that the aliases are not part of the SQL standard and hence might not be accepted by other database engines. | Name | Aliases | Description | |:--|:--|:----| | `BIGINT` | `INT8`, `LONG` | signed eight-byte integer | | `BIT` | `BITSTRING` | string of 1s and 0s | | `BLOB` | `BYTEA`, `BINARY,` `VARBINARY` | variable-length binary data | | `BOOLEAN` | `BOOL`, `LOGICAL` | logical Boolean (true/false) | | `DATE` | | calendar date (year, month day) | | `DECIMAL(prec, scale)` | `NUMERIC(prec, scale)` | fixed-precision number with the given width (precision) and scale, defaults to `prec = 18` and `scale = 3` | | `DOUBLE` | `FLOAT8`, | double precision floating-point number (8 bytes) | | `FLOAT` | `FLOAT4`, `REAL` | single precision floating-point number (4 bytes)| | `HUGEINT` | | signed sixteen-byte integer| | `INTEGER` | `INT4`, `INT`, `SIGNED` | signed four-byte integer | | `INTERVAL` | | date / time delta | | `JSON` | | JSON object (via the [`json` extension](#docs:data:json:overview)) | | `SMALLINT` | `INT2`, `SHORT` | signed two-byte integer| | `TIME` | | time of day (no time zone) | | `TIMESTAMP WITH TIME ZONE` | `TIMESTAMPTZ` | combination of time and date that uses the current time zone | | `TIMESTAMP` | `DATETIME` | combination of time and date | | `TINYINT` | `INT1` | signed one-byte integer| | `UBIGINT` | | unsigned eight-byte integer | | `UHUGEINT` | | unsigned sixteen-byte integer | | `UINTEGER` | | unsigned four-byte integer | | `USMALLINT` | | unsigned two-byte integer | | `UTINYINT` | | unsigned one-byte integer | | `UUID` | | UUID data type | | `VARCHAR` | `CHAR`, `BPCHAR`, `TEXT`, `STRING` | variable-length character string | Implicit and explicit typecasting is possible between numerous types, see the [Typecasting](#docs:sql:data_types:typecasting) page for details.
570
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Nested / Composite Types
DuckDB supports five nested data types: `ARRAY`, `LIST`, `MAP`, `STRUCT`, and `UNION`. Each supports different use cases and has a different structure. | Name | Description | Rules when used in a column | Build from values | Define in DDL/CREATE | |:-|:---|:---|:--|:--| | [`ARRAY`](#docs:sql:data_types:array) | An ordered, fixed-length sequence of data values of the same type. | Each row must have the same data type within each instance of the `ARRAY` and the same number of elements. | `[1, 2, 3]` | `INTEGER[3]` | | [`LIST`](#docs:sql:data_types:list) | An ordered sequence of data values of the same type. | Each row must have the same data type within each instance of the `LIST`, but can have any number of elements. | `[1, 2, 3]` | `INTEGER[]` | | [`MAP`](#docs:sql:data_types:map) | A dictionary of multiple named values, each key having the same type and each value having the same type. Keys and values can be any type and can be different types from one another. | Rows may have different keys. | `map([1, 2], ['a', 'b'])` | `MAP(INTEGER, VARCHAR)` | | [`STRUCT`](#docs:sql:data_types:struct) | A dictionary of multiple named values, where each key is a string, but the value can be a different type for each key. | Each row must have the same keys. | `{'i': 42, 'j': 'a'}` | `STRUCT(i INTEGER, j VARCHAR)` | | [`UNION`](#docs:sql:data_types:union) | A union of multiple alternative data types, storing one of them in each value at a time. A union also contains a discriminator “tag” value to inspect and access the currently set member type. | Rows may be set to different member types of the union. | `union_value(num := 2)` | `UNION(num INTEGER, text VARCHAR)` | #### Updating Values of Nested Types {#docs:sql:data_types:overview::updating-values-of-nested-types} When performing _updates_ on values of nested types, DuckDB performs a _delete_ operation followed by an _insert_ operation. When used in a table with ART indexes (either via explicit indexes or primary keys/unique constraints), this can lead to [unexpected constraint violations](#docs:sql:indexes::over-eager-unique-constraint-checking). For example: ```sql CREATE TABLE students (id INTEGER PRIMARY KEY, name VARCHAR); INSERT INTO students VALUES (1, 'Student 1'); UPDATE tbl SET j = [2] WHERE i = 1; ``` ```console Constraint Error: Duplicate key "i: 1" violates primary key constraint. If this is an unexpected constraint violation please double check with the known index limitations section in our documentation (https://duckdb.org/docs/sql/indexes). ```
653
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Nesting
`ARRAY`, `LIST`, `MAP`, `STRUCT`, and `UNION` types can be arbitrarily nested to any depth, so long as the type rules are observed. Struct with `LIST`s: ```sql SELECT {'birds': ['duck', 'goose', 'heron'], 'aliens': NULL, 'amphibians': ['frog', 'toad']}; ``` Struct with list of `MAP`s: ```sql SELECT {'test': [MAP([1, 5], [42.1, 45]), MAP([1, 5], [42.1, 45])]}; ``` A list of `UNION`s: ```sql SELECT [union_value(num := 2), union_value(str := 'ABC')::UNION(str VARCHAR, num INTEGER)]; ```
171
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Performance Implications
The choice of data types can have a strong effect on performance. Please consult the [Performance Guide](#docs:guides:performance:schema) for details.
33
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Array Type
An `ARRAY` column stores fixed-sized arrays. All fields in the column must have the same length and the same underlying type. Arrays are typically used to store arrays of numbers, but can contain any uniform data type, including `ARRAY`, [`LIST`](#docs:sql:data_types:list) and [`STRUCT`](#docs:sql:data_types:struct) types. Arrays can be used to store vectors such as [word embeddings](https://en.wikipedia.org/wiki/Word_embedding) or image embeddings. To store variable-length lists, use the [`LIST` type](#docs:sql:data_types:list). See the [data types overview](#docs:sql:data_types:overview) for a comparison between nested data types. > The `ARRAY` type in PostgreSQL allows variable-length fields. DuckDB's `ARRAY` type is fixed-length.
173
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Creating Arrays
Arrays can be created using the [`array_value(expr, ...)` function](#docs:sql:functions:array::array_valueindex). Construct with the `array_value` function: ```sql SELECT array_value(1, 2, 3); ``` You can always implicitly cast an array to a list (and use list functions, like `list_extract`, `[i]`): ```sql SELECT array_value(1, 2, 3)[2]; ``` You can cast from a list to an array (the dimensions have to match): ```sql SELECT [3, 2, 1]::INTEGER[3]; ``` Arrays can be nested: ```sql SELECT array_value(array_value(1, 2), array_value(3, 4), array_value(5, 6)); ``` Arrays can store structs: ```sql SELECT array_value({'a': 1, 'b': 2}, {'a': 3, 'b': 4}); ```
214
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Defining an Array Field
Arrays can be created using the `⟨TYPE_NAME⟩[⟨LENGTH⟩]` syntax. For example, to create an array field for 3 integers, run: ```sql CREATE TABLE array_table (id INTEGER, arr INTEGER[3]); INSERT INTO array_table VALUES (10, [1, 2, 3]), (20, [4, 5, 6]); ```
83
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Retrieving Values from Arrays
Retrieving one or more values from an array can be accomplished using brackets and slicing notation, or through [list functions](#docs:sql:functions:list::list-functions) like `list_extract` and `array_extract`. Using the example in [Defining an Array Field](#::defining-an-array-field). The following queries for extracting the second element of an array are equivalent: ```sql SELECT id, arr[1] AS element FROM array_table; SELECT id, list_extract(arr, 1) AS element FROM array_table; SELECT id, array_extract(arr, 1) AS element FROM array_table; ``` | id | element | |---:|--------:| | 10 | 1 | | 20 | 4 | Using the slicing notation returns a `LIST`: ```sql SELECT id, arr[1:2] AS elements FROM array_table; ``` | id | elements | |---:|----------| | 10 | [1, 2] | | 20 | [4, 5] |
224
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
All [`LIST` functions](#docs:sql:functions:list) work with the `ARRAY` type. Additionally, several `ARRAY`-native functions are also supported. See the [`ARRAY` functions](#docs:sql:functions:array::array-native-functions).
55
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Examples
Create sample data: ```sql CREATE TABLE x (i INTEGER, v FLOAT[3]); CREATE TABLE y (i INTEGER, v FLOAT[3]); INSERT INTO x VALUES (1, array_value(1.0::FLOAT, 2.0::FLOAT, 3.0::FLOAT)); INSERT INTO y VALUES (1, array_value(2.0::FLOAT, 3.0::FLOAT, 4.0::FLOAT)); ``` Compute cross product: ```sql SELECT array_cross_product(x.v, y.v) FROM x, y WHERE x.i = y.i; ``` Compute cosine similarity: ```sql SELECT array_cosine_similarity(x.v, y.v) FROM x, y WHERE x.i = y.i; ```
158
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Ordering
The ordering of `ARRAY` instances is defined using a lexicographical order. `NULL` values compare greater than all other values and are considered equal to each other.
34
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
See Also
For more functions, see [List Functions](#docs:sql:functions:list).
17
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Bitstring Type
<div class="narrow_table"></div> | Name | Aliases | Description | |:---|:---|:---| | `BITSTRING` | `BIT` | variable-length strings of 1s and 0s | Bitstrings are strings of 1s and 0s. The bit type data is of variable length. A bitstring value requires 1 byte for each group of 8 bits, plus a fixed amount to store some metadata. By default bitstrings will not be padded with zeroes. Bitstrings can be very large, having the same size restrictions as `BLOB`s.
128
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Creating a Bitstring
A string encoding a bitstring can be cast to a `BITSTRING`: ```sql SELECT '101010'::BITSTRING AS b; ``` <div class="narrow_table monospace_table"></div> | b | |--------| | 101010 | Create a `BITSTRING` with predefined length is possible with the `bitstring` function. The resulting bitstring will be left-padded with zeroes. ```sql SELECT bitstring('0101011', 12) AS b; ``` | b | |--------------| | 000000101011 | Numeric values (integer and float values) can also be converted to a `BITSTRING` via casting. For example: ```sql SELECT 123::BITSTRING AS b; ``` <div class="narrow_table monospace_table"></div> | b | |----------------------------------| | 00000000000000000000000001111011 |
201
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Bitstring Functions](#docs:sql:functions:bitstring).
16
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Blob Type
<div class="narrow_table"></div> | Name | Aliases | Description | |:---|:---|:---| | `BLOB` | `BYTEA`, `BINARY`, `VARBINARY` | variable-length binary data | The blob (**B**inary **L**arge **OB**ject) type represents an arbitrary binary object stored in the database system. The blob type can contain any type of binary data with no restrictions. What the actual bytes represent is opaque to the database system. Create a `BLOB` value with a single byte (170): ```sql SELECT '\xAA'::BLOB; ``` Create a `BLOB` value with three bytes (170, 171, 172): ```sql SELECT '\xAA\xAB\xAC'::BLOB; ``` Create a `BLOB` value with two bytes (65, 66): ```sql SELECT 'AB'::BLOB; ``` Blobs are typically used to store non-textual objects that the database does not provide explicit support for, such as images. While blobs can hold objects up to 4 GB in size, typically it is not recommended to store very large objects within the database system. In many situations it is better to store the large file on the file system, and store the path to the file in the database system in a `VARCHAR` field.
290
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Blob Functions](#docs:sql:functions:blob).
14
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Boolean Type
<div class="narrow_table"></div> | Name | Aliases | Description | |:---|:---|:---| | `BOOLEAN` | `BOOL` | Logical Boolean (` true`/`false`) | The `BOOLEAN` type represents a statement of truth (“true” or “false”). In SQL, the `BOOLEAN` field can also have a third state “unknown” which is represented by the SQL `NULL` value. Select the three possible values of a `BOOLEAN` column: ```sql SELECT true, false, NULL::BOOLEAN; ``` Boolean values can be explicitly created using the literals `true` and `false`. However, they are most often created as a result of comparisons or conjunctions. For example, the comparison `i > 10` results in a Boolean value. Boolean values can be used in the `WHERE` and `HAVING` clauses of a SQL statement to filter out tuples from the result. In this case, tuples for which the predicate evaluates to `true` will pass the filter, and tuples for which the predicate evaluates to `false` or `NULL` will be filtered out. Consider the following example: Create a table with the values 5, 15 and `NULL`: ```sql CREATE TABLE integers (i INTEGER); INSERT INTO integers VALUES (5), (15), (NULL); ``` Select all entries where `i > 10`: ```sql SELECT * FROM integers WHERE i > 10; ``` In this case 5 and `NULL` are filtered out (` 5 > 10` is `false` and `NULL > 10` is `NULL`): | i | |---:| | 15 |
358
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Conjunctions
The `AND`/`OR` conjunctions can be used to combine Boolean values. Below is the truth table for the `AND` conjunction (i.e., `x AND y`). <div class="narrow_table"></div> | X | X AND true | X AND false | X AND NULL | |-------|-------|-------|-------| | true | true | false | NULL | | false | false | false | false | | NULL | NULL | false | NULL | Below is the truth table for the `OR` conjunction (i.e., `x OR y`). <div class="narrow_table"></div> | X | X OR true | X OR false | X OR NULL | |-------|------|-------|------| | true | true | true | true | | false | true | false | NULL | | NULL | true | NULL | NULL |
200
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Expressions
See [Logical Operators](#docs:sql:expressions:logical_operators) and [Comparison Operators](#docs:sql:expressions:comparison_operators).
34
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Date Types
<div class="narrow_table"></div> | Name | Aliases | Description | |:-------|:--------|:--------------------------------| | `DATE` | | calendar date (year, month day) | A date specifies a combination of year, month and day. DuckDB follows the SQL standard's lead by counting dates exclusively in the Gregorian calendar, even for years before that calendar was in use. Dates can be created using the `DATE` keyword, where the data must be formatted according to the ISO 8601 format (` YYYY-MM-DD`). ```sql SELECT DATE '1992-09-20'; ```
132
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Special Values
There are also three special date values that can be used on input: <div class="narrow_table"></div> | Input string | Description | |:-------------|:----------------------------------| | epoch | 1970-01-01 (Unix system day zero) | | infinity | later than all other dates | | -infinity | earlier than all other dates | The values `infinity` and `-infinity` are specially represented inside the system and will be displayed unchanged; but `epoch` is simply a notational shorthand that will be converted to the date value when read. ```sql SELECT '-infinity'::DATE AS negative, 'epoch'::DATE AS epoch, 'infinity'::DATE AS positive; ``` | negative | epoch | positive | |-----------|------------|----------| | -infinity | 1970-01-01 | infinity |
187
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Date Functions](#docs:sql:functions:date).
13
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Enum Data Type
<div class="narrow_table"></div> | Name | Description | |:--|:-----| | enum | Dictionary Encoding representing all possible string values of a column. | The enum type represents a dictionary data structure with all possible unique values of a column. For example, a column storing the days of the week can be an enum holding all possible days. Enums are particularly interesting for string columns with low cardinality (i.e., fewer distinct values). This is because the column only stores a numerical reference to the string in the enum dictionary, resulting in immense savings in disk storage and faster query performance.
124
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Enum Definition
Enum types are created from either a hardcoded set of values or from a select statement that returns a single column of `VARCHAR`s. The set of values in the select statement will be deduplicated, but if the enum is created from a hardcoded set there may not be any duplicates. Create enum using hardcoded values: ```sql CREATE TYPE ⟨enum_name⟩ AS ENUM ([⟨value_1⟩, ⟨value_2⟩,...]); ``` Create enum using a `SELECT` statement that returns a single column of `VARCHAR`s: ```sql CREATE TYPE ⟨enum_name⟩ AS ENUM (select_expression⟩); ``` For example: Creates new user defined type 'mood' as an enum: ```sql CREATE TYPE mood AS ENUM ('sad', 'ok', 'happy'); ``` This will fail since the `mood` type already exists: ```sql CREATE TYPE mood AS ENUM ('sad', 'ok', 'happy', 'anxious'); ``` This will fail since enums cannot hold `NULL` values: ```sql CREATE TYPE breed AS ENUM ('maltese', NULL); ``` This will fail since enum values must be unique: ```sql CREATE TYPE breed AS ENUM ('maltese', 'maltese'); ``` Create an enum from a select statement. First create an example table of values: ```sql CREATE TABLE my_inputs AS SELECT 'duck' AS my_varchar UNION ALL SELECT 'duck' AS my_varchar UNION ALL SELECT 'goose' AS my_varchar; ``` Create an enum using the unique string values in the `my_varchar` column: ```sql CREATE TYPE birds AS ENUM (SELECT my_varchar FROM my_inputs); ``` Show the available values in the `birds` enum using the `enum_range` function: ```sql SELECT enum_range(NULL::birds) AS my_enum_range; ``` <div class="narrow_table"></div> | my_enum_range | |-----------------| | `[duck, goose]` |
428
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Enum Usage
After an enum has been created, it can be used anywhere a standard built-in type is used. For example, we can create a table with a column that references the enum. Creates a table `person`, with attributes `name` (string type) and `current_mood` (mood type): ```sql CREATE TABLE person ( name TEXT, current_mood mood ); ``` Inserts tuples in the `person` table: ```sql INSERT INTO person VALUES ('Pedro', 'happy'), ('Mark', NULL), ('Pagliacci', 'sad'), ('Mr. Mackey', 'ok'); ``` The following query will fail since the mood type does not have `quackity-quack` value. ```sql INSERT INTO person VALUES ('Hannes', 'quackity-quack'); ``` The string `sad` is cast to the type `mood`, returning a numerical reference value. This makes the comparison a numerical comparison instead of a string comparison. ```sql SELECT * FROM person WHERE current_mood = 'sad'; ``` | name | current_mood | |-----------|--------------| | Pagliacci | sad | If you are importing data from a file, you can create an enum for a `VARCHAR` column before importing. Given this, the following subquery selects automatically selects only distinct values: ```sql CREATE TYPE mood AS ENUM (SELECT mood FROM 'path/to/file.csv'); ``` Then you can create a table with the enum type and import using any data import statement: ```sql CREATE TABLE person (name TEXT, current_mood mood); COPY person FROM 'path/to/file.csv'; ```
352
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Enums vs. Strings
DuckDB enums are automatically cast to `VARCHAR` types whenever necessary. This characteristic allows for enum columns to be used in any `VARCHAR` function. In addition, it also allows for comparisons between different enum columns, or an enum and a `VARCHAR` column. For example: Regexp_matches is a function that takes a VARCHAR, hence current_mood is cast to VARCHAR: ```sql SELECT regexp_matches(current_mood, '.*a.*') AS contains_a FROM person; ``` | contains_a | |:-----------| | true | | NULL | | true | | false | Create a new mood and table: ```sql CREATE TYPE new_mood AS ENUM ('happy', 'anxious'); CREATE TABLE person_2 ( name text, current_mood mood, future_mood new_mood, past_mood VARCHAR ); ``` Since the `current_mood` and `future_mood` columns are constructed on different enum types, DuckDB will cast both enums to strings and perform a string comparison: ```sql SELECT * FROM person_2 WHERE current_mood = future_mood; ``` When comparing the `past_mood` column (string), DuckDB will cast the `current_mood` enum to `VARCHAR` and perform a string comparison: ```sql SELECT * FROM person_2 WHERE current_mood = past_mood; ```
294
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Enum Removal
Enum types are stored in the catalog, and a catalog dependency is added to each table that uses them. It is possible to drop an enum from the catalog using the following command: ```sql DROP TYPE ⟨enum_name⟩; ``` Currently, it is possible to drop enums that are used in tables without affecting the tables. > **Warning. ** This behavior of the enum removal feature is subject to change. In future releases, it is expected that any dependent columns must be removed before dropping the enum, or the enum must be dropped with the additional `CASCADE` parameter.
119
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Comparison of Enums
Enum values are compared according to their order in the enum's definition. For example: ```sql CREATE TYPE mood AS ENUM ('sad', 'ok', 'happy'); ``` ```sql SELECT 'sad'::mood < 'ok'::mood AS comp; ``` | comp | |-----:| | true | ```sql SELECT unnest(['ok'::mood, 'happy'::mood, 'sad'::mood]) AS m ORDER BY m; ``` | m | |-------| | sad | | ok | | happy |
125
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Enum Functions](#docs:sql:functions:enum).
14
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Interval Type
`INTERVAL`s represent periods of time that can be added to or subtracted from `DATE`, `TIMESTAMP`, `TIMESTAMPTZ`, or `TIME` values. <div class="narrow_table"></div> | Name | Description | |:---|:---| | `INTERVAL` | Period of time | An `INTERVAL` can be constructed by providing amounts together with units. Units that aren't *months*, *days*, or *microseconds* are converted to equivalent amounts in the next smaller of these three basis units. ```sql SELECT INTERVAL 1 YEAR, -- single unit using YEAR keyword; stored as 12 months INTERVAL (random() * 10) YEAR, -- parentheses necessary for variable amounts; -- stored as integer number of months INTERVAL '1 month 1 day', -- string type necessary for multiple units; stored as (1 month, 1 day) '16 months'::INTERVAL, -- string cast supported; stored as 16 months '48:00:00'::INTERVAL, -- HH::MM::SS string supported; stored as (48 * 60 * 60 * 1e6 microseconds) ; ``` > **Warning. ** Decimal values can be used in strings but are rounded to integers. > ```sql > SELECT INTERVAL '1.5' YEARS; > -- Returns 12 months; equivalent to `to_years(CAST(trunc(1.5) AS INTEGER))` > ``` > For more precision, use a more granular unit; e.g., `18 MONTHS` instead of `'1.5' YEARS`. Three basis units are necessary because a month does not correspond to a fixed amount of days (February has fewer days than March) and a day doesn't correspond to a fixed amount of microseconds. The division into components makes the `INTERVAL` class suitable for adding or subtracting specific time units to a date. For example, we can generate a table with the first day of every month using the following SQL query: ```sql SELECT DATE '2000-01-01' + INTERVAL (i) MONTH FROM range(12) t(i); ``` When `INTERVAL`s are deconstructed via the `datepart` function, the *months* component is additionally split into years and months, and the *microseconds* component is split into hours, minutes, and microseconds. The *days* component is not split into additional units. To demonstrate this, the following query generates an `INTERVAL` called `period` by summing random amounts of the three basis units. It then extracts the aforementioned six parts from `period`, adds them back together, and confirms that the result is always equal to the original `period`. ```sql SELECT period = list_reduce( [INTERVAL (datepart(part, period) || part) FOR part IN ['year', 'month', 'day', 'hour', 'minute', 'microsecond'] ], (i1, i2) -> i1 + i2 ) -- always true FROM ( VALUES ( INTERVAL (random() * 123_456_789_123) MICROSECONDS + INTERVAL (random() * 12_345) DAYS + INTERVAL (random() * 12_345) MONTHS ) ) _(period); ``` > **Warning. ** The *microseconds* component is split only into hours, minutes, and microseconds, rather than hours, minutes, *seconds*, and microseconds. Additionally, the amounts of centuries, decades, quarters, seconds, and milliseconds in an `INTERVAL`, rounded down to the nearest integer, can be extracted via the `datepart` function. However, these components are not required to reassemble the original `INTERVAL`. In fact, if the previous query additionally extracted decades or seconds, then the sum of extracted parts would generally be larger than the original `period` since this would double count the months and microseconds components, respectively. > All units use 0-based indexing, except for quarters, which use 1-based indexing. For example: ```sql SELECT datepart('decade', INTERVAL 12 YEARS), -- returns 1 datepart('year', INTERVAL 12 YEARS), -- returns 12 datepart('second', INTERVAL 1_234 MILLISECONDS), -- returns 1 datepart('microsecond', INTERVAL 1_234 MILLISECONDS), -- returns 1_234_000 ```
933
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Arithmetic with Timestamps, Dates and Intervals
`INTERVAL`s can be added to and subtracted from `TIMESTAMP`s, `TIMESTAMPTZ`s, `DATE`s, and `TIME`s using the `+` and `-` operators. ```sql SELECT DATE '2000-01-01' + INTERVAL 1 YEAR, TIMESTAMP '2000-01-01 01:33:30' - INTERVAL '1 month 13 hours', TIME '02:00:00' - INTERVAL '3 days 23 hours', -- wraps; equals TIME '03:00:00' ; ``` Conversely, subtracting two `TIMESTAMP`s or two `TIMESTAMPTZ`s from one another creates an `INTERVAL` describing the difference between the timestamps with only the *days and microseconds* components. For example: ```sql SELECT TIMESTAMP '2000-02-06 12:00:00' - TIMESTAMP '2000-01-01 11:00:00', -- 36 days 1 hour TIMESTAMP '2000-02-01' + (TIMESTAMP '2000-02-01' - TIMESTAMP '2000-01-01'), -- '2000-03-03', NOT '2000-03-01' ; ``` Subtracting two `DATE`s from one another does not create an `INTERVAL` but rather returns the number of days between the given dates as integer value. > **Warning. ** Extracting a component of the `INTERVAL` difference between two `TIMESTAMP`s is not equivalent to computing the number of partition boundaries between the two `TIMESTAMP`s for the corresponding unit, as computed by the `datediff` function: > ```sql > SELECT > datediff('day', TIMESTAMP '2020-01-01 01:00:00', TIMESTAMP '2020-01-02 00:00:00'), -- 1 > datepart('day', TIMESTAMP '2020-01-02 00:00:00' - TIMESTAMP '2020-01-01 01:00:00'), -- 0 > ; > ```
451
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Equality and Comparison
For equality and ordering comparisons only, the total number of microseconds in an `INTERVAL` is computed by converting the days basis unit to `24 * 60 * 60 * 1e6` microseconds and the months basis unit to 30 days, or `30 * 24 * 60 * 60 * 1e6` microseconds. As a result, `INTERVAL`s can compare equal even when they are functionally different, and the ordering of `INTERVAL`s is not always preserved when they are added to dates or timestamps. For example: * `INTERVAL 30 DAYS = INTERVAL 1 MONTH` * but `DATE '2020-01-01' + INTERVAL 30 DAYS != DATE '2020-01-01' + INTERVAL 1 MONTH`. and * `INTERVAL '30 days 12 hours' > INTERVAL 1 MONTH` * but `DATE '2020-01-01' + INTERVAL '30 days 12 hours' < DATE '2020-01-01' + INTERVAL 1 MONTH`.
221
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See the [Date Part Functions page](#docs:sql:functions:datepart) for a list of available date parts for use with an `INTERVAL`. See the [Interval Operators page](#docs:sql:functions:interval) for functions that operate on intervals.
56
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
List Type
A `LIST` column encodes lists of values. Fields in the column can have values with different lengths, but they must all have the same underlying type. `LIST`s are typically used to store arrays of numbers, but can contain any uniform data type, including other `LIST`s and `STRUCT`s. `LIST`s are similar to PostgreSQL's `ARRAY` type. DuckDB uses the `LIST` terminology, but some [`array_` functions](#docs:sql:functions:list) are provided for PostgreSQL compatibility. See the [data types overview](#docs:sql:data_types:overview) for a comparison between nested data types. > For storing fixed-length lists, DuckDB uses the [`ARRAY` type](#docs:sql:data_types:array).
158
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Creating Lists
Lists can be created using the [`list_value(expr, ...)`](#docs:sql:functions:list::list_valueany-) function or the equivalent bracket notation `[expr, ...]`. The expressions can be constants or arbitrary expressions. To create a list from a table column, use the [`list`](#docs:sql:functions:aggregates::general-aggregate-functions) aggregate function. List of integers: ```sql SELECT [1, 2, 3]; ``` List of strings with a `NULL` value: ```sql SELECT ['duck', 'goose', NULL, 'heron']; ``` List of lists with `NULL` values: ```sql SELECT [['duck', 'goose', 'heron'], NULL, ['frog', 'toad'], []]; ``` Create a list with the list_value function: ```sql SELECT list_value(1, 2, 3); ``` Create a table with an `INTEGER` list column and a `VARCHAR` list column: ```sql CREATE TABLE list_table (int_list INTEGER[], varchar_list VARCHAR[]); ```
232
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Retrieving from Lists
Retrieving one or more values from a list can be accomplished using brackets and slicing notation, or through [list functions](#docs:sql:functions:list) like `list_extract`. Multiple equivalent functions are provided as aliases for compatibility with systems that refer to lists as arrays. For example, the function `array_slice`. > We wrap the list creation in parenthesis so that it happens first. > This is only needed in our basic examples here, not when working with a list column. > For example, this can't be parsed: `SELECT ['a', 'b', 'c'][1]`. <div class="narrow_table monospace_table"></div> | Example | Result | |:-----------------------------------------|:-----------| | SELECT (['a', 'b', 'c'])[3] | 'c' | | SELECT (['a', 'b', 'c'])[-1] | 'c' | | SELECT (['a', 'b', 'c'])[2 + 1] | 'c' | | SELECT list_extract(['a', 'b', 'c'], 3) | 'c' | | SELECT (['a', 'b', 'c'])[1:2] | ['a', 'b'] | | SELECT (['a', 'b', 'c'])[:2] | ['a', 'b'] | | SELECT (['a', 'b', 'c'])[-2:] | ['b', 'c'] | | SELECT list_slice(['a', 'b', 'c'], 2, 3) | ['b', 'c'] |
341
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Comparison and Ordering
The `LIST` type can be compared using all the [comparison operators](#docs:sql:expressions:comparison_operators). These comparisons can be used in [logical expressions](#docs:sql:expressions:logical_operators) such as `WHERE` and `HAVING` clauses, and return [`BOOLEAN` values](#docs:sql:data_types:boolean). The `LIST` ordering is defined positionally using the following rules, where `min_len = min(len(l1), len(l2))`. * **Equality.** `l1` and `l2` are equal, if for each `i` in `[1, min_len]`: `l1[i] = l2[i]`. * **Less Than**. For the first index `i` in `[1, min_len]` where `l1[i] != l2[i]`: If `l1[i] < l2[i]`, `l1` is less than `l2`. `NULL` values are compared following PostgreSQL's semantics. Lower nesting levels are used for tie-breaking. Here are some queries returning `true` for the comparison. ```sql SELECT [1, 2] < [1, 3] AS result; ``` ```sql SELECT [[1], [2, 4, 5]] < [[2]] AS result; ``` ```sql SELECT [ ] < [1] AS result; ``` These queries return `false`. ```sql SELECT [ ] < [ ] AS result; ``` ```sql SELECT [1, 2] < [1] AS result; ``` These queries return `NULL`. ```sql SELECT [1, 2] < [1, NULL, 4] AS result; ```
373
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Updating Lists
Updates on lists are internally represented as an insert and a delete operation. Therefore, updating list values may lead to a duplicate key error on primary/unique keys. See the following example: ```sql CREATE TABLE tbl (id INTEGER PRIMARY KEY, lst INTEGER[], comment VARCHAR); INSERT INTO tbl VALUES (1, [12, 34], 'asd'); UPDATE tbl SET lst = [56, 78] WHERE id = 1; ``` ```console Constraint Error: Duplicate key "id: 1" violates primary key constraint. If this is an unexpected constraint violation please double check with the known index limitations section in our documentation (https://duckdb.org/docs/sql/indexes). ```
141
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [List Functions](#docs:sql:functions:list).
13
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Literal Types
DuckDB has special literal types for representing `NULL`, integer and string literals in queries. These have their own binding and conversion rules. > Prior to DuckDB version 0.10.0, integer and string literals behaved identically to the `INTEGER` and `VARCHAR` types.
60
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Null Literals
The `NULL` literal is denoted with the keyword `NULL`. The `NULL` literal can be implicitly converted to any other type.
28
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Integer Literals
Integer literals are denoted as a sequence of one or more digits. At runtime, these result in values of the `INTEGER_LITERAL` type. `INTEGER_LITERAL` types can be implicitly converted to any [integer type](#docs:sql:data_types:numeric::integer-types) in which the value fits. For example, the integer literal `42` can be implicitly converted to a `TINYINT`, but the integer literal `1000` cannot be.
93
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Other Numeric Literals
Non-integer numeric literals can be denoted with decimal notation, using the period character (` .`) to separate the integer part and the decimal part of the number. Either the integer part or the decimal part may be omitted: ```sql SELECT 1.5; -- 1.5 SELECT .50; -- 0.5 SELECT 2.; -- 2.0 ``` Non-integer numeric literals can also be denoted using [_E notation_](https://en.wikipedia.org/wiki/Scientific_notation#E_notation). In E notation, an integer or decimal literal is followed by and exponential part, which is denoted by `e` or `E`, followed by a literal integer indicating the exponent. The exponential part indicates that the preceding value should be multiplied by 10 raised to the power of the exponent: ```sql SELECT 1e2; -- 100 SELECT 6.02214e23; -- Avogadro's constant SELECT 1e-10; -- 1 ångström ```
226
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Underscores in Numeric Literals
DuckDB's SQL dialect allows using the underscore character `_` in numeric literals as an optional separator. The rules for using underscores are as follows: * Underscores are allowed in integer, decimal, hexadecimal and binary notation. * Underscores can not be the first or last character in a literal. * Underscores have to have an integer/numeric part on either side of them, i.e., there can not be multiple underscores in a row and not immediately before/after a decimal or exponent. Examples: ```sql SELECT 100_000_000; -- 100000000 SELECT '0xFF_FF'::INTEGER; -- 65535 SELECT 1_2.1_2E0_1; -- 121.2 SELECT '0b0_1_0_1'::INTEGER; -- 5 ```
182
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
String Literals
String literals are delimited using single quotes (` '`, apostrophe) and result in `STRING_LITERAL` values. Note that double quotes (` "`) cannot be used as string delimiter character: instead, double quotes are used to delimit [quoted identifiers](#docs:sql:dialect:keywords_and_identifiers::identifiers). #### Implicit String Literal Concatenation {#docs:sql:data_types:literal_types::implicit-string-literal-concatenation} Consecutive single-quoted string literals separated only by whitespace that contains at least one newline are implicitly concatenated: ```sql SELECT 'Hello' ' ' 'World' AS greeting; ``` is equivalent to: ```sql SELECT 'Hello' || ' ' || 'World' AS greeting; ``` They both return the following result: | greeting | |-------------| | Hello World | Note that implicit concatenation only works if there is at least one newline between the literals. Using adjacent string literals separated by whitespace without a newline results in a syntax error: ```sql SELECT 'Hello' ' ' 'World' AS greeting; ``` ```console Parser Error: syntax error at or near "' '" LINE 1: SELECT 'Hello' ' ' 'World' AS greeting; ^ ``` Also note that implicit concatenation only works with single-quoted string literals, and does not work with other kinds of string values. #### Implicit String Conversion {#docs:sql:data_types:literal_types::implicit-string-conversion} `STRING_LITERAL` instances can be implicitly converted to _any_ other type. For example, we can compare string literals with dates: ```sql SELECT d > '1992-01-01' AS result FROM (VALUES (DATE '1992-01-01')) t(d); ``` | result | |:-------| | false | However, we cannot compare `VARCHAR` values with dates. ```sql SELECT d > '1992-01-01'::VARCHAR FROM (VALUES (DATE '1992-01-01')) t(d); ``` ```console Binder Error: Cannot compare values of type DATE and type VARCHAR - an explicit cast is required ``` #### Escape String Literals {#docs:sql:data_types:literal_types::escape-string-literals} To escape a single quote (apostrophe) character in a string literal, use `''`. For example, `SELECT '''' AS s` returns `'`. To include special characters such as newline, use `E` escape the string. Both the uppercase (` E'...'`) and lowercase variants (` e'...'`) work. ```sql SELECT E'Hello\nworld' AS msg; ``` Or: ```sql SELECT e'Hello\nworld' AS msg; ``` <!-- This output intentionally uses the duckbox formatter --> ```text ┌──────────────┐ │ msg │ │ varchar │ ├──────────────┤ │ Hello\nworld │ └──────────────┘ ``` The following backslash escape sequences are supported: | Escape sequence | Name | ASCII code | |:--|:--|--:| | `\b` | backspace | 8 | | `\f` | form feed | 12 | | `\n` | newline | 10 | | `\r` | carriage return | 13 | | `\t` | tab | 9 | #### Dollar-Quoted String Literals {#docs:sql:data_types:literal_types::dollar-quoted-string-literals} DuckDB supports dollar-quoted string literals, which are surrounded by double-dollar symbols (` $$`): ```sql SELECT $$Hello world$$ AS msg; ``` <!-- This output intentionally uses the duckbox formatter --> ```text ┌──────────────┐ │ msg │ │ varchar │ ├──────────────┤ │ Hello\nworld │ └──────────────┘ ``` ```sql SELECT $$The price is $9.95$$ AS msg; ``` | msg | |--------------------| | The price is $9.95 | [Implicit concatenation](#::implicit-string-literal-concatenation) only works for single-quoted string literals, not with dollar-quoted ones.
914
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Map Type
`MAP`s are similar to `STRUCT`s in that they are an ordered list of “entries” where a key maps to a value. However, `MAP`s do not need to have the same keys present for each row, and thus are suitable for other use cases. `MAP`s are useful when the schema is unknown beforehand or when the schema varies per row; their flexibility is a key differentiator. `MAP`s must have a single type for all keys, and a single type for all values. Keys and values can be any type, and the type of the keys does not need to match the type of the values (e.g., a `MAP` of `VARCHAR` to `INT` is valid). `MAP`s may not have duplicate keys. `MAP`s return an empty list if a key is not found rather than throwing an error as structs do. In contrast, `STRUCT`s must have string keys, but each key may have a value of a different type. See the [data types overview](#docs:sql:data_types:overview) for a comparison between nested data types. To construct a `MAP`, use the bracket syntax preceded by the `MAP` keyword.
244
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Creating Maps
A map with `VARCHAR` keys and `INTEGER` values. This returns `{key1=10, key2=20, key3=30}`: ```sql SELECT MAP {'key1': 10, 'key2': 20, 'key3': 30}; ``` Alternatively use the map_from_entries function. This returns `{key1=10, key2=20, key3=30}`: ```sql SELECT map_from_entries([('key1', 10), ('key2', 20), ('key3', 30)]); ``` A map can be also created using two lists: keys and values. This returns `{key1=10, key2=20, key3=30}`: ```sql SELECT MAP(['key1', 'key2', 'key3'], [10, 20, 30]); ``` A map can also use INTEGER keys and NUMERIC values. This returns `{1=42.001, 5=-32.100}`: ```sql SELECT MAP {1: 42.001, 5: -32.1}; ``` Keys and/or values can also be nested types. This returns `{[a, b]=[1.1, 2.2], [c, d]=[3.3, 4.4]}`: ```sql SELECT MAP {['a', 'b']: [1.1, 2.2], ['c', 'd']: [3.3, 4.4]}; ``` Create a table with a map column that has INTEGER keys and DOUBLE values: ```sql CREATE TABLE tbl (col MAP(INTEGER, DOUBLE)); ```
349
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Retrieving from Maps
`MAP`s use bracket notation for retrieving values. Selecting from a `MAP` returns a `LIST` rather than an individual value, with an empty `LIST` meaning that the key was not found. Use bracket notation to retrieve a list containing the value at a key's location. This returns `[5]`. Note that the expression in bracket notation must match the type of the map's key: ```sql SELECT MAP {'key1': 5, 'key2': 43}['key1']; ``` To retrieve the underlying value, use list selection syntax to grab the first element. This returns `5`: ```sql SELECT MAP {'key1': 5, 'key2': 43}['key1'][1]; ``` If the element is not in the map, an empty list will be returned. This returns `[]`. Note that the expression in bracket notation must match the type of the map's key else an error is returned: ```sql SELECT MAP {'key1': 5, 'key2': 43}['key3']; ``` The element_at function can also be used to retrieve a map value. This returns `[5]`: ```sql SELECT element_at(MAP {'key1': 5, 'key2': 43}, 'key1'); ```
274
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Comparison Operators
Nested types can be compared using all the [comparison operators](#docs:sql:expressions:comparison_operators). These comparisons can be used in [logical expressions](#docs:sql:expressions:logical_operators) for both `WHERE` and `HAVING` clauses, as well as for creating [Boolean values](#docs:sql:data_types:boolean). The ordering is defined positionally in the same way that words can be ordered in a dictionary. `NULL` values compare greater than all other values and are considered equal to each other. At the top level, `NULL` nested values obey standard SQL `NULL` comparison rules: comparing a `NULL` nested value to a non-`NULL` nested value produces a `NULL` result. Comparing nested value _members_, however, uses the internal nested value rules for `NULL`s, and a `NULL` nested value member will compare above a non-`NULL` nested value member.
198
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Map Functions](#docs:sql:functions:map).
14
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
NULL Values
`NULL` values are special values that are used to represent missing data in SQL. Columns of any type can contain `NULL` values. Logically, a `NULL` value can be seen as “the value of this field is unknown”. A `NULL` value can be inserted to any field that does not have the `NOT NULL` qualifier: ```sql CREATE TABLE integers (i INTEGER); INSERT INTO integers VALUES (NULL); ``` `NULL` values have special semantics in many parts of the query as well as in many functions: > Any comparison with a `NULL` value returns `NULL`, including `NULL = NULL`. You can use `IS NOT DISTINCT FROM` to perform an equality comparison where `NULL` values compare equal to each other. Use `IS (NOT) NULL` to check if a value is `NULL`. ```sql SELECT NULL = NULL; ``` ```text NULL ``` ```sql SELECT NULL IS NOT DISTINCT FROM NULL; ``` ```text true ``` ```sql SELECT NULL IS NULL; ``` ```text true ```
229
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
NULL and Functions
A function that has input argument as `NULL` **usually** returns `NULL`. ```sql SELECT cos(NULL); ``` ```text NULL ``` The `coalesce` function is an exception to this: it takes any number of arguments, and returns for each row the first argument that is not `NULL`. If all arguments are `NULL`, `coalesce` also returns `NULL`. ```sql SELECT coalesce(NULL, NULL, 1); ``` ```text 1 ``` ```sql SELECT coalesce(10, 20); ``` ```text 10 ``` ```sql SELECT coalesce(NULL, NULL); ``` ```text NULL ``` The `ifnull` function is a two-argument version of `coalesce`. ```sql SELECT ifnull(NULL, 'default_string'); ``` ```text default_string ``` ```sql SELECT ifnull(1, 'default_string'); ``` ```text 1 ```
207
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
`NULL` and Conjunctions
`NULL` values have special semantics in `AND`/`OR` conjunctions. For the ternary logic truth tables, see the [Boolean Type documentation](#docs:sql:data_types:boolean).
41
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
`NULL` and Aggregate Functions
`NULL` values are ignored in most aggregate functions. Aggregate functions that do not ignore `NULL` values include: `first`, `last`, `list`, and `array_agg`. To exclude `NULL` values from those aggregate functions, the [`FILTER` clause](#docs:sql:query_syntax:filter) can be used. ```sql CREATE TABLE integers (i INTEGER); INSERT INTO integers VALUES (1), (10), (NULL); ``` ```sql SELECT min(i) FROM integers; ``` ```text 1 ``` ```sql SELECT max(i) FROM integers; ``` ```text 10 ```
132
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Integer Types
The types `TINYINT`, `SMALLINT`, `INTEGER`, `BIGINT` and `HUGEINT` store whole numbers, that is, numbers without fractional components, of various ranges. Attempts to store values outside of the allowed range will result in an error. The types `UTINYINT`, `USMALLINT`, `UINTEGER`, `UBIGINT` and `UHUGEINT` store whole unsigned numbers. Attempts to store negative numbers or values outside of the allowed range will result in an error. | Name | Aliases | Min | Max | |:--|:--|----:|----:| | `TINYINT` | `INT1` | -128 | 127 | | `SMALLINT` | `INT2`, `INT16` `SHORT` | -32768 | 32767 | | `INTEGER` | `INT4`, `INT32`, `INT`, `SIGNED` | -2147483648 | 2147483647 | | `BIGINT` | `INT8`, `INT64` `LONG` | -9223372036854775808 | 9223372036854775807 | | `HUGEINT` | `INT128` | -170141183460469231731687303715884105728 | $2^{127}-1$ | | `UTINYINT` | - | 0 | 255 | | `USMALLINT` | -| 0 | 65535 | | `UINTEGER` | - | 0 | 4294967295 | | `UBIGINT` | - | 0 | 18446744073709551615 | | `UHUGEINT` | - | 0 | 340282366920938463463374607431768211455 | The type integer is the common choice, as it offers the best balance between range, storage size, and performance. The `SMALLINT` type is generally only used if disk space is at a premium. The `BIGINT` and `HUGEINT` types are designed to be used when the range of the integer type is insufficient.
449
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Fixed-Point Decimals
The data type `DECIMAL(WIDTH, SCALE)` (also available under the alias `NUMERIC(WIDTH, SCALE)`) represents an exact fixed-point decimal value. When creating a value of type `DECIMAL`, the `WIDTH` and `SCALE` can be specified to define which size of decimal values can be held in the field. The `WIDTH` field determines how many digits can be held, and the `scale` determines the amount of digits after the decimal point. For example, the type `DECIMAL(3, 2)` can fit the value `1.23`, but cannot fit the value `12.3` or the value `1.234`. The default `WIDTH` and `SCALE` is `DECIMAL(18, 3)`, if none are specified. Internally, decimals are represented as integers depending on their specified `WIDTH`. <div class="narrow_table"></div> | Width | Internal | Size (bytes) | |:---|:---|---:| | 1-4 | `INT16` | 2 | | 5-9 | `INT32` | 4 | | 10-18 | `INT64` | 8 | | 19-38 | `INT128` | 16 | Performance can be impacted by using too large decimals when not required. In particular decimal values with a width above 19 are slow, as arithmetic involving the `INT128` type is much more expensive than operations involving the `INT32` or `INT64` types. It is therefore recommended to stick with a `WIDTH` of `18` or below, unless there is a good reason for why this is insufficient.
351
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Floating-Point Types
The data types `FLOAT` and `DOUBLE` precision are variable-precision numeric types. In practice, these types are usually implementations of IEEE Standard 754 for Binary Floating-Point Arithmetic (single and double precision, respectively), to the extent that the underlying processor, operating system, and compiler support it. <div class="narrow_table"></div> | Name | Aliases | Description | |:--|:--|:--------| | `FLOAT` | `FLOAT4`, `REAL` | single precision floating-point number (4 bytes) | | `DOUBLE` | `FLOAT8` | double precision floating-point number (8 bytes) | Like for fixed-point data types, conversion from literals or casts from other datatypes to floating-point types stores inputs that cannot be represented exactly as approximations. However, it can be harder to predict what inputs are affected by this. For example, it is not surprising that `1.3::DECIMAL(1, 0) - 0.7::DECIMAL(1, 0) != 0.6::DECIMAL(1, 0)` but it may he surprising that `1.3::FLOAT - 0.7::FLOAT != 0.6::FLOAT`. Additionally, whereas multiplication, addition, and subtraction of fixed-point decimal data types is exact, these operations are only approximate on floating-point binary data types. For more complex mathematical operations, however, floating-point arithmetic is used internally and more precise results can be obtained if intermediate steps are _not_ cast to fixed point formats of the same width as in- and outputs. For example, `(10::FLOAT / 3::FLOAT)::FLOAT * 3 = 10` whereas `(10::DECIMAL(18, 3) / 3::DECIMAL(18, 3))::DECIMAL(18, 3) * 3 = 9.999`. In general, we advise that: * If you require exact storage of numbers with a known number of decimal digits and require exact additions, subtractions, and multiplications (such as for monetary amounts), use the [`DECIMAL` data type](#::fixed-point-decimals) or its `NUMERIC` alias instead. * If you want to do fast or complicated calculations, the floating-point data types may be more appropriate. However, if you use the results for anything important, you should evaluate your implementation carefully for corner cases (ranges, infinities, underflows, invalid operations) that may be handled differently from what you expect and you should familiarize yourself with common floating-point pitfalls. The article [“What Every Computer Scientist Should Know About Floating-Point Arithmetic” by David Goldberg](https://docs.oracle.com/cd/E19957-01/806-3568/ncg_goldberg.html) and [the floating point series on Bruce Dawson's blog](https://randomascii.wordpress.com/2017/06/19/sometimes-floating-point-math-is-perfect/) provide excellent starting points. On most platforms, the `FLOAT` type has a range of at least 1E-37 to 1E+37 with a precision of at least 6 decimal digits. The `DOUBLE` type typically has a range of around 1E-307 to 1E+308 with a precision of at least 15 digits. Positive numbers outside of these ranges (and negative numbers ourside the mirrored ranges) may cause errors on some platforms but will usually be converted to zero or infinity, respectively. In addition to ordinary numeric values, the floating-point types have several special values representing IEEE 754 special values: * `Infinity`: infinity * `-Infinity`: negative infinity * `NaN`: not a number > On a machine whose floating-point arithmetic does not follow IEEE 754, these values will probably not work as expected. When writing these values as constants in a SQL command, you must put quotes around them, for example: ```sql UPDATE table SET x = '-Infinity'; ``` On input, these strings are recognized in a case-insensitive manner.
846
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Universally Unique Identifiers (` UUID`s)
DuckDB supports universally unique identifiers (UUIDs) through the `UUID` type. These use 128 bits and are represented internally as `HUGEINT` values. When printed, they are shown with lowercase hexadecimal characters, separated by dashes as follows: `⟨8 characters⟩-⟨4 characters⟩-⟨4 characters⟩-⟨4 characters⟩-⟨12 characters⟩` (using 36 characters in total including the dashes). For example, `4ac7a9e9-607c-4c8a-84f3-843f0191e3fd` is a valid UUID. To generate a new UUID, use the [`uuid()` utility function](#docs:sql:functions:utility::utility-functions).
158
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Numeric Functions and Operators](#docs:sql:functions:numeric).
16
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Struct Data Type
Conceptually, a `STRUCT` column contains an ordered list of columns called “entries”. The entries are referenced by name using strings. This document refers to those entry names as keys. Each row in the `STRUCT` column must have the same keys. The names of the struct entries are part of the *schema*. Each row in a `STRUCT` column must have the same layout. The names of the struct entries are case-insensitive. `STRUCT`s are typically used to nest multiple columns into a single column, and the nested column can be of any type, including other `STRUCT`s and `LIST`s. `STRUCT`s are similar to PostgreSQL's `ROW` type. The key difference is that DuckDB `STRUCT`s require the same keys in each row of a `STRUCT` column. This allows DuckDB to provide significantly improved performance by fully utilizing its vectorized execution engine, and also enforces type consistency for improved correctness. DuckDB includes a `row` function as a special way to produce a `STRUCT`, but does not have a `ROW` data type. See an example below and the [`STRUCT` functions documentation](#docs:sql:functions:struct) for details. `STRUCT`s have a fixed schema. It is not possible to change the schema of a `STRUCT` using `UPDATE` operations. See the [data types overview](#docs:sql:data_types:overview) for a comparison between nested data types. #### Creating Structs {#docs:sql:data_types:struct::creating-structs} Structs can be created using the [`struct_pack(name := expr, ...)`](#docs:sql:functions:struct) function, the equivalent array notation `{'name': expr, ...}`, using a row variable, or using the `row` function. Create a struct using the `struct_pack` function. Note the lack of single quotes around the keys and the use of the `:=` operator: ```sql SELECT struct_pack(key1 := 'value1', key2 := 42) AS s; ``` Create a struct using the array notation: ```sql SELECT {'key1': 'value1', 'key2': 42} AS s; ``` Create a struct using a row variable: ```sql SELECT d AS s FROM (SELECT 'value1' AS key1, 42 AS key2) d; ``` Create a struct of integers: ```sql SELECT {'x': 1, 'y': 2, 'z': 3} AS s; ``` Create a struct of strings with a `NULL` value: ```sql SELECT {'yes': 'duck', 'maybe': 'goose', 'huh': NULL, 'no': 'heron'} AS s; ``` Create a struct with a different type for each key: ```sql SELECT {'key1': 'string', 'key2': 1, 'key3': 12.345} AS s; ``` Create a struct of structs with `NULL` values: ```sql SELECT { 'birds': {'yes': 'duck', 'maybe': 'goose', 'huh': NULL, 'no': 'heron'}, 'aliens': NULL, 'amphibians': {'yes': 'frog', 'maybe': 'salamander', 'huh': 'dragon', 'no': 'toad'} } AS s; ``` #### Adding Field(s)/Value(s) to Structs {#docs:sql:data_types:struct::adding-fieldsvalues-to-structs} Add to a struct of integers: ```sql SELECT struct_insert({'a': 1, 'b': 2, 'c': 3}, d := 4) AS s; ``` #### Retrieving from Structs {#docs:sql:data_types:struct::retrieving-from-structs} Retrieving a value from a struct can be accomplished using dot notation, bracket notation, or through [struct functions](#docs:sql:functions:struct) like `struct_extract`. Use dot notation to retrieve the value at a key's location. In the following query, the subquery generates a struct column `a`, which we then query with `a.x`. ```sql SELECT a.x FROM (SELECT {'x': 1, 'y': 2, 'z': 3} AS a); ``` If a key contains a space, simply wrap it in double quotes (` "`). ```sql SELECT a."x space" FROM (SELECT {'x space': 1, 'y': 2, 'z': 3} AS a); ``` Bracket notation may also be used. Note that this uses single quotes (` '`) since the goal is to specify a certain string key and only constant expressions may be used inside the brackets (no expressions): ```sql SELECT a['x space'] FROM (SELECT {'x space': 1, 'y': 2, 'z': 3} AS a); ``` The struct_extract function is also equivalent. This returns 1: ```sql SELECT struct_extract({'x space': 1, 'y': 2, 'z': 3}, 'x space'); ```
1,093
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Struct Data Type
`STRUCT.*`
Rather than retrieving a single key from a struct, star notation (` *`) can be used to retrieve all keys from a struct as separate columns. This is particularly useful when a prior operation creates a struct of unknown shape, or if a query must handle any potential struct keys. All keys within a struct can be returned as separate columns using `*`: ```sql SELECT a.* FROM (SELECT {'x': 1, 'y': 2, 'z': 3} AS a); ``` <div class="narrow_table"></div> | x | y | z | |:---|:---|:---| | 1 | 2 | 3 | #### Dot Notation Order of Operations {#docs:sql:data_types:struct::dot-notation-order-of-operations} Referring to structs with dot notation can be ambiguous with referring to schemas and tables. In general, DuckDB looks for columns first, then for struct keys within columns. DuckDB resolves references in these orders, using the first match to occur:
217
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Struct Data Type
No Dots
```sql SELECT part1 FROM tbl; ``` 1. `part1` is a column
21
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Struct Data Type
One Dot
```sql SELECT part1.part2 FROM tbl; ``` 1. `part1` is a table, `part2` is a column 2. `part1` is a column, `part2` is a property of that column
52
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Struct Data Type
Two (or More) Dots
```sql SELECT part1.part2.part3 FROM tbl; ``` 1. `part1` is a schema, `part2` is a table, `part3` is a column 2. `part1` is a table, `part2` is a column, `part3` is a property of that column 3. `part1` is a column, `part2` is a property of that column, `part3` is a property of that column Any extra parts (e.g., `.part4.part5`, etc.) are always treated as properties #### Creating Structs with the `row` Function {#docs:sql:data_types:struct::creating-structs-with-the-row-function} The `row` function can be used to automatically convert multiple columns to a single struct column. When using `row` the keys will be empty strings allowing for easy insertion into a table with a struct column. Columns, however, cannot be initialized with the `row` function, and must be explicitly named. For example, inserting values into a struct column using the `row` function: ```sql CREATE TABLE t1 (s STRUCT(v VARCHAR, i INTEGER)); INSERT INTO t1 VALUES (row('a', 42)); SELECT * FROM t1; ``` The table will contain a single entry: ```sql {'v': a, 'i': 42} ``` The following produces the same result as above: ```sql CREATE TABLE t1 AS ( SELECT row('a', 42)::STRUCT(v VARCHAR, i INTEGER) ); ``` Initializing a struct column with the `row` function will fail: ```sql CREATE TABLE t2 AS SELECT row('a'); ``` ```console Invalid Input Error: A table cannot be created from an unnamed struct ``` When casting structs, the names of fields have to match. Therefore, the following query will fail: ```sql SELECT a::STRUCT(y INTEGER) AS b FROM (SELECT {'x': 42} AS a); ``` ```console Mismatch Type Error: Type STRUCT(x INTEGER) does not match with STRUCT(y INTEGER). Cannot cast STRUCTs - element "x" in source struct was not found in target struct ``` A workaround for this is to use [`struct_pack`](#::creating-structs) instead: ```sql SELECT struct_pack(y := a.x) AS b FROM (SELECT {'x': 42} AS a); ``` The `row` function can be used to return unnamed structs. For example: ```sql SELECT row(x, x + 1, y) FROM (SELECT 1 AS x, 'a' AS y) AS s; ``` This produces `(1, 2, a)`. If using multiple expressions when creating a struct, the `row` function is optional. The following query returns the same result as the previous one: ```sql SELECT (x, x + 1, y) AS s FROM (SELECT 1 AS x, 'a' AS y); ```
641
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Comparison and Ordering
The `STRUCT` type can be compared using all the [comparison operators](#docs:sql:expressions:comparison_operators). These comparisons can be used in [logical expressions](#docs:sql:expressions:logical_operators) such as `WHERE` and `HAVING` clauses, and return [`BOOLEAN` values](#docs:sql:data_types:boolean). For comparisons, the keys of a `STRUCT` have a fixed positional order, from left to right. Comparisons behave the same as row comparisons, therefore, matching keys must be at identical positions. Specifically, for any `STRUCT` comparison, the following rules apply: * **Equality.** `s1` and `s2` are equal, if all respective values are equal. * **Less Than**. For the first index `i` where `s1.value[i] != s2.value[i]`: If `s1.value[i] < s2.value[i]`, `s1` is less than `s2`. `NULL` values are compared following PostgreSQL's semantics. Lower nesting levels are used for tie-breaking. Here are some queries returning `true` for the comparison. ```sql SELECT {'k1': 2, 'k2': 3} < {'k1': 2, 'k2': 4} AS result; ``` ```sql SELECT {'k1': 'hello'} < {'k1': 'world'} AS result; ``` These queries return `false`. ```sql SELECT {'k2': 4, 'k1': 3} < {'k2': 2, 'k1': 4} AS result; ``` ```sql SELECT {'k1': [4, 3]} < {'k1': [3, 6, 7]} AS result; ``` These queries return `NULL`. ```sql SELECT {'k1': 2, 'k2': 3} < {'k1': 2, 'k2': NULL} AS result; ``` This query returns a `Binder Error` because the keys do not match positionally. ```sql SELECT {'k1': 2, 'k2': 3} < {'k2': 2, 'k1': 4} AS result; ``` ```console Binder Error: Cannot compare values of type STRUCT(k1 INTEGER, k2 INTEGER) and type STRUCT(k2 INTEGER, k1 INTEGER) - an explicit cast is required ```
525
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Struct Functions](#docs:sql:functions:struct).
14
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Text Types
In DuckDB, strings can be stored in the `VARCHAR` field. The field allows storage of Unicode characters. Internally, the data is encoded as UTF-8. <div class="narrow_table"></div> | Name | Aliases | Description | |:---|:---|:---| | `VARCHAR` | `CHAR`, `BPCHAR`, `STRING`, `TEXT` | Variable-length character string. | | `VARCHAR(n)` | `CHAR(n)`, `BPCHAR(n)`, `STRING(n)`, `TEXT(n)` | Variable-length character string. The maximum length `n` has no effect and is only provided for compatibility. |
138
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Specifying a Length Limit
Specifying the length for the `VARCHAR`, `STRING`, and `TEXT` types is not required and has no effect on the system. Specifying the length will not improve performance or reduce storage space of the strings in the database. These variants variant is supported for compatibility reasons with other systems that do require a length to be specified for strings. If you wish to restrict the number of characters in a `VARCHAR` column for data integrity reasons the `CHECK` constraint should be used, for example: ```sql CREATE TABLE strings ( val VARCHAR CHECK (length(val) <= 10) -- val has a maximum length of 10 ); ``` The `VARCHAR` field allows storage of Unicode characters. Internally, the data is encoded as UTF-8.
156
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Text Type Values
Values of the text type are character strings, also known as string values or simply strings. At runtime, string values are constructed in one of the following ways: * referencing columns whose declared or implied type is the text data type * [string literals](#docs:sql:data_types:literal_types::string-literals) * [casting](#docs:sql:expressions:cast::explicit-casting) expressions to a text type * applying a [string operator](#docs:sql:functions:char::text-functions-and-operators), or invoking a function that returns a text type value
122
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Strings with Special Characters
To use special characters in string, use [escape string literals](#docs:sql:data_types:literal_types::escape-string-literals) or [dollar-quoted string literals](#docs:sql:data_types:literal_types::dollar-quoted-string-literals). Alternatively, you can use concatenation and the [`chr` character function](#docs:sql:functions:char): ```sql SELECT 'Hello' || chr(10) || 'world' AS msg; ``` <!-- This output intentionally uses the duckbox formatter --> ```text ┌──────────────┐ │ msg │ │ varchar │ ├──────────────┤ │ Hello\nworld │ └──────────────┘ ```
158
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Text Functions](#docs:sql:functions:char) and [Pattern Matching](#docs:sql:functions:pattern_matching).
29
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Time Types
The `TIME` and `TIMETZ` types specify the hour, minute, second, microsecond of a day. <div class="narrow_table"></div> | Name | Aliases | Description | | :------- | :----------------------- | :------------------------------ | | `TIME` | `TIME WITHOUT TIME ZONE` | time of day (ignores time zone) | | `TIMETZ` | `TIME WITH TIME ZONE` | time of day (uses time zone) | Instances can be created using the type names as a keyword, where the data must be formatted according to the ISO 8601 format (` hh:mm:ss[.zzzzzz][+-TT[:tt]]`). ```sql SELECT TIME '1992-09-20 11:30:00.123456'; ``` ```text 11:30:00.123456 ``` ```sql SELECT TIMETZ '1992-09-20 11:30:00.123456'; ``` ```text 11:30:00.123456+00 ``` ```sql SELECT TIMETZ '1992-09-20 11:30:00.123456-02:00'; ``` ```text 13:30:00.123456+00 ``` ```sql SELECT TIMETZ '1992-09-20 11:30:00.123456+05:30'; ``` ```text 06:00:00.123456+00 ``` > **Warning. ** The `TIME` type should only be used in rare cases, where the date part of the timestamp can be disregarded. > Most applications should use the [`TIMESTAMP` types](#docs:sql:data_types:timestamp) to represent their timestamps.
381
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Timestamp Types
Timestamps represent points in absolute time, usually called *instants*. DuckDB represents instants as the number of microseconds (µs) since `1970-01-01 00:00:00+00`.
47
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Timestamp Types
| Name | Aliases | Description | |:---|:---|:---| | `TIMESTAMP_NS` | | timestamp with nanosecond precision (ignores time zone) | | `TIMESTAMP` | `DATETIME` | timestamp with microsecond precision (ignores time zone) | | `TIMESTAMP_MS` | | timestamp with millisecond precision (ignores time zone) | | `TIMESTAMP_S` | | timestamp with second precision (ignores time zone) | | `TIMESTAMPTZ` | `TIMESTAMP WITH TIME ZONE` | timestamp (uses time zone) | A timestamp specifies a combination of [`DATE`](#docs:sql:data_types:date) (year, month, day) and a [`TIME`](#docs:sql:data_types:time) (hour, minute, second, microsecond). Timestamps can be created using the `TIMESTAMP` keyword, where the data must be formatted according to the ISO 8601 format (` YYYY-MM-DD hh:mm:ss[.zzzzzz][+-TT[:tt]]`). Decimal places beyond the targeted sub-second precision are ignored. > **Warning. ** When defining timestamps using a `TIMESTAMP_NS` literal, the decimal places beyond _microseconds_ are ignored. Note that the `TIMESTAMP_NS` type is able to hold nanoseconds when created e.g., via the ingestion of Parquet files. ```sql SELECT TIMESTAMP_NS '1992-09-20 11:30:00.123456789'; ``` ```text 1992-09-20 11:30:00.123456 ``` ```sql SELECT TIMESTAMP '1992-09-20 11:30:00.123456789'; ``` ```text 1992-09-20 11:30:00.123456 ``` ```sql SELECT DATETIME '1992-09-20 11:30:00.123456789'; ``` ```text 1992-09-20 11:30:00.123456 ``` ```sql SELECT TIMESTAMP_MS '1992-09-20 11:30:00.123456789'; ``` ```text 1992-09-20 11:30:00.123 ``` ```sql SELECT TIMESTAMP_S '1992-09-20 11:30:00.123456789'; ``` ```text 1992-09-20 11:30:00 ``` ```sql SELECT TIMESTAMPTZ '1992-09-20 11:30:00.123456789'; ``` ```text 1992-09-20 11:30:00.123456+00 ``` ```sql SELECT TIMESTAMP WITH TIME ZONE '1992-09-20 11:30:00.123456789'; ``` ```text 1992-09-20 11:30:00.123456+00 ```
634
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Special Values
There are also three special date values that can be used on input: <div class="narrow_table"></div> | Input string | Valid types | Description | |:-------------|:---------------------------|:-----------------------------------------------| | `epoch` | `TIMESTAMP`, `TIMESTAMPTZ` | 1970-01-01 00:00:00+00 (Unix system time zero) | | `infinity` | `TIMESTAMP`, `TIMESTAMPTZ` | later than all other time stamps | | `-infinity` | `TIMESTAMP`, `TIMESTAMPTZ` | earlier than all other time stamps | The values `infinity` and `-infinity` are specially represented inside the system and will be displayed unchanged; but `epoch` is simply a notational shorthand that will be converted to the time stamp value when read. ```sql SELECT '-infinity'::TIMESTAMP, 'epoch'::TIMESTAMP, 'infinity'::TIMESTAMP; ``` <div class="narrow_table"></div> | Negative | Epoch | Positive | |:----------|:--------------------|:---------| | -infinity | 1970-01-01 00:00:00 | infinity |
261
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Timestamp Functions](#docs:sql:functions:timestamp).
14
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Time Zones
The `TIMESTAMPTZ` type can be binned into calendar and clock bins using a suitable extension. The built-in [ICU extension](#docs:extensions:icu) implements all the binning and arithmetic functions using the [International Components for Unicode](https://icu.unicode.org) time zone and calendar functions. To set the time zone to use, first load the ICU extension. The ICU extension comes pre-bundled with several DuckDB clients (including Python, R, JDBC, and ODBC), so this step can be skipped in those cases. In other cases you might first need to install and load the ICU extension. ```sql INSTALL icu; LOAD icu; ``` Next, use the `SET TimeZone` command: ```sql SET TimeZone = 'America/Los_Angeles'; ``` Time binning operations for `TIMESTAMPTZ` will then be implemented using the given time zone. A list of available time zones can be pulled from the `pg_timezone_names()` table function: ```sql SELECT name, abbrev, utc_offset FROM pg_timezone_names() ORDER BY name; ``` You can also find a reference table of [available time zones](#docs:sql:data_types:timezones).
266
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Calendars
The [ICU extension](#docs:extensions:icu) also supports non-Gregorian calendars using the `SET Calendar` command. Note that the `INSTALL` and `LOAD` steps are only required if the DuckDB client does not bundle the ICU extension. ```sql INSTALL icu; LOAD icu; SET Calendar = 'japanese'; ``` Time binning operations for `TIMESTAMPTZ` will then be implemented using the given calendar. In this example, the `era` part will now report the Japanese imperial era number. A list of available calendars can be pulled from the `icu_calendar_names()` table function: ```sql SELECT name FROM icu_calendar_names() ORDER BY 1; ```
154
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Settings
The current value of the `TimeZone` and `Calendar` settings are determined by ICU when it starts up. They can be queried from in the `duckdb_settings()` table function: ```sql SELECT * FROM duckdb_settings() WHERE name = 'TimeZone'; ``` | name | value | description | input_type | |----------|------------------|-----------------------|------------| | TimeZone | Europe/Amsterdam | The current time zone | VARCHAR | ```sql SELECT * FROM duckdb_settings() WHERE name = 'Calendar'; ``` | name | value | description | input_type | |----------|-----------|----------------------|------------| | Calendar | gregorian | The current calendar | VARCHAR |
158
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Time Zone Reference List
An up-to-date version of this list can be pulled from the `pg_timezone_names()` table function: ```sql SELECT name, abbrev FROM pg_timezone_names() ORDER BY name; ``` <div class="narrow_table"></div> | name | abbrev | |----------------------------------|----------------------------------| | ACT | ACT | | AET | AET | | AGT | AGT | | ART | ART | | AST | AST | | Africa/Abidjan | Iceland | | Africa/Accra | Iceland | | Africa/Addis_Ababa | EAT | | Africa/Algiers | Africa/Algiers | | Africa/Asmara | EAT | | Africa/Asmera | EAT | | Africa/Bamako | Iceland | | Africa/Bangui | Africa/Bangui | | Africa/Banjul | Iceland | | Africa/Bissau | Africa/Bissau | | Africa/Blantyre | CAT | | Africa/Brazzaville | Africa/Brazzaville | | Africa/Bujumbura | CAT | | Africa/Cairo | ART | | Africa/Casablanca | Africa/Casablanca | | Africa/Ceuta | Africa/Ceuta | | Africa/Conakry | Iceland | | Africa/Dakar | Iceland | | Africa/Dar_es_Salaam | EAT | | Africa/Djibouti | EAT | | Africa/Douala | Africa/Douala | | Africa/El_Aaiun | Africa/El_Aaiun | | Africa/Freetown | Iceland | | Africa/Gaborone | CAT | | Africa/Harare | CAT | | Africa/Johannesburg | Africa/Johannesburg | | Africa/Juba | Africa/Juba | | Africa/Kampala | EAT | | Africa/Khartoum | Africa/Khartoum | | Africa/Kigali | CAT | | Africa/Kinshasa | Africa/Kinshasa | | Africa/Lagos | Africa/Lagos | | Africa/Libreville | Africa/Libreville | | Africa/Lome | Iceland | | Africa/Luanda | Africa/Luanda | | Africa/Lubumbashi | CAT | | Africa/Lusaka | CAT | | Africa/Malabo | Africa/Malabo | | Africa/Maputo | CAT | | Africa/Maseru | Africa/Maseru | | Africa/Mbabane | Africa/Mbabane | | Africa/Mogadishu | EAT | | Africa/Monrovia | Africa/Monrovia | | Africa/Nairobi | EAT | | Africa/Ndjamena | Africa/Ndjamena | | Africa/Niamey | Africa/Niamey | | Africa/Nouakchott | Iceland | | Africa/Ouagadougou | Iceland | | Africa/Porto-Novo | Africa/Porto-Novo | | Africa/Sao_Tome | Africa/Sao_Tome | | Africa/Timbuktu | Iceland | | Africa/Tripoli | Libya | | Africa/Tunis | Africa/Tunis | | Africa/Windhoek | Africa/Windhoek | | America/Adak | America/Adak | | America/Anchorage | AST | | America/Anguilla | PRT | | America/Antigua | PRT | | America/Araguaina | America/Araguaina | | America/Argentina/Buenos_Aires | AGT | | America/Argentina/Catamarca | America/Argentina/Catamarca | | America/Argentina/ComodRivadavia | America/Argentina/ComodRivadavia | | America/Argentina/Cordoba | America/Argentina/Cordoba | | America/Argentina/Jujuy | America/Argentina/Jujuy | | America/Argentina/La_Rioja | America/Argentina/La_Rioja | | America/Argentina/Mendoza | America/Argentina/Mendoza | | America/Argentina/Rio_Gallegos | America/Argentina/Rio_Gallegos | | America/Argentina/Salta | America/Argentina/Salta | | America/Argentina/San_Juan | America/Argentina/San_Juan | | America/Argentina/San_Luis | America/Argentina/San_Luis | | America/Argentina/Tucuman | America/Argentina/Tucuman | | America/Argentina/Ushuaia | America/Argentina/Ushuaia | | America/Aruba | PRT | | America/Asuncion | America/Asuncion | | America/Atikokan | America/Atikokan | | America/Atka | America/Atka | | America/Bahia | America/Bahia | | America/Bahia_Banderas | America/Bahia_Banderas | | America/Barbados | America/Barbados | | America/Belem | America/Belem | | America/Belize | America/Belize | | America/Blanc-Sablon | PRT | | America/Boa_Vista | America/Boa_Vista | | America/Bogota | America/Bogota | | America/Boise | America/Boise | | America/Buenos_Aires | AGT | | America/Cambridge_Bay | America/Cambridge_Bay | | America/Campo_Grande | America/Campo_Grande | | America/Cancun | America/Cancun | | America/Caracas | America/Caracas | | America/Catamarca | America/Catamarca | | America/Cayenne | America/Cayenne | | America/Cayman | America/Cayman | | America/Chicago | CST | | America/Chihuahua | America/Chihuahua | | America/Ciudad_Juarez | America/Ciudad_Juarez | | America/Coral_Harbour | America/Coral_Harbour | | America/Cordoba | America/Cordoba | | America/Costa_Rica | America/Costa_Rica | | America/Creston | PNT | | America/Cuiaba | America/Cuiaba | | America/Curacao | PRT | | America/Danmarkshavn | America/Danmarkshavn | | America/Dawson | America/Dawson | | America/Dawson_Creek | America/Dawson_Creek | | America/Denver | Navajo | | America/Detroit | America/Detroit | | America/Dominica | PRT | | America/Edmonton | America/Edmonton | | America/Eirunepe | America/Eirunepe | | America/El_Salvador | America/El_Salvador | | America/Ensenada | America/Ensenada | | America/Fort_Nelson | America/Fort_Nelson | | America/Fort_Wayne | IET | | America/Fortaleza | America/Fortaleza | | America/Glace_Bay | America/Glace_Bay | | America/Godthab | America/Godthab | | America/Goose_Bay | America/Goose_Bay | | America/Grand_Turk | America/Grand_Turk | | America/Grenada | PRT | | America/Guadeloupe | PRT | | America/Guatemala | America/Guatemala | | America/Guayaquil | America/Guayaquil | | America/Guyana | America/Guyana | | America/Halifax | America/Halifax | | America/Havana | Cuba | | America/Hermosillo | America/Hermosillo | | America/Indiana/Indianapolis | IET | | America/Indiana/Knox | America/Indiana/Knox | | America/Indiana/Marengo | America/Indiana/Marengo | | America/Indiana/Petersburg | America/Indiana/Petersburg | | America/Indiana/Tell_City | America/Indiana/Tell_City | | America/Indiana/Vevay | America/Indiana/Vevay | | America/Indiana/Vincennes | America/Indiana/Vincennes | | America/Indiana/Winamac | America/Indiana/Winamac | | America/Indianapolis | IET | | America/Inuvik | America/Inuvik | | America/Iqaluit | America/Iqaluit | | America/Jamaica | Jamaica | | America/Jujuy | America/Jujuy | | America/Juneau | America/Juneau | | America/Kentucky/Louisville | America/Kentucky/Louisville | | America/Kentucky/Monticello | America/Kentucky/Monticello | | America/Knox_IN | America/Knox_IN | | America/Kralendijk | PRT | | America/La_Paz | America/La_Paz | | America/Lima | America/Lima | | America/Los_Angeles | PST | | America/Louisville | America/Louisville | | America/Lower_Princes | PRT | | America/Maceio | America/Maceio | | America/Managua | America/Managua | | America/Manaus | America/Manaus | | America/Marigot | PRT | | America/Martinique | America/Martinique | | America/Matamoros | America/Matamoros | | America/Mazatlan | America/Mazatlan | | America/Mendoza | America/Mendoza | | America/Menominee | America/Menominee | | America/Merida | America/Merida | | America/Metlakatla | America/Metlakatla | | America/Mexico_City | America/Mexico_City | | America/Miquelon | America/Miquelon | | America/Moncton | America/Moncton | | America/Monterrey | America/Monterrey | | America/Montevideo | America/Montevideo | | America/Montreal | America/Montreal | | America/Montserrat | PRT | | America/Nassau | America/Nassau | | America/New_York | America/New_York | | America/Nipigon | America/Nipigon | | America/Nome | America/Nome | | America/Noronha | America/Noronha | | America/North_Dakota/Beulah | America/North_Dakota/Beulah | | America/North_Dakota/Center | America/North_Dakota/Center | | America/North_Dakota/New_Salem | America/North_Dakota/New_Salem | | America/Nuuk | America/Nuuk | | America/Ojinaga | America/Ojinaga | | America/Panama | America/Panama | | America/Pangnirtung | America/Pangnirtung | | America/Paramaribo | America/Paramaribo | | America/Phoenix | PNT | | America/Port-au-Prince | America/Port-au-Prince | | America/Port_of_Spain | PRT | | America/Porto_Acre | America/Porto_Acre | | America/Porto_Velho | America/Porto_Velho | | America/Puerto_Rico | PRT | | America/Punta_Arenas | America/Punta_Arenas | | America/Rainy_River | America/Rainy_River | | America/Rankin_Inlet | America/Rankin_Inlet | | America/Recife | America/Recife | | America/Regina | America/Regina | | America/Resolute | America/Resolute | | America/Rio_Branco | America/Rio_Branco | | America/Rosario | America/Rosario | | America/Santa_Isabel | America/Santa_Isabel | | America/Santarem | America/Santarem | | America/Santiago | America/Santiago | | America/Santo_Domingo | America/Santo_Domingo | | America/Sao_Paulo | BET | | America/Scoresbysund | America/Scoresbysund | | America/Shiprock | Navajo | | America/Sitka | America/Sitka | | America/St_Barthelemy | PRT | | America/St_Johns | CNT | | America/St_Kitts | PRT | | America/St_Lucia | PRT | | America/St_Thomas | PRT | | America/St_Vincent | PRT | | America/Swift_Current | America/Swift_Current | | America/Tegucigalpa | America/Tegucigalpa | | America/Thule | America/Thule | | America/Thunder_Bay | America/Thunder_Bay | | America/Tijuana | America/Tijuana | | America/Toronto | America/Toronto | | America/Tortola | PRT | | America/Vancouver | America/Vancouver | | America/Virgin | PRT | | America/Whitehorse | America/Whitehorse | | America/Winnipeg | America/Winnipeg | | America/Yakutat | America/Yakutat | | America/Yellowknife | America/Yellowknife | | Antarctica/Casey | Antarctica/Casey | | Antarctica/Davis | Antarctica/Davis | | Antarctica/DumontDUrville | Antarctica/DumontDUrville | | Antarctica/Macquarie | Antarctica/Macquarie | | Antarctica/Mawson | Antarctica/Mawson | | Antarctica/McMurdo | NZ | | Antarctica/Palmer | Antarctica/Palmer | | Antarctica/Rothera | Antarctica/Rothera | | Antarctica/South_Pole | NZ | | Antarctica/Syowa | Antarctica/Syowa | | Antarctica/Troll | Antarctica/Troll | | Antarctica/Vostok | Antarctica/Vostok | | Arctic/Longyearbyen | Arctic/Longyearbyen | | Asia/Aden | Asia/Aden | | Asia/Almaty | Asia/Almaty | | Asia/Amman | Asia/Amman | | Asia/Anadyr | Asia/Anadyr | | Asia/Aqtau | Asia/Aqtau | | Asia/Aqtobe | Asia/Aqtobe | | Asia/Ashgabat | Asia/Ashgabat | | Asia/Ashkhabad | Asia/Ashkhabad | | Asia/Atyrau | Asia/Atyrau | | Asia/Baghdad | Asia/Baghdad | | Asia/Bahrain | Asia/Bahrain | | Asia/Baku | Asia/Baku | | Asia/Bangkok | Asia/Bangkok | | Asia/Barnaul | Asia/Barnaul | | Asia/Beirut | Asia/Beirut | | Asia/Bishkek | Asia/Bishkek | | Asia/Brunei | Asia/Brunei | | Asia/Calcutta | IST | | Asia/Chita | Asia/Chita | | Asia/Choibalsan | Asia/Choibalsan | | Asia/Chongqing | CTT | | Asia/Chungking | CTT | | Asia/Colombo | Asia/Colombo | | Asia/Dacca | BST | | Asia/Damascus | Asia/Damascus | | Asia/Dhaka | BST | | Asia/Dili | Asia/Dili | | Asia/Dubai | Asia/Dubai | | Asia/Dushanbe | Asia/Dushanbe | | Asia/Famagusta | Asia/Famagusta | | Asia/Gaza | Asia/Gaza | | Asia/Harbin | CTT | | Asia/Hebron | Asia/Hebron | | Asia/Ho_Chi_Minh | VST | | Asia/Hong_Kong | Hongkong | | Asia/Hovd | Asia/Hovd | | Asia/Irkutsk | Asia/Irkutsk | | Asia/Istanbul | Turkey | | Asia/Jakarta | Asia/Jakarta | | Asia/Jayapura | Asia/Jayapura | | Asia/Jerusalem | Israel | | Asia/Kabul | Asia/Kabul | | Asia/Kamchatka | Asia/Kamchatka | | Asia/Karachi | PLT | | Asia/Kashgar | Asia/Kashgar | | Asia/Kathmandu | Asia/Kathmandu | | Asia/Katmandu | Asia/Katmandu | | Asia/Khandyga | Asia/Khandyga | | Asia/Kolkata | IST | | Asia/Krasnoyarsk | Asia/Krasnoyarsk | | Asia/Kuala_Lumpur | Singapore | | Asia/Kuching | Asia/Kuching | | Asia/Kuwait | Asia/Kuwait | | Asia/Macao | Asia/Macao | | Asia/Macau | Asia/Macau | | Asia/Magadan | Asia/Magadan | | Asia/Makassar | Asia/Makassar | | Asia/Manila | Asia/Manila | | Asia/Muscat | Asia/Muscat | | Asia/Nicosia | Asia/Nicosia | | Asia/Novokuznetsk | Asia/Novokuznetsk | | Asia/Novosibirsk | Asia/Novosibirsk | | Asia/Omsk | Asia/Omsk | | Asia/Oral | Asia/Oral | | Asia/Phnom_Penh | Asia/Phnom_Penh | | Asia/Pontianak | Asia/Pontianak | | Asia/Pyongyang | Asia/Pyongyang | | Asia/Qatar | Asia/Qatar | | Asia/Qostanay | Asia/Qostanay | | Asia/Qyzylorda | Asia/Qyzylorda | | Asia/Rangoon | Asia/Rangoon | | Asia/Riyadh | Asia/Riyadh | | Asia/Saigon | VST | | Asia/Sakhalin | Asia/Sakhalin | | Asia/Samarkand | Asia/Samarkand | | Asia/Seoul | ROK | | Asia/Shanghai | CTT | | Asia/Singapore | Singapore | | Asia/Srednekolymsk | Asia/Srednekolymsk | | Asia/Taipei | ROC | | Asia/Tashkent | Asia/Tashkent | | Asia/Tbilisi | Asia/Tbilisi | | Asia/Tehran | Iran | | Asia/Tel_Aviv | Israel | | Asia/Thimbu | Asia/Thimbu | | Asia/Thimphu | Asia/Thimphu | | Asia/Tokyo | JST | | Asia/Tomsk | Asia/Tomsk | | Asia/Ujung_Pandang | Asia/Ujung_Pandang | | Asia/Ulaanbaatar | Asia/Ulaanbaatar | | Asia/Ulan_Bator | Asia/Ulan_Bator | | Asia/Urumqi | Asia/Urumqi | | Asia/Ust-Nera | Asia/Ust-Nera | | Asia/Vientiane | Asia/Vientiane | | Asia/Vladivostok | Asia/Vladivostok | | Asia/Yakutsk | Asia/Yakutsk | | Asia/Yangon | Asia/Yangon | | Asia/Yekaterinburg | Asia/Yekaterinburg | | Asia/Yerevan | NET | | Atlantic/Azores | Atlantic/Azores | | Atlantic/Bermuda | Atlantic/Bermuda | | Atlantic/Canary | Atlantic/Canary | | Atlantic/Cape_Verde | Atlantic/Cape_Verde | | Atlantic/Faeroe | Atlantic/Faeroe | | Atlantic/Faroe | Atlantic/Faroe | | Atlantic/Jan_Mayen | Atlantic/Jan_Mayen | | Atlantic/Madeira | Atlantic/Madeira | | Atlantic/Reykjavik | Iceland | | Atlantic/South_Georgia | Atlantic/South_Georgia | | Atlantic/St_Helena | Iceland | | Atlantic/Stanley | Atlantic/Stanley | | Australia/ACT | AET | | Australia/Adelaide | Australia/Adelaide | | Australia/Brisbane | Australia/Brisbane | | Australia/Broken_Hill | Australia/Broken_Hill | | Australia/Canberra | AET | | Australia/Currie | Australia/Currie | | Australia/Darwin | ACT | | Australia/Eucla | Australia/Eucla | | Australia/Hobart | Australia/Hobart | | Australia/LHI | Australia/LHI | | Australia/Lindeman | Australia/Lindeman | | Australia/Lord_Howe | Australia/Lord_Howe | | Australia/Melbourne | Australia/Melbourne | | Australia/NSW | AET | | Australia/North | ACT | | Australia/Perth | Australia/Perth | | Australia/Queensland | Australia/Queensland | | Australia/South | Australia/South | | Australia/Sydney | AET | | Australia/Tasmania | Australia/Tasmania | | Australia/Victoria | Australia/Victoria | | Australia/West | Australia/West | | Australia/Yancowinna | Australia/Yancowinna | | BET | BET | | BST | BST | | Brazil/Acre | Brazil/Acre | | Brazil/DeNoronha | Brazil/DeNoronha | | Brazil/East | BET | | Brazil/West | Brazil/West | | CAT | CAT | | CET | CET | | CNT | CNT | | CST | CST | | CST6CDT | CST6CDT | | CTT | CTT | | Canada/Atlantic | Canada/Atlantic | | Canada/Central | Canada/Central | | Canada/East-Saskatchewan | Canada/East-Saskatchewan | | Canada/Eastern | Canada/Eastern | | Canada/Mountain | Canada/Mountain | | Canada/Newfoundland | CNT | | Canada/Pacific | Canada/Pacific | | Canada/Saskatchewan | Canada/Saskatchewan | | Canada/Yukon | Canada/Yukon | | Chile/Continental | Chile/Continental | | Chile/EasterIsland | Chile/EasterIsland | | Cuba | Cuba | | EAT | EAT | | ECT | ECT | | EET | EET | | EST | EST | | EST5EDT | EST5EDT | | Egypt | ART | | Eire | Eire | | Etc/GMT | GMT | | Etc/GMT+0 | GMT | | Etc/GMT+1 | Etc/GMT+1 | | Etc/GMT+10 | Etc/GMT+10 | | Etc/GMT+11 | Etc/GMT+11 | | Etc/GMT+12 | Etc/GMT+12 | | Etc/GMT+2 | Etc/GMT+2 | | Etc/GMT+3 | Etc/GMT+3 | | Etc/GMT+4 | Etc/GMT+4 | | Etc/GMT+5 | Etc/GMT+5 | | Etc/GMT+6 | Etc/GMT+6 | | Etc/GMT+7 | Etc/GMT+7 | | Etc/GMT+8 | Etc/GMT+8 | | Etc/GMT+9 | Etc/GMT+9 | | Etc/GMT-0 | GMT | | Etc/GMT-1 | Etc/GMT-1 | | Etc/GMT-10 | Etc/GMT-10 | | Etc/GMT-11 | Etc/GMT-11 | | Etc/GMT-12 | Etc/GMT-12 | | Etc/GMT-13 | Etc/GMT-13 | | Etc/GMT-14 | Etc/GMT-14 | | Etc/GMT-2 | Etc/GMT-2 | | Etc/GMT-3 | Etc/GMT-3 | | Etc/GMT-4 | Etc/GMT-4 | | Etc/GMT-5 | Etc/GMT-5 | | Etc/GMT-6 | Etc/GMT-6 | | Etc/GMT-7 | Etc/GMT-7 | | Etc/GMT-8 | Etc/GMT-8 | | Etc/GMT-9 | Etc/GMT-9 | | Etc/GMT0 | GMT | | Etc/Greenwich | GMT | | Etc/UCT | UCT | | Etc/UTC | UCT | | Etc/Universal | UCT | | Etc/Zulu | UCT | | Europe/Amsterdam | Europe/Amsterdam | | Europe/Andorra | Europe/Andorra | | Europe/Astrakhan | Europe/Astrakhan | | Europe/Athens | Europe/Athens | | Europe/Belfast | GB | | Europe/Belgrade | Europe/Belgrade | | Europe/Berlin | Europe/Berlin | | Europe/Bratislava | Europe/Bratislava | | Europe/Brussels | Europe/Brussels | | Europe/Bucharest | Europe/Bucharest | | Europe/Budapest | Europe/Budapest | | Europe/Busingen | Europe/Busingen | | Europe/Chisinau | Europe/Chisinau | | Europe/Copenhagen | Europe/Copenhagen | | Europe/Dublin | Eire | | Europe/Gibraltar | Europe/Gibraltar | | Europe/Guernsey | GB | | Europe/Helsinki | Europe/Helsinki | | Europe/Isle_of_Man | GB | | Europe/Istanbul | Turkey | | Europe/Jersey | GB | | Europe/Kaliningrad | Europe/Kaliningrad | | Europe/Kiev | Europe/Kiev | | Europe/Kirov | Europe/Kirov | | Europe/Kyiv | Europe/Kyiv | | Europe/Lisbon | Portugal | | Europe/Ljubljana | Europe/Ljubljana | | Europe/London | GB | | Europe/Luxembourg | Europe/Luxembourg | | Europe/Madrid | Europe/Madrid | | Europe/Malta | Europe/Malta | | Europe/Mariehamn | Europe/Mariehamn | | Europe/Minsk | Europe/Minsk | | Europe/Monaco | ECT | | Europe/Moscow | W-SU | | Europe/Nicosia | Europe/Nicosia | | Europe/Oslo | Europe/Oslo | | Europe/Paris | ECT | | Europe/Podgorica | Europe/Podgorica | | Europe/Prague | Europe/Prague | | Europe/Riga | Europe/Riga | | Europe/Rome | Europe/Rome | | Europe/Samara | Europe/Samara | | Europe/San_Marino | Europe/San_Marino | | Europe/Sarajevo | Europe/Sarajevo | | Europe/Saratov | Europe/Saratov | | Europe/Simferopol | Europe/Simferopol | | Europe/Skopje | Europe/Skopje | | Europe/Sofia | Europe/Sofia | | Europe/Stockholm | Europe/Stockholm | | Europe/Tallinn | Europe/Tallinn | | Europe/Tirane | Europe/Tirane | | Europe/Tiraspol | Europe/Tiraspol | | Europe/Ulyanovsk | Europe/Ulyanovsk | | Europe/Uzhgorod | Europe/Uzhgorod | | Europe/Vaduz | Europe/Vaduz | | Europe/Vatican | Europe/Vatican | | Europe/Vienna | Europe/Vienna | | Europe/Vilnius | Europe/Vilnius | | Europe/Volgograd | Europe/Volgograd | | Europe/Warsaw | Poland | | Europe/Zagreb | Europe/Zagreb | | Europe/Zaporozhye | Europe/Zaporozhye | | Europe/Zurich | Europe/Zurich | | Factory | Factory | | GB | GB | | GB-Eire | GB | | GMT | GMT | | GMT+0 | GMT | | GMT-0 | GMT | | GMT0 | GMT | | Greenwich | GMT | | HST | HST | | Hongkong | Hongkong | | IET | IET | | IST | IST | | Iceland | Iceland | | Indian/Antananarivo | EAT | | Indian/Chagos | Indian/Chagos | | Indian/Christmas | Indian/Christmas | | Indian/Cocos | Indian/Cocos | | Indian/Comoro | EAT | | Indian/Kerguelen | Indian/Kerguelen | | Indian/Mahe | Indian/Mahe | | Indian/Maldives | Indian/Maldives | | Indian/Mauritius | Indian/Mauritius | | Indian/Mayotte | EAT | | Indian/Reunion | Indian/Reunion | | Iran | Iran | | Israel | Israel | | JST | JST | | Jamaica | Jamaica | | Japan | JST | | Kwajalein | Kwajalein | | Libya | Libya | | MET | MET | | MIT | MIT | | MST | MST | | MST7MDT | MST7MDT | | Mexico/BajaNorte | Mexico/BajaNorte | | Mexico/BajaSur | Mexico/BajaSur | | Mexico/General | Mexico/General | | NET | NET | | NST | NZ | | NZ | NZ | | NZ-CHAT | NZ-CHAT | | Navajo | Navajo | | PLT | PLT | | PNT | PNT | | PRC | CTT | | PRT | PRT | | PST | PST | | PST8PDT | PST8PDT | | Pacific/Apia | MIT | | Pacific/Auckland | NZ | | Pacific/Bougainville | Pacific/Bougainville | | Pacific/Chatham | NZ-CHAT | | Pacific/Chuuk | Pacific/Chuuk | | Pacific/Easter | Pacific/Easter | | Pacific/Efate | Pacific/Efate | | Pacific/Enderbury | Pacific/Enderbury | | Pacific/Fakaofo | Pacific/Fakaofo | | Pacific/Fiji | Pacific/Fiji | | Pacific/Funafuti | Pacific/Funafuti | | Pacific/Galapagos | Pacific/Galapagos | | Pacific/Gambier | Pacific/Gambier | | Pacific/Guadalcanal | SST | | Pacific/Guam | Pacific/Guam | | Pacific/Honolulu | Pacific/Honolulu | | Pacific/Johnston | Pacific/Johnston | | Pacific/Kanton | Pacific/Kanton | | Pacific/Kiritimati | Pacific/Kiritimati | | Pacific/Kosrae | Pacific/Kosrae | | Pacific/Kwajalein | Kwajalein | | Pacific/Majuro | Pacific/Majuro | | Pacific/Marquesas | Pacific/Marquesas | | Pacific/Midway | Pacific/Midway | | Pacific/Nauru | Pacific/Nauru | | Pacific/Niue | Pacific/Niue | | Pacific/Norfolk | Pacific/Norfolk | | Pacific/Noumea | Pacific/Noumea | | Pacific/Pago_Pago | Pacific/Pago_Pago | | Pacific/Palau | Pacific/Palau | | Pacific/Pitcairn | Pacific/Pitcairn | | Pacific/Pohnpei | SST | | Pacific/Ponape | SST | | Pacific/Port_Moresby | Pacific/Port_Moresby | | Pacific/Rarotonga | Pacific/Rarotonga | | Pacific/Saipan | Pacific/Saipan | | Pacific/Samoa | Pacific/Samoa | | Pacific/Tahiti | Pacific/Tahiti | | Pacific/Tarawa | Pacific/Tarawa | | Pacific/Tongatapu | Pacific/Tongatapu | | Pacific/Truk | Pacific/Truk | | Pacific/Wake | Pacific/Wake | | Pacific/Wallis | Pacific/Wallis | | Pacific/Yap | Pacific/Yap | | Poland | Poland | | Portugal | Portugal | | ROC | ROC | | ROK | ROK | | SST | SST | | Singapore | Singapore | | SystemV/AST4 | SystemV/AST4 | | SystemV/AST4ADT | SystemV/AST4ADT | | SystemV/CST6 | SystemV/CST6 | | SystemV/CST6CDT | SystemV/CST6CDT | | SystemV/EST5 | SystemV/EST5 | | SystemV/EST5EDT | SystemV/EST5EDT | | SystemV/HST10 | SystemV/HST10 | | SystemV/MST7 | SystemV/MST7 | | SystemV/MST7MDT | SystemV/MST7MDT | | SystemV/PST8 | SystemV/PST8 | | SystemV/PST8PDT | SystemV/PST8PDT | | SystemV/YST9 | SystemV/YST9 | | SystemV/YST9YDT | SystemV/YST9YDT | | Turkey | Turkey | | UCT | UCT | | US/Alaska | AST | | US/Aleutian | US/Aleutian | | US/Arizona | PNT | | US/Central | CST | | US/East-Indiana | IET | | US/Eastern | US/Eastern | | US/Hawaii | US/Hawaii | | US/Indiana-Starke | US/Indiana-Starke | | US/Michigan | US/Michigan | | US/Mountain | Navajo | | US/Pacific | PST | | US/Pacific-New | PST | | US/Samoa | US/Samoa | | UTC | UCT | | Universal | UCT | | VST | VST | | W-SU | W-SU | | WET | WET | | Zulu | UCT |
8,391
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Union Type
A `UNION` *type* (not to be confused with the SQL [`UNION` operator](#docs:sql:query_syntax:setops::union-all-by-name)) is a nested type capable of holding one of multiple “alternative” values, much like the `union` in C. The main difference being that these `UNION` types are *tagged unions* and thus always carry a discriminator “tag” which signals which alternative it is currently holding, even if the inner value itself is null. `UNION` types are thus more similar to C++17's `std::variant`, Rust's `Enum` or the “sum type” present in most functional languages. `UNION` types must always have at least one member, and while they can contain multiple members of the same type, the tag names must be unique. `UNION` types can have at most 256 members. Under the hood, `UNION` types are implemented on top of `STRUCT` types, and simply keep the “tag” as the first entry. `UNION` values can be created with the [`union_value(tag := expr)`](#docs:sql:functions:union) function or by [casting from a member type](#::casting-to-unions).
264
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Example
Create a table with a `UNION` column: ```sql CREATE TABLE tbl1 (u UNION(num INTEGER, str VARCHAR)); INSERT INTO tbl1 values (1), ('two'), (union_value(str := 'three')); ``` Any type can be implicitly cast to a `UNION` containing the type. Any `UNION` can also be implicitly cast to another `UNION` if the source `UNION` members are a subset of the target's (if the cast is unambiguous). `UNION` uses the member types' `VARCHAR` cast functions when casting to `VARCHAR`: ```sql SELECT u FROM tbl1; ``` | u | |-------| | 1 | | two | | three | Select all the `str` members: ```sql SELECT union_extract(u, 'str') AS str FROM tbl1; ``` | str | |-------| | NULL | | two | | three | Alternatively, you can use 'dot syntax' similarly to [`STRUCT`s](#docs:sql:data_types:struct). ```sql SELECT u.str FROM tbl1; ``` | str | |-------| | NULL | | two | | three | Select the currently active tag from the `UNION` as an `ENUM`. ```sql SELECT union_tag(u) AS t FROM tbl1; ``` | t | |-----| | num | | str | | str |
316
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Union Casts
Compared to other nested types, `UNION`s allow a set of implicit casts to facilitate unintrusive and natural usage when working with their members as “subtypes”. However, these casts have been designed with two principles in mind, to avoid ambiguity and to avoid casts that could lead to loss of information. This prevents `UNION`s from being completely “transparent”, while still allowing `UNION` types to have a “supertype” relationship with their members. Thus `UNION` types can't be implicitly cast to any of their member types in general, since the information in the other members not matching the target type would be “lost”. If you want to coerce a `UNION` into one of its members, you should use the `union_extract` function explicitly instead. The only exception to this is when casting a `UNION` to `VARCHAR`, in which case the members will all use their corresponding `VARCHAR` casts. Since everything can be cast to `VARCHAR`, this is “safe” in a sense. #### Casting to Unions {#docs:sql:data_types:union::casting-to-unions} A type can always be implicitly cast to a `UNION` if it can be implicitly cast to one of the `UNION` member types. * If there are multiple candidates, the built in implicit casting priority rules determine the target type. For example, a `FLOAT` → `UNION(i INTEGER, v VARCHAR)` cast will always cast the `FLOAT` to the `INTEGER` member before `VARCHAR`. * If the cast still is ambiguous, i.e., there are multiple candidates with the same implicit casting priority, an error is raised. This usually happens when the `UNION` contains multiple members of the same type, e.g., a `FLOAT` → `UNION(i INTEGER, num INTEGER)` is always ambiguous. So how do we disambiguate if we want to create a `UNION` with multiple members of the same type? By using the `union_value` function, which takes a keyword argument specifying the tag. For example, `union_value(num := 2::INTEGER)` will create a `UNION` with a single member of type `INTEGER` with the tag `num`. This can then be used to disambiguate in an explicit (or implicit, read on below!) `UNION` to `UNION` cast, like `CAST(union_value(b := 2) AS UNION(a INTEGER, b INTEGER))`. #### Casting between Unions {#docs:sql:data_types:union::casting-between-unions} `UNION` types can be cast between each other if the source type is a “subset” of the target type. In other words, all the tags in the source `UNION` must be present in the target `UNION`, and all the types of the matching tags must be implicitly castable between source and target. In essence, this means that `UNION` types are covariant with respect to their members. <div class="narrow_table"></div> | Ok | Source | Target | Comments | |----|------------------------|------------------------|----------------------------------------| | ✅ | `UNION(a A, b B)` | `UNION(a A, b B, c C)` | | | ✅ | `UNION(a A, b B)` | `UNION(a A, b C)` | if `B` can be implicitly cast to `C` | | ❌ | `UNION(a A, b B, c C)` | `UNION(a A, b B)` | | | ❌ | `UNION(a A, b B)` | `UNION(a A, b C)` | if `B` can't be implicitly cast to `C` | | ❌ | `UNION(A, B, D)` | `UNION(A, B, C)` | |
829
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Comparison and Sorting
Since `UNION` types are implemented on top of `STRUCT` types internally, they can be used with all the comparison operators as well as in both `WHERE` and `HAVING` clauses with [the same semantics as `STRUCT`s](#docs:sql:data_types:struct::comparison-operators). The “tag” is always stored as the first struct entry, which ensures that the `UNION` types are compared and ordered by “tag” first.
95
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Functions
See [Union Functions](#docs:sql:functions:union).
14
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Typecasting
Typecasting is an operation that converts a value in one particular data type to the closest corresponding value in another data type. Like other SQL engines, DuckDB supports both implicit and explicit typecasting.
39
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Explicit Casting
Explicit typecasting is performed by using a `CAST` expression. For example, `CAST(col AS VARCHAR)` or `col::VARCHAR` explicitly cast the column `col` to `VARCHAR`. See the [cast page](#docs:sql:expressions:cast) for more information.
59
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Implicit Casting
In many situations, the system will add casts by itself. This is called *implicit* casting. This happens for example when a function is called with an argument that does not match the type of the function, but can be casted to the desired type. Consider the function `sin(DOUBLE)`. This function takes as input argument a column of type `DOUBLE`, however, it can be called with an integer as well: `sin(1)`. The integer is converted into a double before being passed to the `sin` function. Implicit casts can only be added for a number of type combinations, and is generally only possible when the cast cannot fail. For example, an implicit cast can be added from `INTEGER` to `DOUBLE` – but not from `DOUBLE` to `INTEGER`.
164
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Data Types
Casting Operations Matrix
Values of a particular data type cannot always be cast to any arbitrary target data type. The only exception is the `NULL` value – which can always be converted between types. The following matrix describes which conversions are supported. When implicit casting is allowed, it implies that explicit casting is also possible. ![Typecasting matrix](../images/typecasting-matrix.png) Even though a casting operation is supported based on the source and target data type, it does not necessarily mean the cast operation will succeed at runtime. > **Deprecated. ** Prior to version 0.10.0, DuckDB allowed any type to be implicitly cast to `VARCHAR` during function binding. > Version 0.10.0 introduced a [breaking change which no longer allows implicit casts to `VARCHAR`](https://duckdb.org/2024/02/13/announcing-duckdb-0100#breaking-sql-changes). > The [`old_implicit_casting` configuration option](#docs:configuration:pragmas::implicit-casting-to-varchar) setting can be used to revert to the old behavior. > However, please note that this flag will be deprecated in the future. #### Lossy Casts {#docs:sql:data_types:typecasting::lossy-casts} Casting operations that result in loss of precision are allowed. For example, it is possible to explicitly cast a numeric type with fractional digits like `DECIMAL`, `FLOAT` or `DOUBLE` to an integral type like `INTEGER`. The number will be rounded. ```sql SELECT CAST(3.5 AS INTEGER); ``` #### Overflows {#docs:sql:data_types:typecasting::overflows} Casting operations that would result in a value overflow throw an error. For example, the value `999` is too large to be represented by the `TINYINT` data type. Therefore, an attempt to cast that value to that type results in a runtime error: ```sql SELECT CAST(999 AS TINYINT); ``` ```console Conversion Error: Type INT32 with value 999 can't be cast because the value is out of range for the destination type INT8 ``` So even though the cast operation from `INTEGER` to `TINYINT` is supported, it is not possible for this particular value. [TRY_CAST](#docs:sql:expressions:cast) can be used to convert the value into `NULL` instead of throwing an error. #### Varchar {#docs:sql:data_types:typecasting::varchar} The [`VARCHAR`](#docs:sql:data_types:text) type acts as a univeral target: any arbitrary value of any arbitrary type can always be cast to the `VARCHAR` type. This type is also used for displaying values in the shell. ```sql SELECT CAST(42.5 AS VARCHAR); ``` Casting from `VARCHAR` to another data type is supported, but can raise an error at runtime if DuckDB cannot parse and convert the provided text to the target data type. ```sql SELECT CAST('NotANumber' AS INTEGER); ``` In general, casting to `VARCHAR` is a lossless operation and any type can be cast back to the original type after being converted into text. ```sql SELECT CAST(CAST([1, 2, 3] AS VARCHAR) AS INTEGER[]); ``` #### Literal Types {#docs:sql:data_types:typecasting::literal-types} Integer literals (such as `42`) and string literals (such as `'string'`) have special implicit casting rules. See the [literal types page](#docs:sql:data_types:literal_types) for more information. #### Lists / Arrays {#docs:sql:data_types:typecasting::lists--arrays} Lists can be explicitly cast to other lists using the same casting rules. The cast is applied to the children of the list. For example, if we convert a `INTEGER[]` list to a `VARCHAR[]` list, the child `INTEGER` elements are individually cast to `VARCHAR` and a new list is constructed. ```sql SELECT CAST([1, 2, 3] AS VARCHAR[]); ``` #### Arrays {#docs:sql:data_types:typecasting::arrays} Arrays follow the same casting rules as lists. In addition, arrays can be implicitly cast to lists of the same type. For example, an `INTEGER[3]` array can be implicitly cast to an `INTEGER[]` list. #### Structs {#docs:sql:data_types:typecasting::structs} Structs can be cast to other structs as long as the names of the child elements match. ```sql SELECT CAST({'a': 42} AS STRUCT(a VARCHAR)); ``` The names of the struct can also be in a different order. The fields of the struct will be reshuffled based on the names of the structs. ```sql SELECT CAST({'a': 42, 'b': 84} AS STRUCT(b VARCHAR, a VARCHAR)); ``` #### Unions {#docs:sql:data_types:typecasting::unions} Union casting rules can be found on the [`UNION type page`](#docs:sql:data_types:union::casting-to-unions).
1,091
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Expressions
Expressions
An expression is a combination of values, operators and functions. Expressions are highly composable, and range from very simple to arbitrarily complex. They can be found in many different parts of SQL statements. In this section, we provide the different types of operators and functions that can be used within expressions.
60
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Expressions
CASE Statement
<div id="rrdiagram"></div> The `CASE` statement performs a switch based on a condition. The basic form is identical to the ternary condition used in many programming languages (` CASE WHEN cond THEN a ELSE b END` is equivalent to `cond ? a : b`). With a single condition this can be expressed with `IF(cond, a, b)`. ```sql CREATE OR REPLACE TABLE integers AS SELECT unnest([1, 2, 3]) AS i; SELECT i, CASE WHEN i > 2 THEN 1 ELSE 0 END AS test FROM integers; ``` | i | test | |--:|-----:| | 1 | 0 | | 2 | 0 | | 3 | 1 | This is equivalent to: ```sql SELECT i, IF(i > 2, 1, 0) AS test FROM integers; ``` The `WHEN cond THEN expr` part of the `CASE` statement can be chained, whenever any of the conditions returns true for a single tuple, the corresponding expression is evaluated and returned. ```sql CREATE OR REPLACE TABLE integers AS SELECT unnest([1, 2, 3]) AS i; SELECT i, CASE WHEN i = 1 THEN 10 WHEN i = 2 THEN 20 ELSE 0 END AS test FROM integers; ``` | i | test | |--:|-----:| | 1 | 10 | | 2 | 20 | | 3 | 0 | The `ELSE` part of the `CASE` statement is optional. If no else statement is provided and none of the conditions match, the `CASE` statement will return `NULL`. ```sql CREATE OR REPLACE TABLE integers AS SELECT unnest([1, 2, 3]) AS i; SELECT i, CASE WHEN i = 1 THEN 10 END AS test FROM integers; ``` | i | test | |--:|-----:| | 1 | 10 | | 2 | NULL | | 3 | NULL | It is also possible to provide an individual expression after the `CASE` but before the `WHEN`. When this is done, the `CASE` statement is effectively transformed into a switch statement. ```sql CREATE OR REPLACE TABLE integers AS SELECT unnest([1, 2, 3]) AS i; SELECT i, CASE i WHEN 1 THEN 10 WHEN 2 THEN 20 WHEN 3 THEN 30 END AS test FROM integers; ``` | i | test | |--:|-----:| | 1 | 10 | | 2 | 20 | | 3 | 30 | This is equivalent to: ```sql SELECT i, CASE WHEN i = 1 THEN 10 WHEN i = 2 THEN 20 WHEN i = 3 THEN 30 END AS test FROM integers; ```
617
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Expressions
Casting
<div id="rrdiagram"></div> Casting refers to the operation of converting a value in a particular data type to the corresponding value in another data type. Casting can occur either implicitly or explicitly. The syntax described here performs an explicit cast. More information on casting can be found on the [typecasting page](#docs:sql:data_types:typecasting).
75
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Expressions
Explicit Casting
The standard SQL syntax for explicit casting is `CAST(expr AS TYPENAME)`, where `TYPENAME` is a name (or alias) of one of [DuckDB's data types](#docs:sql:data_types:overview). DuckDB also supports the shorthand `expr::TYPENAME`, which is also present in PostgreSQL. ```sql SELECT CAST(i AS VARCHAR) AS i FROM generate_series(1, 3) tbl(i); ``` | i | |---| | 1 | | 2 | | 3 | ```sql SELECT i::DOUBLE AS i FROM generate_series(1, 3) tbl(i); ``` | i | |----:| | 1.0 | | 2.0 | | 3.0 | #### Casting Rules {#docs:sql:expressions:cast::casting-rules} Not all casts are possible. For example, it is not possible to convert an `INTEGER` to a `DATE`. Casts may also throw errors when the cast could not be successfully performed. For example, trying to cast the string `'hello'` to an `INTEGER` will result in an error being thrown. ```sql SELECT CAST('hello' AS INTEGER); ``` ```console Conversion Error: Could not convert string 'hello' to INT32 ``` The exact behavior of the cast depends on the source and destination types. For example, when casting from `VARCHAR` to any other type, the string will be attempted to be converted. #### `TRY_CAST` {#docs:sql:expressions:cast::try_cast} `TRY_CAST` can be used when the preferred behavior is not to throw an error, but instead to return a `NULL` value. `TRY_CAST` will never throw an error, and will instead return `NULL` if a cast is not possible. ```sql SELECT TRY_CAST('hello' AS INTEGER) AS i; ``` | i | |------| | NULL |
421
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Expressions
Collations
<div id="rrdiagram"></div> Collations provide rules for how text should be sorted or compared in the execution engine. Collations are useful for localization, as the rules for how text should be ordered are different for different languages or for different countries. These orderings are often incompatible with one another. For example, in English the letter `y` comes between `x` and `z`. However, in Lithuanian the letter `y` comes between the `i` and `j`. For that reason, different collations are supported. The user must choose which collation they want to use when performing sorting and comparison operations. By default, the `BINARY` collation is used. That means that strings are ordered and compared based only on their binary contents. This makes sense for standard ASCII characters (i.e., the letters A-Z and numbers 0-9), but generally does not make much sense for special unicode characters. It is, however, by far the fastest method of performing ordering and comparisons. Hence it is recommended to stick with the `BINARY` collation unless required otherwise. > **Warning. ** Collation support in DuckDB has [some known limitations](https://github.com/duckdb/duckdb/issues?q=is%3Aissue+is%3Aopen+collation+) and has [several planned improvements](https://github.com/duckdb/duckdb/issues/604).
296
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Expressions
Using Collations
In the stand-alone installation of DuckDB three collations are included: `NOCASE`, `NOACCENT` and `NFC`. The `NOCASE` collation compares characters as equal regardless of their casing. The `NOACCENT` collation compares characters as equal regardless of their accents. The `NFC` collation performs NFC-normalized comparisons, see [Unicode normalization](https://en.wikipedia.org/wiki/Unicode_equivalence#Normalization) for more information. ```sql SELECT 'hello' = 'hElLO'; ``` ```text false ``` ```sql SELECT 'hello' COLLATE NOCASE = 'hElLO'; ``` ```text true ``` ```sql SELECT 'hello' = 'hëllo'; ``` ```text false ``` ```sql SELECT 'hello' COLLATE NOACCENT = 'hëllo'; ``` ```text true ``` Collations can be combined by chaining them using the dot operator. Note, however, that not all collations can be combined together. In general, the `NOCASE` collation can be combined with any other collator, but most other collations cannot be combined. ```sql SELECT 'hello' COLLATE NOCASE = 'hElLÖ'; ``` ```text false ``` ```sql SELECT 'hello' COLLATE NOACCENT = 'hElLÖ'; ``` ```text false ``` ```sql SELECT 'hello' COLLATE NOCASE.NOACCENT = 'hElLÖ'; ``` ```text true ```
337
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Expressions
Default Collations
The collations we have seen so far have all been specified *per expression*. It is also possible to specify a default collator, either on the global database level or on a base table column. The `PRAGMA` `default_collation` can be used to specify the global default collator. This is the collator that will be used if no other one is specified. ```sql SET default_collation = NOCASE; SELECT 'hello' = 'HeLlo'; ``` ```text true ``` Collations can also be specified per-column when creating a table. When that column is then used in a comparison, the per-column collation is used to perform that comparison. ```sql CREATE TABLE names (name VARCHAR COLLATE NOACCENT); INSERT INTO names VALUES ('hännes'); ``` ```sql SELECT name FROM names WHERE name = 'hannes'; ``` ```text hännes ``` Be careful here, however, as different collations cannot be combined. This can be problematic when you want to compare columns that have a different collation specified. ```sql SELECT name FROM names WHERE name = 'hannes' COLLATE NOCASE; ``` ```console ERROR: Cannot combine types with different collation! ``` ```sql CREATE TABLE other_names (name VARCHAR COLLATE NOCASE); INSERT INTO other_names VALUES ('HÄNNES'); ``` ```sql SELECT names.name AS name, other_names.name AS other_name FROM names, other_names WHERE names.name = other_names.name; ``` ```console ERROR: Cannot combine types with different collation! ``` We need to manually overwrite the collation: ```sql SELECT names.name AS name, other_names.name AS other_name FROM names, other_names WHERE names.name COLLATE NOACCENT.NOCASE = other_names.name COLLATE NOACCENT.NOCASE; ``` | name | other_name | |--------|------------| | hännes | HÄNNES |
425
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]
SQL
Expressions
ICU Collations
The collations we have seen so far are not region-dependent, and do not follow any specific regional rules. If you wish to follow the rules of a specific region or language, you will need to use one of the ICU collations. For that, you need to [load the ICU extension](#docs:extensions:icu::installing-and-loading). If you are using the C++ API, you may find the extension in the `extension/icu` folder of the DuckDB project. Using the C++ API, the extension can be loaded as follows: ```cpp DuckDB db; db.LoadExtension<ICUExtension>(); ``` Loading this extension will add a number of language and region specific collations to your database. These can be queried using `PRAGMA collations` command, or by querying the `pragma_collations` function. ```sql PRAGMA collations; SELECT * FROM pragma_collations(); ``` ```text [af, am, ar, as, az, be, bg, bn, bo, bs, bs, ca, ceb, chr, cs, cy, da, de, de_AT, dsb, dz, ee, el, en, en_US, en_US, eo, es, et, fa, fa_AF, fi, fil, fo, fr, fr_CA, ga, gl, gu, ha, haw, he, he_IL, hi, hr, hsb, hu, hy, id, id_ID, ig, is, it, ja, ka, kk, kl, km, kn, ko, kok, ku, ky, lb, lkt, ln, lo, lt, lv, mk, ml, mn, mr, ms, mt, my, nb, nb_NO, ne, nl, nn, om, or, pa, pa, pa_IN, pl, ps, pt, ro, ru, se, si, sk, sl, smn, sq, sr, sr, sr_BA, sr_ME, sr_RS, sr, sr_BA, sr_RS, sv, sw, ta, te, th, tk, to, tr, ug, uk, ur, uz, vi, wae, wo, xh, yi, yo, zh, zh, zh_CN, zh_SG, zh, zh_HK, zh_MO, zh_TW, zu] ``` These collations can then be used as the other collations would be used before. They can also be combined with the `NOCASE` collation. For example, to use the German collation rules you could use the following code snippet: ```sql CREATE TABLE strings (s VARCHAR COLLATE DE); INSERT INTO strings VALUES ('Gabel'), ('Göbel'), ('Goethe'), ('Goldmann'), ('Göthe'), ('Götz'); SELECT * FROM strings ORDER BY s; ``` ```text "Gabel", "Göbel", "Goethe", "Goldmann", "Göthe", "Götz" ```
631
[ 0.11890102177858353, 0.01533113420009613, -0.01635786145925522, 0.02390380948781967, 0.0552239827811718, -0.0536290667951107, 0.0549049973487854, 0.024422157555818558, 0.00978381559252739, -0.02972525544464588, 0.050518978387117386, 0.0003144664515275508, -0.01877017319202423, -0.03183852136135101, 0.04035138711333275, 0.012450316920876503, 0.039494119584560394, 0.0009370134212076664, 0.064075767993927, 0.024481967091560364, 0.03738085553050041, -0.022946860641241074, -0.005188462790101767, 0.04098935425281525, -0.04768800362944603, -0.012221047654747963, -0.0029954523779451847, 0.029346462339162827, 0.027871165424585342, -0.05833406746387482, 0.020514613017439842, -0.050837960094213486, 0.0748414546251297, -0.05538347363471985, 0.05673915147781372, 0.010162608698010445, -0.00678337924182415, -0.04005233943462372, 0.03153947368264198, -0.07807116210460663, -0.05382842943072319, 0.0003638403140939772, -0.009275436401367188, 0.03371254727244377, -0.04621270298957825, -0.012918823398649693, -0.03728117048740387, 0.05701826140284538, -0.01658713072538376, 0.09545575082302094, -0.01787303201854229, -0.04601334035396576, -0.010775654576718807, 0.04832596704363823, 0.017564017325639725, 0.07926734536886215, -0.05901191011071205, 0.044139314442873, -0.06200237572193146, -0.005253256298601627, -0.009145849384367466, -0.017085542902350426, -0.0004946733242832124, -0.05845368653535843, -0.06710611283779144, -0.02452184073626995, -0.06371691077947617, 0.02041492983698845, -0.036124859005212784, 0.0010560090886428952, 0.11985797435045242, 0.08090213686227798, -0.06878077238798141, 0.025279425084590912, -0.005746683571487665, -0.017613857984542847, -0.028409449383616447, -0.0366232693195343, 0.02912716194987297, -0.027073707431554794, 0.014224661514163017, 0.036583397537469864, -0.0738845020532608, -0.026256311684846878, 0.003234689822420478, -0.016577163711190224, -0.11483398824930191, 0.06291945278644562, -0.018780142068862915, 0.014852659776806831, -0.012839077040553093, 0.02852906845510006, -0.004321226850152016, 0.04063049703836441, 0.021730735898017883, -0.051276564598083496, -0.03004423901438713, -0.0051535735838115215, 0.03379229083657265, 0.10103795677423477, 0.019148966297507286, -0.03574606403708458, -0.05462588742375374, -0.008612548932433128, 0.02376425452530384, 0.08002493530511856, -0.050359487533569336, -0.040251705795526505, -0.0253192987293005, -0.03269578889012337, -0.03805869445204735, -0.039813101291656494, -0.050359487533569336, 0.0901925265789032, 0.008916580118238926, -0.03666314110159874, 0.07412374019622803, 0.0024858268443495035, 0.011563144624233246, -0.02956576459109783, -0.042265284806489944, 0.07671548426151276, -0.03616473078727722, -0.044697534292936325, 0.006902997847646475, -0.012579903937876225, -0.01081552729010582, -0.026156630367040634, -0.07635662704706192, -0.06459411978721619, 0.020574422553181648, -0.015002182684838772, -0.06451436877250671, -0.0699370875954628, -0.10494550317525864, 0.02575790137052536, -0.042105793952941895, 0.04306274279952049, -0.10965050756931305, -0.06826242059469223, 0.028588877990841866, -0.04565448313951492, 0.07671548426151276, 0.07930722087621689, 0.014942373149096966, -0.04585384950041771, -0.045176006853580475, 0.04677092656493187, 0.007730360608547926, 0.03275559842586517, -0.022129464894533157, 0.009833657182753086, -0.05123669281601906, 0.0029007543344050646, -0.039773229509592056, -0.04461778700351715, 0.09728990495204926, -0.049362663179636, -0.053748685866594315, 0.005303097423166037, 0.01668681390583515, -0.05323033779859543, 0.02314622513949871, -0.05837394297122955, 0.03034328483045101, 0.03514797240495682, -0.03147966414690018, -0.009654228575527668, -0.09354185312986374, -0.027970846742391586, -0.017314812168478966, -0.027053769677877426, -0.034729305654764175, -0.011244161054491997, 0.0003850228094961494, -0.008183915168046951, 0.05781572312116623, -0.006319856271147728, 0.0022079625632613897, 0.00935019738972187, 0.05961000174283981, 0.07316679507493973, -0.08469006419181824, -0.016965923830866814, -0.002012335928156972, -0.030761951580643654, -0.022887051105499268, 0.012141301296651363, 0.00005494206925504841, -0.00955454632639885, -0.05378855764865875, 0.02362469956278801, 0.04080992564558983, 0.008323470130562782, -0.011064732447266579, -0.030861632898449898, -0.00861753337085247, 0.030722077935934067, 0.07276806235313416, 0.027851227670907974, -0.007640646770596504, 0.08237743377685547, -0.012938759289681911, 0.023704444989562035, -0.04529562592506409, -0.02500031515955925, -0.049920886754989624, 0.03417108580470085, -0.030323348939418793, -0.040690306574106216, 0.012769299559295177, 0.025638282299041748, -0.013197933323681355, 0.03379229083657265, -0.02252819575369358, 0.02561834640800953, 0.021830419078469276, -0.007142235059291124, -0.07715408504009247, 0.06040745973587036, 0.014254565350711346, 0.08086226135492325, 0.1294274628162384, 0.026894278824329376, -0.04812660440802574, 0.052672114223241806, -0.05801508575677872, -0.03253629431128502, -0.050558850169181824, -0.08963430672883987, 0.06499284505844116, 0.054346777498722076, -0.09282413870096207, -0.02854900434613228, -0.04282350838184357, 0.04298299923539162, -0.018780142068862915, 0.016985859721899033, 0.021710800006985664, -0.008288581855595112, -0.02374431863427162, 0.014433993957936764, -0.033812228590250015, 0.056220803409814835, 0.02438228577375412, -0.00897140521556139, 0.01956763118505478, -0.006893029436469078, -0.002143169054761529, -0.02376425452530384, 0.08564701676368713, -0.01395551860332489, -0.03791913762688637, -0.06650801748037338, 0.08150023221969604, -0.05259237065911293, 0.048844315111637115, 0.04621270298957825, 0.04796711355447769, 0.017424462363123894, -0.07791166752576828, 0.04649181291460991, -0.0496816486120224, -0.09864558279514313, -0.03600523993372917, 0.053310081362724304, -0.02016572467982769, -0.011303970590233803, 0.04294312372803688, -0.04649181291460991, -0.015620213001966476, -0.045016516000032425, 0.04705003648996353, 0.0021556292194873095, -0.13548815250396729, 0.042384903877973557, -0.020225534215569496, 0.01741449348628521, 0.010885304771363735, 0.11634915322065353, -0.07432311028242111, -0.04796711355447769, -0.05510436370968819, 0.022747496142983437, -0.006524205207824707, 0.011852222494781017, 0.038856152445077896, 0.009295372292399406, 0.09625320881605148, 0.020634232088923454, 0.07667560875415802, -0.05669927969574928, -0.00308516644872725, -0.016696780920028687, 0.030622396618127823, 0.07902810722589493, -0.005143605638295412, -0.05976949259638786, 0.006559093948453665, -0.022009847685694695, 0.027552181854844093, 0.00025060746702365577, 0.024960443377494812, -0.0017843127716332674, 0.040710240602493286, 0.04553486406803131, 0.07181110978126526, -0.02069404162466526, 0.011702699586749077, -0.04294312372803688, -0.026475613936781883, -0.022189274430274963, -0.023704444989562035, -0.02007601037621498, -0.056978389620780945, -0.07117314636707306, 0.04234503209590912, 0.06722573190927505, -0.03845742344856262, -0.00900629349052906, 0.07213009893894196, -0.017883000895380974, 0.06455424427986145, -0.0333138182759285, 0.002453430090099573, -0.02220921218395233, -0.031679026782512665, 0.02575790137052536, 0.020245470106601715, -0.02346520870923996, -0.01149336714297533, -0.02900754287838936, 0.036144793033599854, 0.004316242877393961, 0.02316616103053093, -0.043620966374874115, 0.02147156186401844, 0.0558619499206543, -0.043182361871004105, -0.018800077959895134, -0.053748685866594315, -0.05211389437317848, -0.07456234097480774, 0.02791103720664978, -0.010785622522234917, 0.015042055398225784, -0.024202857166528702, 0.04673105105757713, 0.07224971801042557, 0.03817831352353096, 0.046372197568416595, 0.03157934546470642, -0.009968227706849575, 0.09154820442199707, -0.0063049038872122765, -0.0015625196974724531, 0.008139058016240597, -0.028588877990841866, -0.03215750306844711, 0.04154757410287857, -0.03241667523980141, -0.02852906845510006, 0.07524018734693527, 0.03740078955888748, -0.005308081395924091, 0.011214256286621094, -0.08034391701221466, -0.020674103870987892, 0.09346210211515427, -0.027970846742391586, -0.01371628139168024, -0.005861317738890648, -0.04067036882042885, -0.01778331771492958, -0.05398792028427124, 0.061882756650447845, 0.007406393066048622, 0.059570129960775375, -0.07185098528862, -0.07639649510383606, 0.012270888313651085, 0.04222541302442551, 0.0552239827811718, -0.053110718727111816, 0.041029226034879684, 0.01578967273235321, -0.02681453339755535, 0.03161921724677086, -0.003922497853636742, -0.05462588742375374, 0.03500841557979584, -0.021391816437244415, -0.03221731260418892, -0.025498727336525917, 0.019627440720796585, 0.010755717754364014, 0.06750483810901642, 0.02807052992284298, 0.08469006419181824, 0.03953399136662483, 0.047608256340026855, 0.05669927969574928, -0.011692731641232967, 0.04405956715345383, 0.02360476367175579, -0.027033833786845207, -0.0014267025981098413, 0.0032546264119446278, -0.03756028413772583, -0.04017195850610733, 0.02486076019704342, -0.02635599486529827, 0.025219615548849106, 0.02962557226419449, 0.00033362413523718715, -0.022328831255435944, 0.045016516000032425, 0.005696841981261969, 0.019836774095892906, 0.05526385456323624, -0.012410443276166916, -0.0313401073217392, -0.03756028413772583, 0.03775964677333832, 0.04988101124763489, -0.008338422514498234, 0.09545575082302094, 0.010456671006977558, -0.0037580218631774187, -0.09250515699386597, -0.03311445191502571, 0.05889229103922844, -0.018461158499121666, 0.039813101291656494, -0.038696661591529846, -0.035347335040569305, 0.01379602774977684, 0.02129213511943817, -0.027532245963811874, -0.08835837244987488, -0.011892096139490604, 0.027711672708392143, 0.012559967115521431, -0.008328454568982124, 0.011543207801878452, -0.004837082698941231, 0.05953025817871094, 0.0048694792203605175, -0.008323470130562782, -0.041946303099393845, 0.006265031173825264, -0.016945987939834595, 0.006748490035533905, -0.007416361477226019, -0.040411196649074554, 0.04001246765255928, 0.0271335169672966, 0.02651548571884632, 0.020634232088923454, -0.05075821653008461, 0.018660522997379303, 0.06260047107934952, -0.04314249008893967, 0.033353690057992935, 0.05753660947084427, -0.021391816437244415, -0.013865805231034756, 0.0025194694753736258, -0.011792413890361786, -0.04449816793203354, 0.01870039477944374, -0.012440348044037819, 0.03141985461115837, 0.04557473585009575, -0.032277122139930725, -0.02210952900350094, -0.0027063738089054823, 0.025279425084590912, -0.0253192987293005, -0.06814280897378922, -0.036703016608953476, 0.0047000194899737835, -0.07711420953273773, 0.05259237065911293, -0.014314374886453152, 0.15486638247966766, 0.05107719823718071, 0.00651423679664731, 0.07113327085971832, -0.006693664938211441, 0.03445019572973251, -0.02683446928858757, 0.0037829424254596233, -0.024581650272011757, -0.03771977499127388, -0.07009657472372055, -0.0509575791656971, -0.0797458216547966, -0.008482961915433407, -0.04306274279952049, -0.011104606091976166, 0.021072832867503166, -0.04190643131732941, -0.007197060622274876, 0.008956452831625938, 0.023106351494789124, -0.009704070165753365, -0.04665130749344826, 0.018062429502606392, 0.012490189634263515, 0.009180737659335136, 0.0696181058883667 ]
[ -0.10126056522130966, 0.08506700396537781, -0.06488365679979324, -0.09601891785860062, -0.08698877692222595, -0.025475014001131058, -0.10939063876867294, -0.08438839018344879, -0.13741590082645416, -0.006689759902656078, 0.030868330970406532, 0.07191573083400726, -0.028996339067816734, -0.019821325317025185, 0.030722476541996002, -0.01578671671450138, 0.008666016161441803, 0.006055889185518026, 0.026501232758164406, 0.06538578867912292, -0.033972203731536865, -0.07986786216497421, 0.08702026307582855, -0.05164775624871254, 0.09620176255702972, -0.005168507341295481, -0.11637426167726517, -0.025574209168553352, -0.02457662671804428, 0.007864580489695072, 0.036137621849775314, -0.016102824360132217, 0.1278284788131714, -0.016050513833761215, -0.022736579179763794, 0.13005581498146057, 0.08665014058351517, 0.10880633443593979, 0.08072652667760849, 0.04784800484776497, -0.026563983410596848, -0.008496083319187164, 0.03767300397157669, 0.049064911901950836, -0.09270957112312317, 0.05481444299221039, 0.006006615236401558, -0.1584942489862442, -0.0572880357503891, -0.007842916995286942, 0.027682650834321976, -0.010208211839199066, -0.1315051019191742, -0.09907424449920654, -0.02072754129767418, -0.07294441014528275, -0.14330382645130157, -0.0015871301293373108, 0.07654270529747009, -0.012836880050599575, 0.0023554761428385973, -0.08519911020994186, -0.05896102264523506, 0.0936167985200882, 0.1033976674079895, 0.008271404542028904, -0.023979276418685913, -0.05061887949705124, 0.040229085832834244, 0.011342138051986694, -0.09082801640033722, 0.06601227819919586, 0.14486122131347656, 0.13388453423976898, 0.04754696786403656, 0.018610311672091484, -0.13258154690265656, 0.040936022996902466, -0.06879992038011551, -0.03307038173079491, 0.14511901140213013, 0.04324597120285034, -0.028309322893619537, -0.1283269226551056, -0.043366145342588425, -0.040799740701913834, -0.07371889054775238, -0.0015499243745580316, 0.15060189366340637, -0.057380929589271545, 0.008854647167026997, -0.04076896980404854, 0.05249654874205589, -0.027522943913936615, 0.02354573830962181, -0.004357306752353907, -0.047233618795871735, -0.1182137131690979, -0.036880847066640854, -0.025900114327669144, -0.025945326313376427, -0.05046210438013077, -0.0477294921875, -0.1429230123758316, 0.07096020877361298, -0.04333655163645744, 0.044471561908721924, 0.12325017899274826, 0.08886391669511795, 0.0022165311966091394, -0.1459903120994568, -0.026451047509908676, -0.1034269779920578, -0.000938940851483494, 0.1487427055835724, 0.006808570120483637, -0.11400719732046127, 0.0589989498257637, 0.024477003142237663, 0.062040816992521286, -0.013239100575447083, -0.014386028982698917, -0.09070348739624023, 0.08285677433013916, 0.06829570978879929, -0.11185786128044128, 0.1049962267279625, 0.06036432459950447, 0.03609796240925789, 0.09427032619714737, -0.0034127570688724518, -0.021497447043657303, 0.07267431914806366, -0.09340278059244156, 0.03422090411186218, -0.009468861855566502, 0.09684695303440094, -0.05761726573109627, -0.07175901532173157, 0.0302673801779747, -0.05253256484866142, 0.02096221037209034, -0.0336984321475029, -0.06009964272379875, 0.0727837085723877, 0.06954985111951828, -0.14521954953670502, -0.03645656257867813, -0.07735823839902878, -0.08227644115686417, 0.16183501482009888, -0.08148689568042755, 0.002397195203229785, -0.0013382791075855494, 0.03948799893260002, -0.057438597083091736, -0.021831214427947998, 0.06346189975738525, 0.043826986104249954, -0.03828952834010124, 0.17100656032562256, -0.03400515019893646, 0.06497038900852203, -0.060518842190504074, 0.016300421208143234, -0.016221754252910614, 0.0032138593960553408, -0.029459374025464058, -0.1331944465637207, -0.03820125758647919, 0.028540421277284622, -0.029600609093904495, -0.007419611793011427, -0.009244722314178944, 0.05237121880054474, -0.02391868457198143, -0.02245308645069599, -0.031983934342861176, 0.031928397715091705, -0.0015133913839235902, -0.013958432711660862, 0.022120779380202293, 0.018613647669553757, -0.028165994212031364, -0.0545082688331604, 0.03876671940088272, 0.03198624402284622, 0.00010979950457112864, 0.002358535537496209, -0.049810271710157394, 0.04349961504340172, 0.053756918758153915, -0.026756975799798965, -0.0006031586672179401, -0.05891678109765053, 0.014000735245645046, 0.030150147154927254, -0.07646096497774124, 0.0761769562959671, 0.03508628159761429, -0.029407845810055733, 0.021167682483792305, 0.03814410790801048, 0.03394211828708649, 0.02683362178504467, 0.03251037001609802, 0.06659780442714691, -0.026573512703180313, 0.0005376301123760641, 0.05258198454976082, -0.014016223140060902, -0.007296799216419458, 0.06662771105766296, -0.03668053448200226, 0.006860031746327877, 0.0003352642524987459, 0.0005795899196527898, -0.0380251482129097, -0.08717913180589676, 0.055247317999601364, -0.0362209752202034, 0.025796353816986084, 0.026635486632585526, -0.007563682738691568, -0.02147776260972023, -0.06971067935228348, -0.00022862610057927668, 0.001628165366128087, -0.024847732856869698, -0.012452629394829273, 0.05641645938158035, -0.029489800333976746, -0.013370324857532978, -0.023259388282895088, -0.025665640830993652, 0.05499180406332016, -0.02109633758664131, -0.038395050913095474, -0.015503146685659885, -0.00035804545041173697, -0.010833236388862133, -0.022169601172208786, -0.0216653011739254, 0.009380885399878025, -0.05374061316251755, -0.0017703507328405976, -0.005103739444166422, 0.014520001597702503, -0.02523028664290905, -0.006131501868367195, 0.03106022998690605, -0.037383195012807846, 0.033202219754457474, -0.007089233957231045, -0.035599347203969955, -0.008142001926898956 ]