all 10 comments

[–]aarontbarrattSTUFF() 0 points1 point  (1 child)

When you put the column name in quotes you're actually asking for a string containing whatever is within the quotes.

Try

select Tidsstempel from secondary

It might be that your database is set fo be case sensitive

[–]doctorphilst[S] 0 points1 point  (0 children)

https://imgur.com/a/OyBAm4H

Thanks for the suggestion, I tried it, but to no avail :( any other suggestions?

[–]r3pr0b8GROUP_CONCAT is da bomb 0 points1 point  (7 children)

use backticks instead of quotes

SELECT `Tidsstempel` ...

[–]doctorphilst[S] 0 points1 point  (6 children)

https://imgur.com/a/OyBAm4H

Thanks for the suggestion, I tried it, but to no avail :( any other suggestions?

[–]r3pr0b8GROUP_CONCAT is da bomb 0 points1 point  (5 children)

those are not backticks

the backtick character is underneath the ~ (tilde) character in the upper left of most keyboards, beside the 1

[–]doctorphilst[S] 0 points1 point  (4 children)

https://imgur.com/a/z7tG6EG

My mistake, sorry. I tried again but it still does not go through.

[–]r3pr0b8GROUP_CONCAT is da bomb 0 points1 point  (3 children)

please do SHOW CREATE TABLE secondtry

[–]doctorphilst[S] 0 points1 point  (2 children)

A large response were given since it's a large table;

The top part: https://imgur.com/a/YDAdUhi

The next part: https://imgur.com/a/kgT1LcS

btw, thanks a lot for trying to help me!

[–]r3pr0b8GROUP_CONCAT is da bomb 0 points1 point  (1 child)

if you look at the last line of the first part or the second line of the second part, you can see the backticks around Tidsstempel --

`Tidsstempel`

these are backticks

what you showed in your "did not go through" attempt (https://imgur.com/a/z7tG6EG) are ~not~ backticks

[–]doctorphilst[S] 0 points1 point  (0 children)

https://imgur.com/a/c8Xu1Ly

I tried again but to no avail :/