• Professional Development
  • Medicine & Nursing
  • Arts & Crafts
  • Health & Wellbeing
  • Personal Development

Directional, Horizontal and Multilateral Drilling – Simulator Assisted

By EnergyEdge - Training for a Sustainable Energy Future

Enhance your drilling skills with our Directional, Horizontal, and Multilateral Drilling Simulator Assisted course. Join EnergyEdge for comprehensive training.

Directional, Horizontal and Multilateral Drilling – Simulator Assisted
Delivered in Internationally or OnlineFlexible Dates
£3,599 to £3,799

LNG Shipping Economics & Freight Cost Calculations

By EnergyEdge - Training for a Sustainable Energy Future

Gain valuable insights into LNG shipping economics and freight cost calculations with EnergyEdge's engaging classroom training course.

LNG Shipping Economics & Freight Cost Calculations
Delivered In-PersonFlexible Dates
£2,599 to £2,799

MySQL for developers

5.0(3)

By Systems & Network Training

MySQL for developers training course description This MySQL Developers training course is designed for MySQL Developers who have a good understanding of a MySQL database and experience of using SQL commands. The course provides further practical experience in more advanced MySQL commands and SQL statements including Stored Routines, Triggers and Event Scheduling. What will you learn Provide the skills needed to write more advanced queries and database maintenance statements on a MySQL database. Use advanced features of the MySQL Client. Use advanced data types. Manage the structure of databases and tables. Manage and using indexes. Write complex SQL query statements. Use advanced SQL expressions. Use advanced SQL functions. Perform advanced Insert, Update, Delete, Replace and Truncate Operations. Use user variable syntax and properties. Import and export data from within MySQL. Import and export data from the command line. Perform complex joins to access multiple tables. Perform complex subqueries. Create, manage and us views. Use prepared statements. Create and use stored routines. Create and use triggers. Obtain database metadata. Optimize queries. Work with the main storage engines. Debug MySQL applications. MySQL for developers training course details Who will benefit: MySQL Developers who have a basic understanding of a MySQL database and SQL commands as covered on the Introduction to MySQL course. Prerequisites: MySQL foundation Duration 5 days MySQL for developers training course contents Introduction Administration and Course Materials, Course Structure and Agenda, Delegate and Trainer Introductions. Client/server concepts MySQL client/server architecture, Server modes, Using client programs, Logging in options, Configuration files, Precedence of logging in options Hands on Using client/server The MySQL client program Using MySQL interactively, The MySQL prompts, Client commands and SQL statements, Editing, Selecting a database, Help, Safe updates, Using script files, Using a source file, Redirecting output into a file, Command line execution, Mysql output formats, Overriding the defaults, Html and xml output, MySQL Utilities. Hands on Using the MySQL client program Data types Bit data type, Numeric data types, Auto_increment, Character string data types, Character sets and collation, Binary string data types, Enum and Set data types, Temporal data types, Timezone support, Handling Missing Or Invalid Data Values, SQL_MODE options. Hands on Using data types Identifiers Using Quotes with identifier naming, Case sensitivity in Identifier naming, Qualifying columns with table and database names, Using reserved words as identifiers, Function names Hands on Using identifiers Databases Database properties, Creating a database, Selecting a database, Altering databases, Dropping databases, Obtaining database metadata, The SHOW command, The INFORMATION_SCHEMA database, The SHOW CREATE command Hands on Using databases Tables and indexes Table properties, Creating tables, Create table using Select or Like, Temporary tables and memory tables, Altering tables, Adding columns, Changing column widths and types, Renaming columns, Dropping columns, Adding constraints, Dropping constraints, Renaming tables, Change the table storage engine, Multiple alterations, Dropping tables, Emptying tables, Obtaining table metadata, Show create table, The information_schema, Index introduction, Structure of a mysql index, Creating and dropping indexes, Creating an index, Altering a table to add an index, Specifying index type, Dropping indexes, Obtaining Index Metadata. Hands on Creating, altering and dropping tables/indexes Querying for data The SQL select statement and MySQL differences, Advanced order by, Order by and collation, Order by with enum datatype, Order by with Set datatype, Ordering with distinct and group by Special features of union, Limit and order by clauses, Group By clause, Group_concat, Using Rollup in a Group By clause. Hands on Querying for data SQL Expressions and functions Components of expressions, Nulls, Numeric expressions, String expressions, Temporal expressions, Comparison functions, Flow control functions, Numeric functions, String functions, Temporal functions. Hands on Using expressions and functions Updating data Update operations and privileges, Inserting rows, Insert using a set clause, Inserting duplicate values, Replacing rows, Updating rows, Update using the order by and limit clauses, Deleting rows, The delete and truncate statements. Exercise: Inserting, updating, replacing and deleting data Connectors MySQL client interfaces, MySQL connectors, Oracle and community conectors, Connecting to MySQL server using Java and PHP connectors, MySQL and NoSQL, Innodb integration with memcached. Obtaining database metadata What is metadata?, The mysqlshow utility, The show and describe commands, Describing tables, The information_schema, Listing tables, Listing columns, Listing views, Listing key_columns_usage. Hands on Obtaining database metadata Debugging Mysql error messages, The show statement, Show errors, Show count(*) errors, Show warnings, Show count(*) warnings, Note messages, The perror utility. Hands on Debugging Joins Overview of inner joins, Cartesian product, Inner joins with original syntax, Non equi-join, Using table aliases to avoid name clashes, Inner Joins With ISO/ANSI Syntax, Outer Joins, Left outer joins, Right outer joins, Full outer joins, Updating multiple tables simultaneously, Updating rows in one table based on a condition in another, Updating rows in one table reading data from another, Deleting from multiple tables simultaneously, Deleting rows in one table based on a condition in another. Hands on Coding joins Subqueries Types of subquery, Multiple-column subqueries, Correlated subqueries, Using the ANY, ALL and SOME operators, Using the EXISTS operator, Subqueries as scalar expressions, Inline views, Converting subqueries to joins, Using subqueries in updates and deletes. Hands on Coding subqueries Views Why views are used, Creating views, View creation restrictions, View algorithms, Updateable views, Altering and dropping views, Displaying information about views, Privileges for views. Hands on Using views Import and Export Exporting using SQL, Privileges required to export data, Importing using SQL, Messages when loading data, Privileges required to load data, Exporting from the command line, Mysqldump main options, Importing from the command line, Mysqlimport main options. Hands on Importing and exporting User variables and prepared statements Creating User variables, User variables in a select, Prepared statements, The prepare statement, The execute statement, The deallocate statement, Using prepared statements in code, with connectors. Hands on Using variables and prepared statements Introduction to stored routines Types of stored routines, Benefits of stored routines, Stored routine features, Differences between procedures and functions, Introduction to the Block, Declaring variables and constants, Assigning values to variables, Definer rights and invoker rights, Using SELECT in stored routines, Altering and dropping stored routines, Obtaining stored routine metadata, Stored routine privileges and execution security. Hands on Writing simple stored routines Stored routines - program logic The IF .. THEN .. ELSEIF construct, The CASE statement, The basic loop, The while loop, The repeat loop, The iterate statement, Nested loops. Hands on Writing stored routines with program logic Stored routines - exception handlers and cursors Dealing with errors using Exception handlers, Cursors, What is a cursor?, Cursor operations, Declaring cursors, Opening and closing cursors, Fetching rows, Status checking. Hands on Writing stored routines with program logic Procedures with parameters Creating procedures with parameters, Calling Procedures With Parameters. Hands on Writing stored routines with parameters Functions What is a function?, The create function statement, Executing functions, Executing functions from code, Executing functions from SQL statements, The deterministic and SQL clauses. Hands on Writing functions Triggers Trigger creation, Restrictions on triggers, The create trigger statement, Using the old and new qualifiers, Managing triggers, Destroying triggers, Required privileges. Hands on Writing triggers Basic optimizations Normalisation of data to third normal form, Using indexes for optimization, General query enhancement, Using Explain to analyze queries, Choosing an INNODB or MYISAM storage engine, Using MySQL Enterprise Monitor in query optimization. Hands on Making use of basic optimizations More about indexes Indexes and joins Hands on Investigating indexes and joins

