Problema no consumo da api [closed] - api

Closed. This question is not written in English. It is not currently accepting answers.
Stack Overflow is an English-only site. The author must be able to communicate in English to understand and engage with any comments and/or answers their question receives. Don't translate this post for the author; machine translations can be inaccurate, and even human translations can alter the intended meaning of the post.
Closed 4 days ago.
Improve this question
enter image description here
meu codigo ta assim porem quando coloco pra deletar aparece mensagem de ok mais nao ta deletando de fato no BD
enter image description here
oq sai no json!

Related

Spotify answer for school project [closed]

Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 23 hours ago.
Improve this question
Olá sou aluno da ETEC João Maria Stevanatto, estou fazendo um trabalho para a disciplina de Qualidade e Teste de Software, queria saber se voçê conseguiria responder algumas perguntas sobre o app Spotify, tipo o que ele pode melhorar em sua segurança, otimizaçao, design e etc. Desde de já agradeço a ajuda
Hello, I'm a student at ETEC João Maria Stevanatto, I'm doing a project for the Quality and Software Testing subject, I wanted to know if you could answer some questions about the Spotify app like what they can improve in terms of security, optimization, design, etc. Thanks in advance for the help.

Server SQL how to clean column using STUFF? [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
608A
608 A
17113 R
16524 DC1
ASM-1780
234604A - Low L2 Cu
19658B-->
234605 - High L2 Cu
17015 Rev A 405734UD0A
43224A (W
23809 REVB
Is there an SQL server query that cleans the column above and removes the excess content on the right such that the data is converted to below:
608
608
17113
16524
ASM-1780
234604
19658
234605
17015
43224
23809
I have tried using STUFF, but it doesn't clean well.
You seem to want everything up to and including the first digit followed by a non-digit.
Well, this returns what you are asking for:
select str, left(str, patindex('%[0-9][^0-9]%', str + ' '))
Here is a db<>fiddle.

How to create a data frame from a text file [closed]

Closed. This question needs details or clarity. It is not currently accepting answers.
Want to improve this question? Add details and clarify the problem by editing this post.
Closed 2 years ago.
Improve this question
I am having trouble creating a data frame with the following data:
Force (N) microstrain1 microstrain2 microstrain3 microstrain4 microstrain5
24.838 9.689 -20.299 19.785 15.601 -7.681
49.691 22.610 -40.797 41.304 32.200 -15.332
75.309 33.357 -61.678 62.512 48.726 -22.422
97.227 41.944 -80.524 81.011 62.266 -30.228
121.641 52.692 -100.775 100.703 77.248 -36.884
Every time I try to use a delimiter I get the following message:
/Users/macbookpro/PycharmProjects/Projects/Lab_3/Bending.py:5: ParserWarning: Falling back to the 'python' engine because the 'c' engine does not support regex separators (separators > 1 char and different from '\s+' are interpreted as regex); you can avoid this warning by specifying engine='python'.
df1 = pd.read_csv('MEE322-thurs_1040_group1_9.5cm.txt',delimiter=' ')
Did you try the python engine instead of the c engine?:
df1 = pd.read_csv('MEE322-thurs_1040_group1_9.5cm.txt', delimiter=' ', engine='python')

List the most recently hired employee in each department [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 9 years ago.
Improve this question
I'am a trainee in sql, any help for this query,would be great.TIA.
select distinct jobtitle,max([HireDate]),LoginID from [HumanResources].[Employee] as e
where loginid in (select distinct LoginID from HumanResources.Employee
where JobTitle in (select distinct JobTitle from [HumanResources].[Employee]) )
group by JobTitle,LoginID;
If you are talking about a command line program this will work.
puts "Hello World"
or if you want an object oriented version
class HelloWorld
def initialize(name)
#name = name.capitalize
end
def sayHi
puts "Hello #{#name}!"
end
end
hello = HelloWorld.new("World")
hello.sayHi
If you are looking for a ruby on rails version of Hello World. Check the Getting Started Guide for Rails.

error with the " .... WHERE A = 'B' request [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
I am using SQL server 2008. I have a database (table name :Data) where one column's name is title and another one is date.
One of the entry in the first column is :
WOLVERINE LE COMBAT DE L'IMMORTEL
However here what is not working :
select date from Data where title = 'WOLVERINE LE COMBAT DE L''IMMORTEL'
select date , title from Data where title LIKE '%WOLVERINE LE COMBAT DE L''IMMORTEL%'
select date , title from Data where title LIKE '%WOLVERINE LE%'
Here what is working :
select date , title from Data where title LIKE '%WOLVERINE%'
select date , title from Data where title LIKE '%LE COMBAT DE L''IMMORTEL%'
select date , title from Data where title LIKE '%WOLVERINE LE%'
Yes, it works for 'WOLVERINE LE' when there is two spaces, even though I am pretty sure there is only one space in the database ( that is the case when I do a request).
Does someone know how come there is this error ?
EDIT : Well sorry it seems like there was really two spaces between them, when I tried to display it in my aspx page, the two spaces are automatically replaced with one space, that is why I could not see it.
If you have any confusion about the no. of spaces then just remove all the white space form both the sides
select date
from Data
where REPLACE(title,' ','') = REPLACE('WOLVERINE LE COMBAT DE L''IMMORTEL',' ','')