Define column collation in markup [SQL Server]
Open
enhancement
good first issue
help wanted
- Dominant language
- JavaScript
- Stars
- 3.7k
- Forks
- 233
- Avg merge
- 1d 23h
- Merged PRs (30d)
- 4
Description
As a user, I would like the ability to define the collation against a column in the markup for cases where the require collation is different to the database default collation.
e.g. Latin1_General_Bin or Latin1_General_CS_AS
```
CREATE TABLE dbo.MyTable (CharCol NVARCHAR(50) COLLATE Latin1_General_CS_AS);
CREATE TABLE dbo.MyTable (CharCol VARCHAR(50) COLLATE Latin1_General_BIN);
```
Contributor guide
Assessment
This issue has not been assessed yet.