I’m modifying the explaination so its clearer. I had this data in an image column within sql server. I used then used this query to get these results And using online converters i can get it to a binary/commma separated list. From here i need to convert each 8bit word into a decimal. The new list doesn’t need to show
Tag: sql-server-2019-express
Date in where clause returning 0 rows
I am trying to get data as follows WHERE DateCommande = ‘2018-09-05’ but it doesn’t work on my computer. Returns rows, including rows that show 2018-09-05 as the datetime value in a datetime column. However, on SSMS on my computer, if I add a WHERE clause, the query returns 0 rows: Answer yyyy-mm-dd hh:mm:ss.000 is not a language- and regional
Get rows of Last hour, Last ‘x’ minutes in SQL Server
Order ID Picker ID Time_Picked 1 111 2020-01-13 11:28:00 2 222 2020-01-13 11:40:00 3 333 2020-01-13 10:00:00 4 444 2020-01-13 9:00:00 5 555 2020-01-13 9:45:00 SELECT * FROM mytable WHERE …