300x250 전체 글473 Database / PostgreSQL JOIN 사용하기. 두 개 이상의 테이블을 결합하여 여러 행을 검색하는 것입니다. SELECT * FROM weather JOIN cities ON (weather.city = cities.name); SELECT * FROM weather LEFT OUTER JOIN cities ON (weather.city = cities.name); 2019. 7. 15. Database / PostgreSQL 현재 사용자 / 현재 날짜 / 현재 시간 / 타임스탬프 구하기. SELECT CURRENT_USER, CURRENT_DATE, CURRENT_TIME, CURRENT_TIMESTAMP; 2019. 7. 14. Database / PostgreSQL 이번달의 첫번째 날과 마지막 날 구하기. 이번달의 첫번째 날과 마지막 날 구하기 입니다. SELECT cast(date_trunc('month',current_date) as date) as firstday, (date_trunc('MONTH', current_date) + INTERVAL '1 MONTH - 1 day')::date lastday; 2019. 7. 14. Database / PostgreSQL 문자열 결합하기. SELECT (last_name || '_' || first_name) AS full_name, last_name, first_name FROM employees 2019. 7. 14. Database / PostgreSQL COALESCE 사용하기(오라클 NVL) COALESCE(A, B); A값이 NULL일 경우 B로 반환합니다. select category_id, description, COALESCE(description, 'empty') as COALESCE_RESULT from categories; 2019. 7. 14. Database / PostgreSQL UNION 사용하기 두 개 이상의 쿼리를 한번에 출력할 때 사용합니다. 출력할 때의 컬럼의 개수가 같아야 합니다. 예를 들어 첫번째 쿼리의 출력되는 컬럼은 2개인데 두번째 쿼리의 출력되는 컬럼은 1개라면 오류 발생합니다. SELECT company_name FROM customers UNION SELECT address FROM suppliers; 2019. 7. 14. Database / PostgreSQL ROWNUM 사용하기 SELECT (ROW_NUMBER() OVER()) AS ROWNUM, * FROM customers limit 10 SELECT * FROM customers limit 10 2019. 7. 14. DevExpress / Winform 유효성 검사를 합니다. DevExpress에서 DxValidationProvider 를 사용하여 유효성 검사를 합니다. using System.Windows.Forms; using DevExpress.XtraEditors.DXErrorProvider; namespace Test { public partial class Form1 : Form { public Form1() { InitializeComponent(); #region 유효성 검사 입니다. this.dxValidationProvider1.ValidationMode = DevExpress.XtraEditors.DXErrorProvider.ValidationMode.Manual; ConditionValidationRule validationRule = new Condit.. 2019. 7. 11. 이전 1 ··· 44 45 46 47 48 49 50 ··· 60 다음 300x250