CREATE TABLE TBL_CD( CDnr int identity(1,1), CDTitel nvarchar(80) NOT NULL, CDduur int, CDprijs smallmoney,
So, I create this table, is there a way to limit the value of CDprijs between 0 and 100?
Add a control constraint:
CREATE TABLE TBL_CD( CDnr int identity(1,1), CDTitel nvarchar(80) NOT NULL, CDduur int, CDprijs smallmoney, check (CDprijs between 0 and 100),
Source: https://habr.com/ru/post/984841/More articles:Need to save and retrieve UIImages using a buffer - iosHow to remove garbage input from line C? - cLinker weird behavior: relocation truncation - linkerDoes Entityframework automate navigation properties to create - c #Is the default font size for each browser 16px? What for? - htmlWhy doesn't toString () in an object instance (which is null) throw an NPE? - javaValgrind cross-compiling for ARM - valgrindWorking with D3.js and Immutable.js - javascriptUnable to cross compile Valgrind for ARM - armLaravel 5: when saving form data, _token throws a mass assignment exception - phpAll Articles