文章列表
SQL书写风格
1. SQL语句全部使用小写。★
2. 引用字符时用单引号。如:update testable set idcol=’abcd’。 ★
3. 连接符或运算符or、in、and、=、<=、>=, +,- 等前后加上一个空格。
4. 严禁使用select * …….形式的语句,必须指出select的具体字段,即select col1, col2,… from tablea where ….★
5. 严禁使用 insert into table values(?,?,?),必须指出具体要赋值的字段,即 insert into tablea (col1, col2,…) va ...