MySQL for developers
Delivered in Internationally or OnlineFlexible Dates
£2,797

Methanol Bunkering & Fuel Cell Technology For Vessels

By EnergyEdge - Training for a Sustainable Energy Future

Enhance your knowledge with Energy Edge's course on methanol bunkering and fuel cell technology for vessels. Enroll now!

Methanol Bunkering & Fuel Cell Technology For Vessels
Delivered In-PersonFlexible Dates
£2,599 to £2,799

Cross Border Electricity Trading in South East Asia

By EnergyEdge - Training for a Sustainable Energy Future

Unlock the potential of cross-border electricity trading in Southeast Asia with EnergyEdge. Explore our comprehensive training program for industry professionals.

Cross Border Electricity Trading in South East Asia
Delivered In-PersonFlexible Dates
£3,099 to £3,199

ALLMI Lorry Loader -2 Day Novice Course | Milton Keynes | 12 - 13 September 2025

By Total Compliance

Equipment used - Lorry mounted cranes and Hook attachments. Who Would Do This Training? Anyone who operates or intends to be operating lorry mounted cranes (sometimes referred to as HIAB’s) should undertake training as is required by the Lifting Operations and Lifting Equipment Regulations 1998. This course is made to suit novice operators, and are designed to ensure the efficient and safe operation of equipment. HIAB is really a brand name and the correct term for the equipment is ‘lorry mounted crane’ or ‘lorry loader crane’ (when mounted to a commercial vehicle). Other manufacturers of these types of cranes include Atlas, Cormach, Fassi, HMF, Hyva, Palfinger, Penny Hydraulics and PM. Which Industries Train with ALLMI? The ALLMI Lorry Loader Course is recognised by CSCS. The Lorry Loader Crane courses and Slinger Signaller courses, certificated by ALLMI, cover a wide variety of hydraulic cranes, both manually and electronically operated. Manuals and Postage of ALLMI Certificate and Card are included in your Ticket Price

