Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.select statement (SQL),”in SQL —[…]
Read moreCategory: Database
LIKE operator (SQL),”in SQL — allows you to select only rows that are “”like”” what you specify. The percent sign “”%”” can be used as a wild card to match any possible character that might appear before or after the characters specified. select first, last, city from empinfo where first LIKE ‘Er%’;// matches any name where first name begins with Erselect first
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.LIKE operator (SQL),”in SQL —[…]
Read moreCreate table (SQL),”create table “”tablename””(“”column1″” “”data type””, “”column2″” “”data type””, “”column3″” “”data type””);ex. (see SQL data type card)create table employee(first varchar(15), last varchar(20), age number(3), address varchar(30), city varchar(20)
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.Create table (SQL),”create table “”tablename””(“”column1″”[…]
Read moreUnit test,”tests of an individual method, class
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.Unit test,”tests of an individual[…]
Read moreChange and Version Control
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.Change and Version Control tools[…]
Read moreIntegration test,”tests of the behavior of a group of methods, classes
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.Integration test,”tests of the behavior[…]
Read moreInterface incompatibility,”For example
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.Interface incompatibility,”For example one method[…]
Read moreParameter values,”A method is passed or returns a value that was unexpected
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.Parameter values,”A method is passed[…]
Read moreRun-time exceptions,”A method generates an error, such as “”out of memory”” or “”file already in use
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.Run-time exceptions,”A method generates an[…]
Read moreUnexpected state interactions,”The states of two or more objects interact to cause complex failures
Average Rating 0 out of 5 stars. 0 votes.You must log in to submit a review.Unexpected state interactions,”The states of[…]
Read more