general.query
来自「Pegasus is an open-source implementation」· QUERY 代码 · 共 20 行
QUERY
20 行
# General Query statementsselect * from CQL_TestPropertyTypes where PropertyString = 'Bert Rules'select * from CQL_TestPropertyTypes where PropertyString <> 'Bert Rules'select * from CQL_TestPropertyTypes where PropertyUint8 = PropertyUint16select * from CQL_TestPropertyTypes where PropertyUint8 <= PropertyUint16select * from CQL_TestPropertyTypes where PropertyUint8 >= PropertyUint16select * from CQL_TestPropertyTypes where PropertyUint8 <> PropertyUint16select * from CQL_TestPropertyTypes where PropertyUint8 <> PropertyUint32select * from CQL_TestPropertyTypes where PropertyUint64 < PropertySint64select * from CQL_TestPropertyTypes where PropertyUint64 = PropertySint64select * from CQL_TestPropertyTypes where PropertyUint64 > PropertySint64select * from CQL_TestPropertyTypes where PropertySint64 < PropertyUint64select * from CQL_TestPropertyTypes where PropertySint64 = PropertyUint64select * from CQL_TestPropertyTypes where PropertySint64 > PropertyUint64select * from CQL_TestPropertyTypes where PropertySint64 > PropertyUint64select * from CQL_TestPropertyTypes where PropertyBoolean = trueselect * from CQL_TestPropertyTypes where PropertyString = 'Bert Rules' AND PropertyUint32 = 32select * from CQL_TestPropertyTypes where PropertyString = 'Bert Rules' OR PropertyUint32 = 31select * from CQL_TestPropertyTypes where PropertyString = 'Bert Rule' OR PropertyUint32 = 32
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?