ALLMI Lorry Loader -2 Day Novice Course | Milton Keynes | 12 - 13 September 2025
Delivered In-Person in Maulden
£595

Advanced Load Forecasting & Methodology

By EnergyEdge - Training for a Sustainable Energy Future

Enhance your forecasting skills with EnergyEdge's Advanced Load Forecasting Methodology course. Join our classroom training for expert insights.

Advanced Load Forecasting & Methodology
Delivered In-PersonFlexible Dates
£3,099 to £3,199

CIPD Associate Diploma in People Management Level 5

By London School of Science and Technology

The CIPD Level 5 Diploma in People Management is an HR qualification that was created by the highly respected Chartered Institute of Personnel and Development (CIPD) Course Overview The CIPD Level 5 Diploma in People Management is an HR qualification that was created by the highly respected Chartered Institute of Personnel and Development (CIPD) Working in a people practice role and ready to grow? This qualification will help you gain a deeper understanding of the professional behaviours that lead to organisational success. Learn how to manage relationships, foster talent, guide strategic planning and reward performance. Benefits of a CIPD Level 5 HR qualification You will get a greater grasp of the external factors that can have an impact on HR operations and organisations as you investigate a wide range of HR models and practises in important areas like talent management, hiring, and employment legislation. Additionally, you will improve your own analytical and problem-solving abilities. You can advance to the Advanced Diploma, the highest level of CIPD study, after successfully completing the Associate Diploma, which results in CIPD Associate Membership. Is this qualification right for me? This qualification is perfect for you if you enjoy developing and managing people. You’ll expand your knowledge of HR with a combination of core units and specialist areas – helping you focus on what matters most to you. What will I learn? Core units: • Organisational performance and culture in practice • Evidence-based practice • Professional behaviours and valuing people Specialist units: • Employment relationship management • Talent management and workforce planning • Reward for performance and contribution Optional units: • Specialist employment law • Advances in digital learning and development • Learning and development essentials • People management in an international context • Diversity and inclusion • Leadership and management development • Well-being at work Perfect for: HR professionals keen to develop their skills and drive change within their organisation Typical job titles: • HR Business Partner or Manager • People Analyst • Employee Relations Manager • Diversity and Inclusion Specialist • Resourcing Business Partner • Reward and Benefits Manager • Talent Manager DURATION 12-14 Months WHATS INCLUDED Course Material Case Study Experienced Lecturer Refreshments Certificate

