Operator in SQL Server [closed]

-3

What does this operator mean?:="?

    
asked by Ronaldo Davila 30.10.2018 в 18:01
source

2 answers

0

This operator does not exist in SQL Server, if you find it in a query or procedure you will get a Syntax Error.

However, in Pascal, Modula-2, MySQL, etc., it is an assignment operator.

Here is an example of its use in MySQL

SELECT @ejemplo := 'hola';    /*variable 'ejemplo' ahora tiene el valor de 'hola'*/
return value: 'hola'
    
answered by 30.10.2018 / 18:21
source
2

The operator: = is an allocator and is used in some languages such as MySQL and Postgres, but not in SQL Server. There it is assigned with the symbol "="

    
answered by 30.10.2018 в 18:07