What exactly does the T-SQL “LineNo” reserved word do?

前端 未结 2 709
时光说笑
时光说笑 2020-12-29 18:56

I was writing a query against a table today on a SQL Server 2000 box, and while writing the query in Query Analyzer, to my surprise I noticed the word LineNo wa

2条回答
  •  再見小時候
    2020-12-29 19:46

    Depending on where you use it, you can always use [LineNo]. For example:

    select LnNo [LineNo] from OrderLines.
    

提交回复
热议问题