查询当前用户:show user 查看当前用户下的表:select *from tab; 设置行宽: show linesize;(查看行宽) set linesize 120;(设置行宽) 设置列宽:col 列名 for a8; (设置字符串) col 列名 for 9999;(设置数字的) 查看表的结构:dese emp; 查询所有的员工信息:select * from emp; 投影:select empno,ename,sal from emp; 滤空函数:select emp
1.concat CONCAT(字串1, 字串2, 字串3, ...): 将字串1.字串2.字串3,等字串连在一起. 例如: Geography 表格 region_name store_name East Boston East New York West Los Angeles West San Diego 例子1: MySQL/Oracle: SELECT CONCAT(region_name,store_name)
using Oracle.DataAccess.Client; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; name