문제

Some of the fields in a stored procedure have an '@' symbol before it. What does this mean?

Ignore the fields and data themselves.

, cast(hi.date_closed as date) hiclose
, @helloclose:=cast(ifnull(audit.date_created,hello.date_entered)
, cast(@hi-INTERVAL WEEKDAY(@hiclose)DAY as datetime) himonclose
, @oppentered:=cast(opp.date_entered - interval 5 hour as datetime) hicreate
, cast(@oppentered - INTERVAL WEEKDAY(@oppentered)DAY as datetime) himoncreate

올바른 솔루션이 없습니다

다른 팁

The @ symbol means the it's a variable passed in via a parameter.

Google:

What does the "@" symbol do in SQL?

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top