PRINT
Statement
Prints the expression to the script or
console output.Syntax
PRINT expression;Parameters
- expression: scalar
The value to be printed.
Example
PRINT 5;
PRINT 1 + 2;
PRINT 'Hello world';
PRINT (SELECT COUNT(*) FROM sqlite_master);