Domande taggate «concat»

Si riferisce all'unione di due o più elementi in un unico elemento.


11
Posso concatenare più righe MySQL in un campo?
Utilizzando MySQL, posso fare qualcosa del tipo: SELECT hobbies FROM peoples_hobbies WHERE person_id = 5; La mia uscita: shopping fishing coding ma invece voglio solo 1 riga, 1 colonna: Uscita prevista: shopping, fishing, coding Il motivo è che sto selezionando più valori da più tabelle e dopo tutto i join …
1214 mysql  sql  concat  group-concat 

12
Qual è il modo preferito per concatenare una stringa in Python?
Dato che Python stringnon può essere modificato, mi chiedevo come concatenare una stringa in modo più efficiente? Posso scrivere così: s += stringfromelsewhere o in questo modo: s = [] s.append(somestring) later s = ''.join(s) Mentre scrivevo questa domanda, ho trovato un buon articolo che parlava dell'argomento. http://www.skymind.com/~ocrow/python_string/ Ma è …

18
Come posso concatenare le stringhe in Swift?
Come concatenare la stringa in Swift? In Objective-Cci piace NSString *string = @"Swift"; NSString *resultStr = [string stringByAppendingString:@" is a new Programming Language"]; o NSString *resultStr=[NSString stringWithFormat:@"%@ is a new Programming Language",string]; Ma voglio farlo in linguaggio Swift.

8
Aggiunta di due stream Java 8 o di un elemento aggiuntivo a uno stream
Posso aggiungere stream o elementi extra, in questo modo: Stream stream = Stream.concat(stream1, Stream.concat(stream2, Stream.of(element)); E posso aggiungere nuove cose mentre vado, in questo modo: Stream stream = Stream.concat( Stream.concat( stream1.filter(x -> x!=0), stream2) .filter(x -> x!=1), Stream.of(element)) .filter(x -> x!=2); Ma questo è brutto, perché concatè statico. Se concatfosse …

6
MySQL CONCAT restituisce NULL se un campo contiene NULL
Ho i seguenti dati nella mia tabella "dispositivi" affiliate_name affiliate_location model ip os_type os_version cs1 inter Dell 10.125.103.25 Linux Fedora cs2 inter Dell 10.125.103.26 Linux Fedora cs3 inter Dell 10.125.103.27 NULL NULL cs4 inter Dell 10.125.103.28 NULL NULL Ho eseguito sotto query SELECT CONCAT(`affiliate_name`,'-',`model`,'-',`ip`,'-',`os_type`,'-',`os_version`) AS device_name FROM devices Restituisce il …
163 mysql  sql  null  concat 

5
Unire due frame di dati per indice
Ciao, ho i seguenti frame di dati: > df1 id begin conditional confidence discoveryTechnique 0 278 56 false 0.0 1 1 421 18 false 0.0 1 > df2 concept 0 A 1 B Come unire gli indici per ottenere: id begin conditional confidence discoveryTechnique concept 0 278 56 false 0.0 …




6
Concatena le stringhe in Less
Penso che questo non sia possibile, ma ho pensato di chiedere in caso ci fosse un modo. L'idea è che ho una variabile per il percorso della cartella delle risorse Web: @root: "../img/"; @file: "test.css"; @url: @root@file; .px { background-image: url(@url); } Ottengo questo come risultato: .px { background-image: url("../img/" …
129 css  path  web  less  concat 

4
Concatena un elenco di frame di dati panda insieme
Ho un elenco di dataframe Pandas che vorrei combinare in un dataframe Pandas. Sto usando Python 2.7.10 e Pandas 0.16.2 Ho creato l'elenco dei dataframe da: import pandas as pd dfs = [] sqlall = "select * from mytable" for chunk in pd.read_sql_query(sqlall , cnxn, chunksize=10000): dfs.append(chunk) Ciò restituisce un …




Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.