Managing SQL Server containers using Docker SDK for Python - Part 1
There are multiple ways to interact with the Docke...
2019-06-13
4,299 reads
There are multiple ways to interact with the Docke...
2019-06-13
4,299 reads
2019-05-22
Bruno Stecanella shows us how to use MonkeyLearn to perform sentiment analysis in Python: Sentiment analysis is a set of Natural Language Processing (NLP) techniques that takes a text (in more...
2019-05-09
2019-05-01
616 reads
With the addition of Python to Machine Learning Services in SQL Server 2017, you can now execute your Python code inside of SQL Server.
2020-11-13 (first published: 2019-04-18)
35,989 reads
2019-04-17
689 reads
Hardik Jaroli shows how we can solve logistic regression problems using Python, using the Titanic data set as an example: We will be working with the Titanic Data Set...
2019-04-08
2019-04-03
892 reads
2019-03-20
558 reads
2019-03-06
815 reads
Want to boost your SQL game? Check out this free course, SQL Subqueries: Real-World...
By Steve Jones
The more I work with the Data API Builder (DAB), the more I lean...
By Steve Jones
It’s time for the first T-SQL Tuesday blog of 2025, with an invite from...
Comments posted to this topic are about the item Vector DB implementation using FAISS
Comments posted to this topic are about the item The Types of Changes
Comments posted to this topic are about the item Escaping Like I
I have this data in a SQL Server 2022 table:
PlayerIDPlayerNamePlayerStatus 1The \%ChampActive 2The ChampActive 3The_ChampionActive 4The__ChampionActive 5The\_ChampActiveHow many rows are returned by this code in SQL Server 2022?
select PlayerName from player where playername like 'The\_C%' escape '\'See possible answers