Will We See You Tomorrow at WordCamp US 2021?
Let's meet at WCUS 2021! We'll be there and we hope to see you there as well!
2021-09-30
41 reads
Let's meet at WCUS 2021! We'll be there and we hope to see you there as well!
2021-09-30
41 reads
For Kyla Marie Charles, switching to WordPress.com opened up possibilities for her website and brand that she never thought was possible.
2021-09-27
37 reads
This month, our team released features in the block editor that give your site a little breathing room: spacing controls for buttons and paragraphs. And the List View tool...
2021-08-31
32 reads
We are proud to feature Jessica Petrie of Yoga Next Door, HBCU Gameday, and other inspiring customers at the second Official WordPress.com Growth Summit, on Tuesday, August 17.
2021-08-16
27 reads
Great news: the block editor you’re familiar with in pages and posts is now part of the widgets editor.
2021-08-10
12 reads
We’re committed to helping you create a professional online presence with WordPress.com, and we’re launching a three-month free trial with Professional Email to get you started. Professional Email is...
2021-08-03
55 reads
With the WordPress 5.8 release, we're starting to introduce features that overall improve your visual editing experience.
2021-07-27
15 reads
Join us online August 17 (Americas) or August 18 (Asia-Pacific). Register today!
2021-07-26
15 reads
Photos on your website can be a representation of who you are, what you do, or what you love. We want your photos to show to your visitors as...
2021-07-22
18 reads
Learn how WordPress.com's managed hosting powers fast, secure websites.
2021-07-20
14 reads
By Steve Jones
This value is something that I still hear today: our best work is done...
By gbargsley
Have you ever received the dreaded error from SQL Server that the TempDB log...
By Chris Yates
Artificial intelligence is no longer a distant concept. It is here, embedded in the...
Comments posted to this topic are about the item Planning for tomorrow, today -...
We have a BI-application that connects to input tables on a SQL Server 2022...
At work we've been getting better at writing what's known as GitHub Actions (workflows,...
I try to run this code on SQL Server 2022. All the objects exist in the database.
CREATE OR ALTER VIEW OrderShipping AS SELECT cl.CityNameID, cl.CityName, o.OrderID, o.Customer, o.OrderDate, o.CustomerID, o.cityId FROM dbo.CityList AS cl INNER JOIN dbo.[Order] AS o ON o.cityId = cl.CityNameID GO CREATE OR ALTER FUNCTION GetShipCityForOrder ( @OrderID INT ) RETURNS VARCHAR(50) WITH SCHEMABINDING AS BEGIN DECLARE @city VARCHAR(50); SELECT @city = os.CityName FROM dbo.OrderShipping AS os WHERE os.OrderID = @OrderID; RETURN @city; END; goWhat is the result? See possible answers