CIPD Associate Diploma in People Management Level 5
Delivered In-PersonFlexible Dates
£3,000

Power System with Large Component of Solar, Storage and Distributed Energy Resources (DER)

By EnergyEdge - Training for a Sustainable Energy Future

Explore cutting-edge power system training with EnergyEdge. Learn about integrating solar, storage, and DERs for efficient energy management. Enroll now!

Power System with Large Component of Solar, Storage and Distributed Energy Resources (DER)
Delivered In-PersonFlexible Dates
£2,999 to £3,199

Upstream Petroleum Economics, Risk and Fiscal Analysis

By EnergyEdge - Training for a Sustainable Energy Future

About this Training Course The 3-day hands-on petroleum economics training course provides a comprehensive overview of the practices of exploration and development petroleum economics and its application in valuing oil and gas assets to aid corporate decisions. Participants will gain a thorough understanding of the principles of economic analysis as well as practical instruction in analytical techniques used in the industry. The participants will learn how to construct economic models, to include basic fiscal terms, production and cost profiles and project timing. The resulting model will provide insights of how the various inputs affect value. Example exercises will be used throughout the course. Training Objectives Upon completion of this course, participants will be able to: Understand and construct petroleum industry cash flow projections Calculate, understand and know how to apply economic indicators Learn and apply risk analysis to exploration and production investments Evaluate and model fiscal/PSC terms of countries worldwide Target Audience The following oil & gas company personnel will benefit from the knowledge shared in this course: Geologists Explorationists Reservoir Engineers Project Accountants Contract Negotiators Financial Analysts New Venture Planners Economists Course Level Basic or Foundation Intermediate Trainer Your expert trainer has over 40 years' experience as a petroleum economist in the upstream oil and gas industry. He has presented over 230 oil and gas industry short courses worldwide on petroleum economics, risk, production sharing contracts (PSC) and fiscal analysis. In over 120 international oil industry consulting assignments, he has advised companies and governments in the Asia Pacific region on petroleum PSC and fiscal terms. He has prepared many independent valuations of petroleum properties and companies for acquisition and sale, as well as economics research reports on the oil and gas industry and including commercial support for oil field operations and investments worldwide. He has been involved in projects on petroleum royalties, design of petroleum fiscal terms, divestment of petroleum assets, and economic evaluation of assets and discoveries since the early 1990s to date. He has been working on training, consultancy, research and also advisory works in many countries including USA, UK, Denmark, Switzerland, Australia, New Zealand, Indonesia, India, Iran, Malaysia, Thailand, Vietnam, Brunei, Egypt, Libya, and South Africa. POST TRAINING COACHING SUPPORT (OPTIONAL) To further optimise your learning experience from our courses, we also offer individualized 'One to One' coaching support for 2 hours post training. We can help improve your competence in your chosen area of interest, based on your learning needs and available hours. This is a great opportunity to improve your capability and confidence in a particular area of expertise. It will be delivered over a secure video conference call by one of our senior trainers. They will work with you to create a tailor-made coaching program that will help you achieve your goals faster. Request for further information post training support and fees applicable Accreditions And Affliations

Upstream Petroleum Economics, Risk and Fiscal Analysis
Delivered in Internationally or OnlineFlexible Dates
£2,751 to £3,199